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

📄 settingexampleui.h

📁 基于 symbian OS的屏幕设置经典程序,很不错,欢迎下载学习
💻 H
字号:
/*
 * ============================================================================
 *  Name     : CSettingExampleUi from SettingExampleUi.h
 *  Part of  : SettingExample
 *  Created  : 29/05/2006 by Forum Nokia
 *  Version  : 2.0
 *  Copyright: Forum Nokia
 * ============================================================================
 */

#ifndef __SettingExample_APPUI_H__
#define __SettingExample_APPUI_H__

#include <aknviewappui.h>
#include <aknnavi.h>

class CSettingsData;

/**
 * Class:		CSettingExampleAppUi
 *
 * Discussion:	An instance of class CSettingExampleAppUi is the UserInterface 
 *				part of the AVKON application framework for the SettingExample 
 *				example application
 *
 *
 */
class CSettingExampleAppUi : public CAknViewAppUi
    {
public:
	/**
	 * Function : ConstructL
	 *
	 * Discussion : Performs the second phase construction of a 
	 *				CSettingExampleAppUi object	this needs to be public due to 
	 *				the way the framework constructs the AppUi
	 */
    void ConstructL();

	/**
	 * Function :	CSettingExampleAppUi
	 *
	 * Discussion : Perform the first phase of two phase construction.
	 *				This needs to be public due to the way the framework 
	 *				constructs the AppUi
	 */
    CSettingExampleAppUi();

	/**
	 * Function :	~CSettingExampleAppUi
	 *
	 * Discussion :	Hidden virtual destructor. Destroys object and releases
	 *				all associated memory.
	 *				
	 */
    ~CSettingExampleAppUi();

	
public: // from CEikAppUi
	/**
	 * Function : 
	 *
	 * Discussion :	Handle user menu selections
	 *				
	 * Params :		aCommand - the enumerated code for the option selected
	 *
	 * Returns : 
	 * 
	 */
	void HandleCommandL(TInt aCommand);
    
private:
    void InternalizeSettingsDataL();
    void ExternalizeSettingsDataL() const;

	
private:
	CSettingsData* iData;	/* Pointer to settings data - OWNED */
    TFileName iSettingsFile;
	};

#endif // __SettingExample_APPUI_H__

⌨️ 快捷键说明

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