Skip to content

Latest commit

 

History

History
104 lines (85 loc) · 3.62 KB

datetimesettings.h

File metadata and controls

104 lines (85 loc) · 3.62 KB
 
May 11, 2013
May 11, 2013
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* Copyright (C) 2013 Jolla Ltd. <pekka.vuorela@jollamobile.com>
*
* You may use this file under the terms of the BSD license as follows:
*
* "Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Nemo Mobile nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
*/
#ifndef DATETIMESETTINGS_H
#define DATETIMESETTINGS_H
#include <QObject>
#include <QTime>
Apr 28, 2015
Apr 28, 2015
38
39
#include <timed-qt5/interface>
#include <timed-qt5/wallclock>
May 11, 2013
May 11, 2013
40
Jul 5, 2016
Jul 5, 2016
41
42
43
#include <systemsettingsglobal.h>
class SYSTEMSETTINGS_EXPORT DateTimeSettings: public QObject
May 11, 2013
May 11, 2013
44
45
46
{
Q_OBJECT
Oct 9, 2013
Oct 9, 2013
47
Q_ENUMS(HourMode)
Aug 31, 2017
Aug 31, 2017
48
Q_PROPERTY(bool ready READ ready NOTIFY readyChanged)
May 11, 2013
May 11, 2013
49
50
51
52
53
Q_PROPERTY(bool automaticTimeUpdate READ automaticTimeUpdate WRITE setAutomaticTimeUpdate NOTIFY automaticTimeUpdateChanged)
Q_PROPERTY(bool automaticTimezoneUpdate READ automaticTimezoneUpdate WRITE setAutomaticTimezoneUpdate NOTIFY automaticTimezoneUpdateChanged)
Q_PROPERTY(QString timezone READ timezone WRITE setTimezone NOTIFY timezoneChanged)
public:
Oct 9, 2013
Oct 9, 2013
54
55
56
57
58
enum HourMode {
TwentyFourHours,
TwelveHours
};
May 11, 2013
May 11, 2013
59
60
61
62
63
64
explicit DateTimeSettings(QObject *parent = 0);
virtual ~DateTimeSettings();
Q_INVOKABLE void setTime(int hour, int minute);
Q_INVOKABLE void setDate(const QDate &date);
Aug 31, 2017
Aug 31, 2017
65
66
bool ready() const;
May 11, 2013
May 11, 2013
67
68
69
70
71
72
73
74
75
bool automaticTimeUpdate();
void setAutomaticTimeUpdate(bool enable);
bool automaticTimezoneUpdate();
void setAutomaticTimezoneUpdate(bool enable);
QString timezone() const;
void setTimezone(const QString &);
Oct 9, 2013
Oct 9, 2013
76
77
Q_INVOKABLE void setHourMode(HourMode mode);
May 11, 2013
May 11, 2013
78
signals:
Aug 31, 2017
Aug 31, 2017
79
void readyChanged();
May 11, 2013
May 11, 2013
80
81
82
83
84
85
void timeChanged();
void automaticTimeUpdateChanged();
void automaticTimezoneUpdateChanged();
void timezoneChanged();
private slots:
Apr 28, 2015
Apr 28, 2015
86
87
88
void onTimedSignal(const Maemo::Timed::WallClock::Info &info, bool time_changed);
void onGetWallClockInfoFinished(QDBusPendingCallWatcher *watcher);
void onWallClockSettingsFinished(QDBusPendingCallWatcher *watcher);
May 11, 2013
May 11, 2013
89
90
private:
Apr 28, 2015
Apr 28, 2015
91
92
93
94
95
96
bool setTime(time_t time);
bool setSettings(Maemo::Timed::WallClock::Settings &s);
void updateTimedInfo();
private:
Maemo::Timed::Interface m_timed;
May 11, 2013
May 11, 2013
97
QString m_timezone;
Apr 28, 2015
Apr 28, 2015
98
99
100
101
bool m_autoSystemTime;
bool m_autoTimezone;
bool m_timedInfoValid;
Maemo::Timed::WallClock::Info m_timedInfo;
May 11, 2013
May 11, 2013
102
103
104
};
#endif