diff -r 000000000000 -r eb1f2e154e89 textinput/peninputarc/gsplugin/peninputsetting/inc/peninputsettingApplication.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/textinput/peninputarc/gsplugin/peninputsetting/inc/peninputsettingApplication.h Tue Feb 02 01:02:04 2010 +0200 @@ -0,0 +1,53 @@ +/* +* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0"" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: application class of peninputsetting +* +*/ + + +#ifndef C_PENINPUTSETTINGAPPLICATION_H +#define C_PENINPUTSETTINGAPPLICATION_H + +#include + +/** +* CPenInputSettingApplication application class. +* Provides factory to create concrete document object. +*/ +class CPenInputSettingApplication : public CAknApplication + { +public: // from CAknApplication + + /** + * From CApaApplication + * returns application's UID (KUidPenInputSetting). + * + * @since S60 v4.0 + * @return The value of KUidPenInputSetting. + */ + TUid AppDllUid() const; + +protected: // from CAknApplication + + /** + * From CApaApplication + * creates CPenInputSettingDocument document object. + * + * @since S60 v4.0 + * @return A pointer to the created document object. + */ + CApaDocument* CreateDocumentL(); + }; + +#endif //C_PENINPUTSETTINGAPPLICATION_H