1.1 --- a/epoc32/include/mw/aknborders.h Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/mw/aknborders.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,56 @@
1.4 -aknborders.h
1.5 +/*
1.6 +* Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
1.7 +* All rights reserved.
1.8 +* This component and the accompanying materials are made available
1.9 +* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.10 +* which accompanies this distribution, and is available
1.11 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.12 +*
1.13 +* Initial Contributors:
1.14 +* Nokia Corporation - initial contribution.
1.15 +*
1.16 +* Contributors:
1.17 +*
1.18 +* Description:
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +#ifndef __AKNBORDERS_H__
1.24 +#define __AKNBORDERS_H__
1.25 +
1.26 +#include <e32std.h>
1.27 +
1.28 +/**
1.29 + * Border ids for Avkon extended TGulBorder.
1.30 + * Contains hard coded border definitions for different
1.31 + * dialogs.
1.32 + */
1.33 +class AknBorderId
1.34 + {
1.35 +public:
1.36 + enum TAknBorderId
1.37 + {
1.38 + /** Border id for notes and queries. */
1.39 + EAknBorderNotePopup = 0x800110,
1.40 + /** Border id for options menu. */
1.41 + EAknBorderMenuPopup,
1.42 + /** Border id for sub-menu of options menu. */
1.43 + EAknBorderMenuSubmenuPopup,
1.44 + /** Border id for notification popup. */
1.45 + EAknBorderNotificationPopup,
1.46 + /** Border id for grouped notification popup. */
1.47 + EAknBorderGroupedNotificationsPopup,
1.48 + /** Border id for character selection popup. */
1.49 + EAknBorderCharacterSelectionPopup,
1.50 + /** Border id for list query dialog. */
1.51 + EAknBorderPopups,
1.52 + /** Border id for list query dialog with heading. */
1.53 + EAknBorderPopupsWithHeading,
1.54 + /** End marker for Avkon borders. Not a real border type. */
1.55 + EAknBorderMax
1.56 + };
1.57 + };
1.58 +
1.59 +
1.60 +#endif //__AKNBORDERS_H__