mirror of
https://github.com/sddm/sddm.git
synced 2024-11-23 18:13:26 +08:00
Convert clock into a seperate component.
This commit is contained in:
parent
32ef803e0b
commit
991996c4ed
65
themes/Maldives/Clock.qml
Normal file
65
themes/Maldives/Clock.qml
Normal file
@ -0,0 +1,65 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2013 Abdurrahman AVCI <abdurrahmanavci@gmail.com
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person
|
||||
* obtaining a copy of this software and associated documentation
|
||||
* files (the "Software"), to deal in the Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
||||
* and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included
|
||||
* in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
||||
* OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
import QtQuick 2.0
|
||||
|
||||
Item {
|
||||
id: container
|
||||
|
||||
property var dateTime: new Date()
|
||||
|
||||
Timer {
|
||||
interval: 100; running: true; repeat: true;
|
||||
onTriggered: container.dateTime = new Date()
|
||||
}
|
||||
|
||||
Column {
|
||||
id: column
|
||||
anchors.margins: 5
|
||||
anchors.right: parent.right; anchors.top: parent.top
|
||||
|
||||
Text {
|
||||
id: time
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
|
||||
color: textColor
|
||||
|
||||
text : Qt.formatTime(container.dateTime, "hh:mm")
|
||||
|
||||
font.family:textFont; font.pointSize: 72
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
}
|
||||
|
||||
Text {
|
||||
id: date
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
|
||||
color: textColor
|
||||
|
||||
text : Qt.formatDate(container.dateTime, "dddd, MMM dd")
|
||||
|
||||
font.family:textFont; font.pointSize: 24
|
||||
}
|
||||
}
|
||||
}
|
@ -31,7 +31,6 @@ Rectangle {
|
||||
|
||||
property color textColor: "white"
|
||||
property string textFont: "geo sans light"
|
||||
property var dateTime: new Date()
|
||||
|
||||
Connections {
|
||||
target: sessionManager
|
||||
@ -53,44 +52,12 @@ Rectangle {
|
||||
image: "background.jpg"
|
||||
// video: "video.avi"
|
||||
}
|
||||
|
||||
Clock {
|
||||
id: clock
|
||||
anchors.fill: parent
|
||||
}
|
||||
|
||||
Timer {
|
||||
interval: 100; running: true; repeat: true;
|
||||
onTriggered: container.dateTime = new Date()
|
||||
}
|
||||
|
||||
Item {
|
||||
width: 350; height: 300
|
||||
anchors.top: parent.top
|
||||
anchors.right: parent.right
|
||||
|
||||
Text {
|
||||
id: time
|
||||
|
||||
anchors.top: parent.top; anchors.right: parent.right
|
||||
anchors.rightMargin: 10
|
||||
|
||||
color: textColor
|
||||
|
||||
font.family:textFont; font.pointSize: 72
|
||||
|
||||
text : Qt.formatTime(container.dateTime, "hh:mm")
|
||||
}
|
||||
|
||||
Text {
|
||||
id: date
|
||||
|
||||
anchors.top: time.bottom
|
||||
anchors.horizontalCenter: time.horizontalCenter
|
||||
|
||||
color: textColor
|
||||
|
||||
font.family:textFont; font.pointSize: 24
|
||||
|
||||
text : Qt.formatDate(container.dateTime, "dddd, MMM dd")
|
||||
}
|
||||
}
|
||||
|
||||
Image {
|
||||
id: rectangle
|
||||
anchors.centerIn: parent
|
||||
|
Loading…
Reference in New Issue
Block a user