-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial restructure to support themes
- Loading branch information
Showing
13 changed files
with
851 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import QtQuick 2.6 | ||
import QtQuick.Controls 1.4 | ||
import com.iktwo.qutelauncher 1.0 as QL | ||
|
||
Item { | ||
id: root | ||
|
||
signal done | ||
|
||
Button { | ||
anchors.centerIn: parent | ||
|
||
text: "DONE" | ||
onClicked: root.done() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import QtQuick 2.6 | ||
import QtQuick.Controls 1.4 | ||
import com.iktwo.qutelauncher 1.0 as QL | ||
|
||
Item { | ||
|
||
Column { | ||
anchors { | ||
fill: parent | ||
margins: 8 * QL.ScreenValues.dp | ||
} | ||
|
||
Label { | ||
anchors { | ||
left: parent.left | ||
right: parent.right | ||
} | ||
|
||
text: qsTr("QuteLauncher") | ||
color: "#ffffff" | ||
horizontalAlignment: Text.AlignHCenter | ||
|
||
font.pointSize: 22 | ||
} | ||
|
||
Item { | ||
height: 16 * QL.ScreenValues.dp | ||
} | ||
|
||
Label { | ||
anchors { | ||
left: parent.left | ||
right: parent.right | ||
} | ||
|
||
text: "**PLACEHOLDER** Customizable open source Android launcher. Get the source code and contribute at https://iktwo.github.io/QuteLauncher/" | ||
color: "#ffffff" | ||
horizontalAlignment: Text.AlignJustify | ||
wrapMode: Text.Wrap | ||
|
||
font.pointSize: 16 | ||
} | ||
|
||
Item { | ||
height: 24 * QL.ScreenValues.dp | ||
} | ||
|
||
Image { | ||
anchors.horizontalCenter: parent.horizontalCenter | ||
|
||
width: Math.min(parent.width, parent.height) * 0.34 | ||
height: width | ||
source: "qrc:/images/icon" | ||
} | ||
} | ||
} |
Oops, something went wrong.