1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/mw/akntouchpane.hrh Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -0,0 +1,70 @@
1.4 +/*
1.5 +* Copyright (c) 2005, 2007 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* 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.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: Constants for touch pane elements
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#ifndef AKNTOUCHPANE_HRH
1.23 +#define AKNTOUCHPANE_HRH
1.24 +
1.25 +
1.26 +/**
1.27 + * Flags usable with AVKON_TOUCHPANE resource structure.
1.28 + */
1.29 +enum TAknTouchPaneResourceFlags
1.30 + {
1.31 + /** Indicates that no touch pane is constructed for the application. This
1.32 + flag preceeds any other flags defined here. */
1.33 + EAknNoTouchPane = 0x01,
1.34 + /** Indicates use of customized touch pane content. */
1.35 + EAknCustomTouchPane = 0x02
1.36 + };
1.37 +
1.38 +/**
1.39 + * Pre-defined functional buttons for touch pane. These enumerations can be
1.40 + * used when defining the content of a touch pane in its resource structure.
1.41 + */
1.42 +enum TTouchPaneElement
1.43 + {
1.44 + /** Empty touch pane element. */
1.45 + ETouchPaneElementNone,
1.46 + /** Button for launching application shell. */
1.47 + ETouchPaneElementAppsGrid,
1.48 + /** Button for launching application swappper window. */
1.49 + ETouchPaneElementAppSwapper,
1.50 + /** Button for launching active idle application. */
1.51 + ETouchPaneElementIdle,
1.52 + /** Button for launching dialler application. */
1.53 + ETouchPaneElementDialler,
1.54 + /** Button for rotating the screen between normal and alternate
1.55 + orientation. */
1.56 + ETouchPaneElementRotateScreen,
1.57 + /** Button for launching context sensitive help. */
1.58 + ETouchPaneElementHelp,
1.59 + /** Button for opening or closing input method window. */
1.60 + ETouchPaneElementInput,
1.61 + /** Button for opening or closing application's toolbar. */
1.62 + ETouchPaneElementToolbar,
1.63 + /** Button for launching contacts application. */
1.64 + ETouchPaneElementContacts,
1.65 +
1.66 + /** Button is implemented as a ECom plug-in. */
1.67 + ETouchPaneElementPlugin = 0xff
1.68 + };
1.69 +
1.70 +
1.71 +#endif // AKNTOUCHPANE_HRH
1.72 +
1.73 +// End of File