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

📄 dummyprojdialog.h

📁 symbian 3rd下的单元测试工具 里面包括一个框架 一个实例程序 还有使用手册 很好用的 我自己用过 有问题的可以交流奥
💻 H
字号:
/*
* ============================================================================
*  Name     : CDummyProjDialog from DummyProjDialog.h
*  Part of  : DummyProj
*  Created  : 13/04/2005 by Mike Howson
*  Description:
*     Declares dialog for application.
*  Version  :
*  Copyright: Penrillian. All rights reserved
*  Web      : www.penrillian.com
* ============================================================================
*/

#ifndef DUMMYPROJDIALOG_H
#define DUMMYPROJDIALOG_H

// INCLUDES
#include <eikdialg.h>
#include <aknlists.h>
#include "DummyProj.hrh"

// FORWARD DECLARATIONS

// CLASS DECLARATION

/**
* CDummyProjDialog dialog class
* 
*/
class CDummyProjDialog : public CEikDialog
    {
    public: // Constructors and destructor
		/**
		* Destructor.
		*/
		~CDummyProjDialog();
		void ConstructL(const TRect& aRect) ;


    public: // New functions
		void AddListboxItemL(const TDesC& aPtr);

    public: // Functions from base classes
		TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aEventCode);

    protected:  // New functions
			TInt CountComponentControls() const;
			CCoeControl* ComponentControl(TInt aIndex) const;

    protected:  // Functions from base classes
        /**
         * From CEikDialog : This is called in CEikDialog::ExecuteLD()
         *                   before a form is drawn.
         */
        void PreLayoutDynInitL();
		void PostLayoutDynInitL();

		/**
		* From CEikDialog : This is called by the dialog framework, returns true if the 
		* dialog can exit, false otherwise.
		*
		* @param aButtonId  Id of the softkey which was pressed
		* @return           ETrue if the dialog can exit, false otherwise.
		*/
        TBool OkToExitL( TInt aButtonId );

    private: //data

	protected:
			CEikTextListBox* iListBox;
			//CAknColumnListBox* iListBox;
    };

#endif

// End of File

⌨️ 快捷键说明

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