equal
deleted
inserted
replaced
|
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: Common constants for soft notifications. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef AKNSOFTNOTECONSTS_H |
|
19 #define AKNSOFTNOTECONSTS_H |
|
20 |
|
21 |
|
22 // CONSTANTS |
|
23 |
|
24 // Custom soft notification sub types: |
|
25 // |
|
26 /// Soft notification parameter identification for custom soft notification. |
|
27 const TInt KAknSoftNotificationCustom = 0x0001; |
|
28 /// Soft notification parameter identification for dynamic soft notification. |
|
29 const TInt KAknSoftNotificationDynamic = 0x0002; |
|
30 |
|
31 |
|
32 /// Dynamic soft notification events: |
|
33 enum TAknDynamicSNoteEvent |
|
34 { |
|
35 EAknDynamicSNoteEventAccepted = 1, // Soft notification was accepted. |
|
36 EAknDynamicSNoteEventCanceled, // Soft notification was canceled. |
|
37 }; |
|
38 |
|
39 #endif // AKNSOFTNOTECONSTS_H |