equal
deleted
inserted
replaced
28 class ClockViewManager; |
28 class ClockViewManager; |
29 class ClockAppControllerIfImpl; |
29 class ClockAppControllerIfImpl; |
30 |
30 |
31 class ClockAppController : public QObject |
31 class ClockAppController : public QObject |
32 { |
32 { |
|
33 Q_OBJECT |
|
34 |
33 public: |
35 public: |
34 CLOCKAPPCONTROLLER_EXPORT explicit ClockAppController(QObject *parent = 0); |
36 CLOCKAPPCONTROLLER_EXPORT explicit ClockAppController(QObject *parent = 0); |
35 CLOCKAPPCONTROLLER_EXPORT virtual ~ClockAppController(); |
37 CLOCKAPPCONTROLLER_EXPORT virtual ~ClockAppController(); |
36 |
38 |
|
39 signals: |
|
40 void appReady(); |
|
41 |
|
42 private slots: |
|
43 void handleAppReady(); |
|
44 |
37 private: |
45 private: |
38 ClockViewManager *mViewManager; |
46 ClockViewManager *mViewManager; |
39 ClockAppControllerIfImpl *mIfImpl; |
47 ClockAppControllerIfImpl *mIfImpl; |
40 |
48 |
41 friend class ClockAppControllerIfImpl; |
49 friend class ClockAppControllerIfImpl; |