-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReplotSpaceManDlg.h
More file actions
45 lines (37 loc) · 999 Bytes
/
ReplotSpaceManDlg.h
File metadata and controls
45 lines (37 loc) · 999 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
39
40
41
42
43
44
45
// ReplotSpaceManDlg.h : header file
//
#pragma once
// CReplotSpaceManDlg dialog
class CReplotSpaceManDlg : public CDialogEx
{
// Construction
public:
CReplotSpaceManDlg(CWnd* pParent = nullptr); // standard constructor
~CReplotSpaceManDlg();
// Dialog Data
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_REPLOTSPACEMAN_DIALOG };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
UINT m_PlotCheckTimer = 0;
int m_iNewPlotSize = 0;
CVSListBox cOldPlotLocationsList;
// Implementation
protected:
HICON m_hIcon;
void SetupFolders();
void UpdateFolders();
// Generated message map functions
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedMfcbuttonGo();
afx_msg void OnTimer(UINT_PTR nIDEvent);
afx_msg void OnBnClickedQuit();
afx_msg void OnBnClickedMfcbuttonWait();
afx_msg void OnDestroy();
};