FepSetupDialog.h
上传用户:tjsjht
上传日期:2021-01-13
资源大小:25k
文件大小:1k
源码类别:

输入法编程

开发平台:

Visual C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CFepSetupDialog from FepSetupDialog.h
  4. *  Part of  : FepSetup
  5. *  Created  : 02/22/2003 by Chiam Poh Guan
  6. *  Description:
  7. *     Declares dialog for application.
  8. *  Version  :
  9. *  Copyright: Forum Nokia
  10. * ============================================================================
  11. */
  12. #ifndef FEPSETUPDIALOG_H
  13. #define FEPSETUPDIALOG_H
  14. // INCLUDES
  15. #include <eikdialg.h>
  16. //#include <coecntrl.h>
  17. //#include <eiklbo.h>
  18. #include <fepbase.h> 
  19. // FORWARD DECLARATIONS
  20. // CLASS DECLARATION
  21. /**
  22. * CFepSetupDialog dialog class
  23. */
  24. class CFepSetupDialog : public CEikDialog
  25.     {
  26.     public: // Constructors and destructor
  27.         /**
  28.         * Destructor.
  29.         */
  30.         ~CFepSetupDialog();
  31.     public: // New functions
  32.     public: // Functions from base classes
  33. void DisplayListOfFepsL();
  34.     protected:  // New functions
  35.     protected:  // Functions from base classes
  36.         /**
  37.         * From ?base_class ?member_description
  38.         */
  39.         void PreLayoutDynInitL();
  40.         /**
  41.         * From ?base_class ?member_description
  42.         */
  43.         TBool OkToExitL( TInt aButtonId );
  44.     private: //data
  45. CFepGenericGlobalSettings* iFepSetting;
  46. MDesCArray* iFileNamesOfAvailableFeps;
  47. CDesCArray* iNamesOfAvailableFeps;
  48.     };
  49. #endif
  50. // End of File