forked from demoscene/E-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.h
More file actions
38 lines (32 loc) · 779 Bytes
/
MainWindow.h
File metadata and controls
38 lines (32 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#pragma once
#include "afxcmn.h"
#include "Page1.h"
#include "Page2.h"
#include "Page3.h"
#include "afxwin.h"
// CMainWindow 对话框
class CMainWindow : public CDialog
{
DECLARE_DYNAMIC(CMainWindow)
public:
CMainWindow(CWnd* pParent = NULL); // 标准构造函数
virtual ~CMainWindow();
int outputInfo(char *formatText, ...);
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_MainWindow };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
BOOL Initsucceed; //为假则退出流程
virtual BOOL OnInitDialog();
CTabCtrl m_Tab;
CPage1 m_page1;
CPage2 m_page2;
CPage3 m_page3;
afx_msg void OnTcnSelchangeTab1(NMHDR *pNMHDR, LRESULT *pResult);
CListBox m_output;
afx_msg void OnLbnSelchangeLog();
};