// progdlg.h : header file
// cg: this file was added by the progress dialog component 【程序编程相关:一个学习案例: 使用 IBM Rat】 【推荐阅读:使用 Struts portlet 在门】 【扩展信息:共享一下“资源文件做多语言版本”的类 】/////////////////////////////////////////////////////////////////////////////
// cprogressdlg dialog#ifndef __progdlg_h__
#define __progdlg_h__ #include "resource.h" //lt class cprogressdlg : public cdialog { // construction / destruction public: cprogressdlg(uint ncaptionid = 0); // standard constructor ~cprogressdlg();bool create(cwnd *pparent=null);
// progress dialog manipulation
void setstatus(lpctstr lpszmessage); void setrange(int nlower,int nupper); int setstep(int nstep); int setpos(int npos); int offsetpos(int npos); int stepit(); // dialog data //{{afx_data(cprogressdlg) enum { idd = cg_idd_progress }; canimatectrl m_trans_animatectrl; cprogressctrl m_progress; //}}afx_data// overrides
// classwizard generated virtual function overrides //{{afx_virtual(cprogressdlg) public: ... 下一页