⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 projectappui.h

📁 symbian下开发软件时
💻 H
字号:
// projectAppUi.h// Copyright Symbian Ltd, John Pagonis 2005-2006, Symbian Developer Network
#ifndef PROJECTAPPUI_H__#define PROJECTAPPUI_H__#include <project.rsg>#include <AknAppUi.h>#include "projectBaseView.h"#include "projectView.h"#include "projectModel.h"#include "projectDocument.h"#include "project.hrh"#include "globals.h"class CProjectAppUi : public CAknAppUi    {public:    void ConstructL();    ~CProjectAppUi();
        
    void DimCancelOption();
        private:    void ConstructUiVariantL();        
    // from CEikAppUi
    void HandleCommandL(TInt aCommand);            void VariantHandleCommandL(TInt aCommand);            //from MEikMenuObserver    void DynInitMenuPaneL(TInt aMenuId,CEikMenuPane* aMenuPane);        
    void VariantDynInitMenuPaneL(TInt aMenuId,CEikMenuPane* aMenuPane);
        
    void ToggleViewL();
    void SwitchToViewL(TInt aTargetView);
        
    void DimOption();
    void VariantDimButtons();
        
private:    TInt    iCurrentView;
    TFixedArray<CProjectBaseView*,ETotalNumberOfViews> iAppViews;
            CProjectModel*  iModel;	CProjectView*   iProjectView;	};
#endif

⌨️ 快捷键说明

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