blob: 39b1b92b3e7811c505315de2cdf0736f7f61a48c (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef LIVEVIEW_H
#define LIVEVIEW_H
#include <sowatch.h>
#include <sowatchbt.h>
namespace sowatch
{
class LiveView : public BluetoothWatch
{
Q_OBJECT
public:
explicit LiveView(ConfigKey *settings, QObject *parent = 0);
~LiveView();
QPaintEngine* paintEngine() const;
int metric(PaintDeviceMetric metric) const;
QString model() const;
QStringList buttons() const;
bool isConnected() const;
bool busy() const;
void setDateTime(const QDateTime& dateTime);
void queryDateTime();
QDateTime dateTime() const;
void queryBatteryLevel();
int batteryLevel() const;
void queryCharging();
bool charging() const;
void displayIdleScreen();
void displayNotification(Notification *notification);
void displayApplication();
void vibrate(int msecs);
protected:
void setupBluetoothWatch();
void desetupBluetoothWatch();
private:
ConfigKey *_settings;
};
}
#endif // LIVEVIEW_H
|