|
1 /* |
|
2 * Copyright (c) 2002 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: Alarm UI panic reason codes |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __ALARMUI_PAN__ |
|
21 #define __ALARMUI_PAN__ |
|
22 |
|
23 |
|
24 enum TAlarmUIPanicReason |
|
25 { |
|
26 EAlarmUIInvalidState = 1, // invalid state for attempted state machine signal (see documentation) |
|
27 EAlarmUIUnknownState = 2, // unknown state |
|
28 EAlarmUIUnknownReason = 4, // unknown reason |
|
29 EAlarmUIUnknownCommand = 8, // unknown command |
|
30 }; |
|
31 |
|
32 enum TAlarmUIFunctionInfo |
|
33 { |
|
34 EAlarmUIUpdateAlarmInfo = 16, |
|
35 EAlarmUIShowAlarm = 32, |
|
36 EAlarmUIHideAlarm = 64, |
|
37 EAlarmUIDisplayDialog = 128, |
|
38 EAlarmUICancelDialog = 256, |
|
39 EAlarmUINoteCompleted = 512, |
|
40 EAlarmUIKSysHideAlarm = 1024, |
|
41 EAlarmUIAutoSnooze = 2048, |
|
42 EAlarmUIHandleInterrupt = 4096 |
|
43 }; |
|
44 |
|
45 |
|
46 #endif // __ALARMUI_PAN__ |
|
47 |
|
48 |
|
49 // End of File |