textinput/peninputarc/gsplugin/peninputsetting/inc/peninputsettingApplication.h
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     1 /*
       
     2 * Copyright (c) 2007 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:  application class of peninputsetting
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_PENINPUTSETTINGAPPLICATION_H
       
    20 #define C_PENINPUTSETTINGAPPLICATION_H
       
    21 
       
    22 #include <aknapp.h>
       
    23 
       
    24 /**
       
    25 *  CPenInputSettingApplication application class.
       
    26 *  Provides factory to create concrete document object.
       
    27 */
       
    28 class CPenInputSettingApplication : public CAknApplication
       
    29     {
       
    30 public:  // from CAknApplication
       
    31 
       
    32     /** 
       
    33      * From CApaApplication
       
    34      * returns application's UID (KUidPenInputSetting).
       
    35      *
       
    36      * @since S60 v4.0
       
    37      * @return The value of KUidPenInputSetting.
       
    38      */        
       
    39     TUid AppDllUid() const;
       
    40 
       
    41 protected: // from CAknApplication
       
    42 
       
    43     /** 
       
    44      * From CApaApplication
       
    45      * creates CPenInputSettingDocument document object.
       
    46      *
       
    47      * @since S60 v4.0
       
    48      * @return A pointer to the created document object.
       
    49      */
       
    50     CApaDocument* CreateDocumentL();
       
    51     };
       
    52 
       
    53 #endif //C_PENINPUTSETTINGAPPLICATION_H