mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 06:33:08 +00:00
Summary:
I fixed the strange dialer on the phone, here's a picture:
{F6433134}
Now I have a few questions:
1. To get the '#', '*', & '+' symbols to show up I need to install a font that supports those glyphs. I've only found the font `fonts-mplus`. I can slice this font to only get those glyphs and package them here, or add this font as a dependency.
We should likely have a font like this installed anyway, so people can see weird glyphs on the internet.
2. Is the correct way to set font sizes `pixelSize: units.gridUnit`?
Test Plan: manual testing?
Reviewers: bshah, mart
Reviewed By: bshah
Differential Revision: https://phabricator.kde.org/D17037
83 lines
2.5 KiB
QML
83 lines
2.5 KiB
QML
/*
|
||
* Copyright 2014 Aaron Seigo <aseigo@kde.org>
|
||
* Copyright 2014 Marco Martin <mart@kde.org>
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU Library General Public License as
|
||
* published by the Free Software Foundation; either version 2, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU Library General Public License for more details
|
||
*
|
||
* You should have received a copy of the GNU Library General Public
|
||
* License along with this program; if not, write to the
|
||
* Free Software Foundation, Inc.,
|
||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
*/
|
||
|
||
import QtQuick 2.0
|
||
import QtQuick.Layouts 1.2
|
||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||
import org.kde.plasma.components 2.0 as PlasmaComponents
|
||
|
||
GridLayout {
|
||
id: pad
|
||
columns: 3
|
||
rowSpacing: 10
|
||
columnSpacing: 10
|
||
Layout.leftMargin: units.largeSpacing * 2
|
||
Layout.rightMargin: units.largeSpacing * 2
|
||
|
||
property var callback
|
||
property var pressedCallback
|
||
property var releasedCallback
|
||
property var deleteCallback
|
||
|
||
DialerButton { id: one; text: "1" }
|
||
DialerButton { text: "2"; sub: "ABC" }
|
||
DialerButton { text: "3"; sub: "DEF" }
|
||
|
||
DialerButton { text: "4"; sub: "GHI" }
|
||
DialerButton { text: "5"; sub: "JKL" }
|
||
DialerButton { text: "6"; sub: "MNO" }
|
||
|
||
DialerButton { text: "7"; sub: "PQRS" }
|
||
DialerButton { text: "8"; sub: "TUV" }
|
||
DialerButton { text: "9"; sub: "WXYZ" }
|
||
|
||
DialerButton { display: "*"; text: "*"; special: true; }
|
||
DialerButton { text: "0"; subdisplay: "+"; sub: "+"; }
|
||
DialerButton { display: "#"; text: "#"; special: true; }
|
||
|
||
Item {
|
||
Layout.fillWidth: true
|
||
Layout.fillHeight: true
|
||
}
|
||
DialerIconButton {
|
||
id: callButton
|
||
Layout.fillWidth: true
|
||
Layout.fillHeight: true
|
||
|
||
enabled: status.text.length > 0
|
||
opacity: enabled ? 1 : 0.5
|
||
source: "call-start"
|
||
size: units.gridUnit * 3
|
||
callback: function() {
|
||
call(status.text);
|
||
}
|
||
}
|
||
DialerIconButton {
|
||
id: delButton
|
||
Layout.fillWidth: true
|
||
Layout.fillHeight: true
|
||
|
||
enabled: status.text.length > 0
|
||
opacity: enabled ? 1 : 0.5
|
||
source: "edit-clear"
|
||
size: units.gridUnit * 2
|
||
callback: pad.deleteCallback
|
||
}
|
||
}
|