|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * This file contains the ClockAppControllerIfImpl class declaration. |
|
16 * |
|
17 */ |
|
18 |
|
19 #ifndef CLOCKAPPCONTROLLERIFIMPL_H |
|
20 #define CLOCKAPPCONTROLLERIFIMPL_H |
|
21 |
|
22 // System includes |
|
23 #include <QObject> |
|
24 |
|
25 // User includes |
|
26 #include "clockappcontrollerif.h" |
|
27 #include "clockdatatypes.h" |
|
28 |
|
29 // Forward declarations |
|
30 class ClockAppController; |
|
31 class TimezoneClient; |
|
32 class SettingsUtility; |
|
33 class AlarmClient; |
|
34 |
|
35 class ClockAppControllerIfImpl : public ClockAppControllerIf, public QObject |
|
36 { |
|
37 public: |
|
38 ClockAppControllerIfImpl( |
|
39 ClockAppController *controller, QObject *parent = 0); |
|
40 virtual ~ClockAppControllerIfImpl(); |
|
41 |
|
42 public: |
|
43 virtual TimezoneClient *timezoneClient(); |
|
44 virtual SettingsUtility *settingsUtility(); |
|
45 virtual AlarmClient *alarmClient(); |
|
46 virtual void switchToView(ClockViews viewId); |
|
47 |
|
48 private: |
|
49 ClockAppController *mAppController; |
|
50 TimezoneClient *mTimeZoneClient; |
|
51 AlarmClient *mAlarmClient; |
|
52 SettingsUtility *mSettingsUtility; |
|
53 }; |
|
54 |
|
55 #endif // CLOCKAPPCONTROLLERIFIMPL_H |
|
56 |
|
57 // End of file --Don't remove this. |