williamr@2
|
1 |
/*
|
williamr@2
|
2 |
* Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
3 |
* All rights reserved.
|
williamr@2
|
4 |
* This component and the accompanying materials are made available
|
williamr@4
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
williamr@2
|
6 |
* which accompanies this distribution, and is available
|
williamr@4
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
williamr@2
|
8 |
*
|
williamr@2
|
9 |
* Initial Contributors:
|
williamr@2
|
10 |
* Nokia Corporation - initial contribution.
|
williamr@2
|
11 |
*
|
williamr@2
|
12 |
* Contributors:
|
williamr@2
|
13 |
*
|
williamr@2
|
14 |
* Description:
|
williamr@2
|
15 |
*
|
williamr@2
|
16 |
*/
|
williamr@2
|
17 |
|
williamr@2
|
18 |
|
williamr@2
|
19 |
#ifndef __AKNBORDERS_H__
|
williamr@2
|
20 |
#define __AKNBORDERS_H__
|
williamr@2
|
21 |
|
williamr@2
|
22 |
#include <e32std.h>
|
williamr@2
|
23 |
|
williamr@2
|
24 |
/**
|
williamr@2
|
25 |
* Border ids for Avkon extended TGulBorder.
|
williamr@2
|
26 |
* Contains hard coded border definitions for different
|
williamr@2
|
27 |
* dialogs.
|
williamr@2
|
28 |
*/
|
williamr@2
|
29 |
class AknBorderId
|
williamr@2
|
30 |
{
|
williamr@2
|
31 |
public:
|
williamr@2
|
32 |
enum TAknBorderId
|
williamr@2
|
33 |
{
|
williamr@2
|
34 |
/** Border id for notes and queries. */
|
williamr@2
|
35 |
EAknBorderNotePopup = 0x800110,
|
williamr@2
|
36 |
/** Border id for options menu. */
|
williamr@2
|
37 |
EAknBorderMenuPopup,
|
williamr@2
|
38 |
/** Border id for sub-menu of options menu. */
|
williamr@2
|
39 |
EAknBorderMenuSubmenuPopup,
|
williamr@2
|
40 |
/** Border id for notification popup. */
|
williamr@2
|
41 |
EAknBorderNotificationPopup,
|
williamr@2
|
42 |
/** Border id for grouped notification popup. */
|
williamr@2
|
43 |
EAknBorderGroupedNotificationsPopup,
|
williamr@2
|
44 |
/** Border id for character selection popup. */
|
williamr@2
|
45 |
EAknBorderCharacterSelectionPopup,
|
williamr@2
|
46 |
/** Border id for list query dialog. */
|
williamr@2
|
47 |
EAknBorderPopups,
|
williamr@2
|
48 |
/** Border id for list query dialog with heading. */
|
williamr@2
|
49 |
EAknBorderPopupsWithHeading,
|
williamr@2
|
50 |
/** End marker for Avkon borders. Not a real border type. */
|
williamr@2
|
51 |
EAknBorderMax
|
williamr@2
|
52 |
};
|
williamr@2
|
53 |
};
|
williamr@2
|
54 |
|
williamr@2
|
55 |
|
williamr@2
|
56 |
#endif //__AKNBORDERS_H__
|