JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ProgressTextDLG.h
Go to the documentation of this file.
1#pragma once
2
3//
4// ProgressTextDLG.h : ヘッダー ファイル
5//
6
7#include "DLGBoxBase.h"
8
9
10//
11namespace jbxwl {
12
13using namespace jbxl;
14
15
25// CProgressTextDLG ダイアログ
26
27class CProgressTextDLG : public CDialog, public CVCounter
28{
29public:
30 CWnd* pWnd;
32 CString title;
34
35 CStatic* dCounter;
36
37// コンストラクション
38public:
39 CProgressTextDLG( LPCTSTR tn=NULL, BOOL edp=FALSE, CWnd* pParent=NULL);
40 CProgressTextDLG(UINT nIDTemplate, LPCTSTR tn=NULL, BOOL edp=FALSE, CWnd* pParent=NULL);
41 virtual ~CProgressTextDLG() { Stop();}
42
43 BOOL OnInitDialog();
44
45 virtual void Start(int m=100, char* tn=NULL); // カウンタスタート
46 virtual void Stop(); // 一時停止
47
48 virtual void SetPos(int pos);
49 virtual void StepIt(int n=1);
50 virtual void SetTitle(char* tn);
51
52 void DispCounter(int n);
53
54// ダイアログ データ
55 //{{AFX_DATA(CProgressTextDLG)
56 enum { IDD = IDD_PROGTEXT };
57 //}}AFX_DATA
58
59// オーバーライド
60protected:
61 //{{AFX_VIRTUAL(CProgressTextDLG)
62 virtual void DoDataExchange(CDataExchange* pDX);
63 virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
64 //}}AFX_VIRTUAL
65
66// インプリメンテーション
67protected:
68 //{{AFX_MSG(CProgressTextDLG)
69 //}}AFX_MSG
70 DECLARE_MESSAGE_MAP()
71};
72
73
74//{{AFX_INSERT_LOCATION}}
75
76
77} // namespace
78
79
virtual void SetTitle(char *tn)
CProgressTextDLG(LPCTSTR tn=NULL, BOOL edp=FALSE, CWnd *pParent=NULL)
virtual void StepIt(int n=1)
virtual void SetPos(int pos)
virtual void Start(int m=100, char *tn=NULL)
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam)
virtual void DoDataExchange(CDataExchange *pDX)
#define IDD_PROGTEXT
Definition resource.h:8