focuseventappui.h

来自「用来学习 焦点 的 的例子,可以 好好看看焦点在 symbian中很重要,」· C头文件 代码 · 共 93 行

H
93
字号
/*
* ==============================================================================
*  Name        : focuseventappui.h
*  Part of     : Focus event example
*  Interface   :
*  Description :
*  Version     :
*
*  Copyright (c) 2004 - 2006 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef __FOCUSEVENT_APPUI_H__
#define __FOCUSEVENT_APPUI_H__

// INCLUDES
#include <aknappui.h>

// FORWARD DECLARATIONS
class CFocusEventAppView;
class CKeyCapturer;

// CLASS DECLARATION
/**
* CFocusEventAppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class CFocusEventAppUi : public CAknAppUi
    {
    public: // Constructors and destructors

        /**
        * CFocusEventAppUi.
        * C++ default constructor. This needs to be public due to
        * the way the framework constructs the AppUi
        */
        CFocusEventAppUi();

        /**
        * ~CFocusEventAppUi.
        * Virtual Destructor.
        */
        virtual ~CFocusEventAppUi();

    public:  // Functions from base classes

        /**
        * From CAknAppUi, HandleForegroundEventL.
        * Handles a change of focus.
        * @param aForeground is ETrue is this application has focus.
        */
        void HandleForegroundEventL( TBool aForeground );

        /**
        * From CEikAppUi, HandleCommandL.
        * Takes care of command handling.
        * @param aCommand Command to be handled.
        */
        void HandleCommandL( TInt aCommand );
        
   public: // new function
   
        /**
        * BringToForeground
        */        
        void BringToForeground();
    
    private: // Constructors

        /**
        * ConstructL.
        * 2nd phase constructor.
        */
        void ConstructL();        
        
    private: // Data

        /**
        * The application view
        * Owned by CFocusEventAppUi
        */
        CFocusEventAppView* iAppView;
        CKeyCapturer* iCaptureKey;
    };

#endif // __FOCUSEVENT_APPUI_H__

// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?