userdict/inc/UdictAppUi.h
changeset 0 9a3a17bfeb67
equal deleted inserted replaced
-1:000000000000 0:9a3a17bfeb67
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:     Japanese user dictionary Application UI class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef UDICTAPPUI_H
       
    24 #define UDICTAPPUI_H
       
    25 
       
    26 //  INCLUDES
       
    27 #include <aknViewAppUi.h>
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 *  Japanese user dictionary Application UI class.
       
    33 *  @since 2.6
       
    34 */
       
    35 class CUserDictAppUi : public CAknViewAppUi
       
    36     {
       
    37     public:  // Constructors and destructor
       
    38 
       
    39         /**
       
    40         * C++ default constructor.
       
    41         */
       
    42         CUserDictAppUi();
       
    43 
       
    44         /**
       
    45         * Destructor.
       
    46         */
       
    47         virtual ~CUserDictAppUi();
       
    48 
       
    49     private:
       
    50 
       
    51         /**
       
    52         * By default Symbian 2nd phase constructor is private.
       
    53         */
       
    54         void ConstructL();
       
    55  
       
    56     private:   // Functions from base classes
       
    57 
       
    58         /**
       
    59         * From CEikAppUi
       
    60         * Handles the commands.
       
    61         * @param aCommand to be handled
       
    62         */
       
    63         void HandleCommandL(TInt aCommand);
       
    64 
       
    65         /**
       
    66         * From CEikAppUi
       
    67         * Handles the commands.
       
    68         */
       
    69         void HandleScreenDeviceChangedL();
       
    70     };
       
    71 
       
    72 #endif      // UDICTAPPUI_H
       
    73             
       
    74 // End of File