-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDlgInterface.h
More file actions
59 lines (52 loc) · 1.48 KB
/
DlgInterface.h
File metadata and controls
59 lines (52 loc) · 1.48 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#pragma once
// CDlgInterface dialog
class CDlgInterface : public CDialog
{
DECLARE_DYNAMIC(CDlgInterface)
public:
CDlgInterface(CWnd* pParent = NULL); // standard constructor
virtual ~CDlgInterface();
// Dialog Data
enum { IDD = IDD_INTERFACE };
int m_flgViewMarkers;
int m_flgViewPanelBur;
int m_flgViewDiag;
int m_flgViewDgtRT;
int m_flgViewDgtBD;
int m_flgViewRealArch;
int m_flgViewTimeGlub;
int m_flgDataBegEnd;
int m_gflgGrfStupenki;
int m_gflgScrollAll;
int m_gflgIndParBur;
int m_gflgIndHighPanel;
int m_gflgDgtGraphPanel;
int m_gflgIndDataTime;
int m_gflgIndConverter;
int m_gflgIndRegimeBur;
int m_gflgSelectOnlyY;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
virtual void OnOK();
virtual BOOL OnInitDialog();
afx_msg void OnCheckViewReper();
afx_msg void OnCheckViewPanelBur();
afx_msg void OnCheckViewDiag();
afx_msg void OnCheckViewDgtRT();
afx_msg void OnCheckViewDgtBD();
afx_msg void OnCheckViewRealArch();
afx_msg void OnCheckViewTimeGlub();
afx_msg void OnCheckDataBegEnd();
afx_msg void OnCheckGrfStupenki();
afx_msg void OnCheckScrollAll();
afx_msg void OnCheckParamBur();
afx_msg void OnCheckHighPanel();
afx_msg void OnCheckGraphDigit();
afx_msg void OnCheckIndDataTime();
afx_msg void OnCheckIndConverter();
afx_msg void OnCheckIndRegimeBur();
afx_msg void OnCheckSelectOnlyY();
public:
afx_msg void OnBnClickedButtonColorInterface();
};