📄 cprogressdlg.h
字号:
/*
* Copyright (c) 2007,苏州丰达
* All rights reserved.
* 版权所有(C)2007-2008 苏州丰达
* 公司地址:中国,江苏省苏州市
* 网址:http://www.
*
* 文件名称:CM3UIQ2AppUi.cpp
* 摘 要:
*
* 产品版本:彩视 1.0
*
* 作 者:xxxx
* 创建日期:xxxxx
* 负责人:xxxxx
*
* 修改者:司治国
* 修改日期:2008.1.17
*
* 编译器或环境等描述:uiqsdk2.1
* 适用于VC2003+symbian 7.x的环境开发。
*
**/
#ifndef CPROGRESSDLG_H
#define CPROGRESSDLG_H
// INCLUDES
#include <e32std.h>
#include <e32base.h>
#include <eikdialg.h>
// CLASS DECLARATION
/**
* CCProgressDlg
*
*/
class CProgressDlg : public CEikDialog
{
public: // Constructors and destructor
/**
* Destructor.
*/
~CProgressDlg();
/**
* Two-phased constructor.
*/
static CProgressDlg* NewL();
/**
* Two-phased constructor.
*/
static CProgressDlg* NewLC();
void Increase(TInt aIncrease);
void PreLayoutDynInitL();
TBool OkToExitL( TInt aButtonId );
TInt PrepareForcedExitL();
TBool ShutL();
void SetFinalval(TInt aFinalValue);
private:
/**
* Constructor for performing 1st stage construction
*/
CProgressDlg();
/**
* EPOC default constructor for performing 2nd stage construction
*/
void ConstructL();
};
#endif // CPROGRESSDLG_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -