66
|
1 |
/*
|
|
2 |
* Copyright (c) 2008 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: Contains menu command ids of clock views.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef __CLOCK_HRH__
|
|
19 |
#define __CLOCK_HRH__
|
|
20 |
|
|
21 |
/** Menu item command ids */
|
|
22 |
enum TClockCommands
|
|
23 |
{
|
|
24 |
EClockNewAlarm = 0x5500,
|
|
25 |
EClockResetAlarm,
|
|
26 |
EClockDeactivateAlarm,
|
|
27 |
EClockActivateAlarm,
|
|
28 |
EClockRemoveAlarm,
|
|
29 |
EClockSettings,
|
|
30 |
EClockMainViewHelp,
|
|
31 |
EClockMainViewExit,
|
|
32 |
EClockSwitchClockType,
|
|
33 |
//single click integration
|
|
34 |
EClockSelect,
|
|
35 |
//remove snooze
|
|
36 |
EClockRemoveSnooze
|
|
37 |
};
|
|
38 |
|
|
39 |
/** Menu item command ids for world view */
|
|
40 |
enum TClockWorldViewCommands
|
|
41 |
{
|
|
42 |
EClockWorldAddRegion = 0x8000,
|
|
43 |
EClockWorldRemoveRegion,
|
|
44 |
EClockWorldMyRegion,
|
|
45 |
EClockWorldAddImage,
|
|
46 |
EClockWorldSettings,
|
|
47 |
EClockWorldHelp,
|
|
48 |
EClockWorldExit
|
|
49 |
};
|
|
50 |
|
|
51 |
/** Command id for world clock MSK */
|
|
52 |
enum TClockWorldMSKCommand
|
|
53 |
{
|
|
54 |
EClockWorldMSKAddRegion = 0x6500
|
|
55 |
};
|
|
56 |
|
|
57 |
/** The control ids for the alarm editor form controls */
|
|
58 |
enum TClockAlarmEditorControls
|
|
59 |
{
|
|
60 |
EControlTimeEditor = 1,
|
|
61 |
EControlTextEditor,
|
|
62 |
EControlOccurancePopup,
|
|
63 |
EControlAlarmDayPopup
|
|
64 |
};
|
|
65 |
|
|
66 |
/** The clock application view ids */
|
|
67 |
enum TClockAppViewIds
|
|
68 |
{
|
|
69 |
EClockAppMainViewId = 1,
|
|
70 |
EClockAppWorldViewId,
|
|
71 |
EClkDateTimeViewId
|
|
72 |
};
|
|
73 |
|
|
74 |
/** The clock alarm editor option commands */
|
|
75 |
enum TClockAlarmEditorCommands
|
|
76 |
{
|
|
77 |
EClockAlarmChange = 0x5000,
|
|
78 |
EClockAlarmDiscardChanges,
|
|
79 |
EClockAlarmDelete,
|
|
80 |
EClockAlarmHelp,
|
|
81 |
EClockAlarmExit
|
|
82 |
};
|
|
83 |
|
|
84 |
#endif // __HUICLOCK_HRH__
|
|
85 |
|
|
86 |
// End of file
|