epoc32/include/mw/akntouchpane.hrh
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@2
     1
/*
williamr@2
     2
* Copyright (c) 2005, 2007 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:  Constants for touch pane elements
williamr@2
    15
*
williamr@2
    16
*/
williamr@2
    17
williamr@2
    18
williamr@2
    19
#ifndef AKNTOUCHPANE_HRH
williamr@2
    20
#define AKNTOUCHPANE_HRH
williamr@2
    21
williamr@2
    22
williamr@2
    23
/** 
williamr@2
    24
 * Flags usable with AVKON_TOUCHPANE resource structure.
williamr@2
    25
 */
williamr@2
    26
enum TAknTouchPaneResourceFlags
williamr@2
    27
    {
williamr@2
    28
    /** Indicates that no touch pane is constructed for the application. This
williamr@2
    29
        flag preceeds any other flags defined here. */
williamr@2
    30
    EAknNoTouchPane        = 0x01,
williamr@2
    31
    /** Indicates use of customized touch pane content. */
williamr@2
    32
    EAknCustomTouchPane    = 0x02
williamr@2
    33
    };
williamr@2
    34
williamr@2
    35
/**
williamr@2
    36
 * Pre-defined functional buttons for touch pane. These enumerations can be
williamr@2
    37
 * used when defining the content of a touch pane in its resource structure.
williamr@2
    38
 */
williamr@2
    39
enum TTouchPaneElement
williamr@2
    40
    {
williamr@2
    41
    /** Empty touch pane element. */
williamr@2
    42
    ETouchPaneElementNone,
williamr@2
    43
    /** Button for launching application shell. */
williamr@2
    44
    ETouchPaneElementAppsGrid,
williamr@2
    45
    /** Button for launching application swappper window. */
williamr@2
    46
    ETouchPaneElementAppSwapper,
williamr@2
    47
    /** Button for launching active idle application. */
williamr@2
    48
    ETouchPaneElementIdle,
williamr@2
    49
    /** Button for launching dialler application. */
williamr@2
    50
    ETouchPaneElementDialler,
williamr@2
    51
    /** Button for rotating the screen between normal and alternate
williamr@2
    52
        orientation. */
williamr@2
    53
    ETouchPaneElementRotateScreen,
williamr@2
    54
    /** Button for launching context sensitive help. */
williamr@2
    55
    ETouchPaneElementHelp,
williamr@2
    56
    /** Button for opening or closing input method window. */
williamr@2
    57
    ETouchPaneElementInput,
williamr@2
    58
    /** Button for opening or closing application's toolbar. */
williamr@2
    59
    ETouchPaneElementToolbar,
williamr@2
    60
    /** Button for launching contacts application. */
williamr@2
    61
    ETouchPaneElementContacts,
williamr@2
    62
williamr@2
    63
    /** Button is implemented as a ECom plug-in. */
williamr@2
    64
    ETouchPaneElementPlugin = 0xff
williamr@2
    65
    };
williamr@2
    66
williamr@2
    67
williamr@2
    68
#endif // AKNTOUCHPANE_HRH
williamr@2
    69
williamr@2
    70
// End of File