-
Notifications
You must be signed in to change notification settings - Fork 203
/
AdvGeneral.h
35 lines (28 loc) · 963 Bytes
/
AdvGeneral.h
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
#pragma once
#include "afxpropertygridctrl.h"
#include "DialogResizer.h"
class CAdvGeneral : public CDialogEx
{
DECLARE_DYNAMIC(CAdvGeneral)
public:
CAdvGeneral(CWnd* pParent = NULL); // standard constructor
virtual ~CAdvGeneral();
// Dialog Data
enum { IDD = IDD_ADV_OPTIONS };
CDialogResizer m_Resize;
bool m_mouseDownOnCaption;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
void AddTrueFalse(CMFCPropertyGridProperty * pGroupTest, CString desc, BOOL value, int settingId);
DECLARE_MESSAGE_MAP()
public:
CMFCPropertyGridCtrl m_propertyGrid;
virtual BOOL OnInitDialog();
afx_msg void OnBnClickedOk();
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnBnClickedBtCompactAndRepair();
afx_msg void OnBnClickedButtonCopyScripts();
afx_msg void OnBnClickedButtonPasteScripts2();
afx_msg void OnGetMinMaxInfo(MINMAXINFO* lpMMI);
afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
};