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

📄 s80appui.cpp

📁 symbian下开发软件时
💻 CPP
字号:
// s80appui.cpp
// Copyright Symbian Ltd, John Pagonis 2005-2006, Symbian Developer Network

#include "projectAppUi.h" //includes the Ckon headers

void CProjectAppUi::ConstructUiVariantL()
    {
    // completes the UI framework's construction of the App UI.
    BaseConstructL(); 
    }

/**
    This method may be called by HandleCommandL(TInt aCommand) for GUI Variant
    specific command handling.
 */
void CProjectAppUi::VariantHandleCommandL(TInt /*aCommand*/)
    {
    /* You know what to do here

    switch(aCommand)
        {
		default:
            break;
        }
    */
    }

void CProjectAppUi::VariantDimButtons()
	{
	iButtonGroup=CEikButtonGroupContainer::Current();
	iButtonGroup->DimCommand(EProjectAppCmdDoStuffCancel,ETrue);
	}

void CProjectAppUi::DimOption()
	{
	iButtonGroup->DimCommand(EProjectAppCmdDoStuffCancel,EFalse);
	iButtonGroup->DimCommand(EProjectAppCmdDoStuff,ETrue);
	iButtonGroup->DrawDeferred();
	}

void CProjectAppUi::DimCancelOption()
	{
	iButtonGroup->DimCommand(EProjectAppCmdDoStuffCancel,ETrue);
	iButtonGroup->DimCommand(EProjectAppCmdDoStuff,EFalse);
	iButtonGroup->DrawDeferred();
	}

/**
	This method may be called by DynInitMenuPaneL(TInt aMenuId,CEikMenuPane* aMenuPane),
	for GUI Variant specific command handling.
*/
void CProjectAppUi::VariantDynInitMenuPaneL(TInt /*aMenuId*/,CEikMenuPane* /*aMenuPane*/)
	{
	}

CProjectDocument::CProjectDocument(CEikApplication& aApp)
    : CEikDocument(aApp)
    {
    }

⌨️ 快捷键说明

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