-rw-r--r-- | Preferences.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Preferences.h b/Preferences.h new file mode 100644 index 0000000..04885f2 --- a/dev/null +++ b/Preferences.h | |||
@@ -0,0 +1,48 @@ | |||
1 | // Preferences.h : header file | ||
2 | // | ||
3 | |||
4 | ///////////////////////////////////////////////////////////////////////////// | ||
5 | // CPreferences dialog | ||
6 | |||
7 | class CPreferences : public CDialog | ||
8 | { | ||
9 | // Construction | ||
10 | public: | ||
11 | CPreferences(CWnd* pParent = NULL); // standard constructor | ||
12 | |||
13 | // Dialog Data | ||
14 | //{{AFX_DATA(CPreferences) | ||
15 | enum { IDD = IDD_PREFS }; | ||
16 | CSpinButtonCtrlm_LogMinSpinCtl; | ||
17 | CEditm_LogFileCtl; | ||
18 | CSpinButtonCtrlm_ThreadsSpinCtl; | ||
19 | CSpinButtonCtrlm_DatasizeSpinCtl; | ||
20 | CButtonm_BrowseCtl; | ||
21 | CSpinButtonCtrlm_AutosaveSpinCtl; | ||
22 | UINTm_AutosaveMinutes; | ||
23 | CStringm_LogFile; | ||
24 | UINTm_MaxThreads; | ||
25 | UINTm_PingSize; | ||
26 | BOOLm_SaveOnShutdown; | ||
27 | UINTm_LogMins; | ||
28 | BOOLm_bStoreLastActivity; | ||
29 | //}}AFX_DATA | ||
30 | |||
31 | |||
32 | // Overrides | ||
33 | // ClassWizard generated virtual function overrides | ||
34 | //{{AFX_VIRTUAL(CPreferences) | ||
35 | protected: | ||
36 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support | ||
37 | //}}AFX_VIRTUAL | ||
38 | |||
39 | // Implementation | ||
40 | protected: | ||
41 | |||
42 | // Generated message map functions | ||
43 | //{{AFX_MSG(CPreferences) | ||
44 | virtual BOOL OnInitDialog(); | ||
45 | afx_msg void OnBrowse(); | ||
46 | //}}AFX_MSG | ||
47 | DECLARE_MESSAGE_MAP() | ||
48 | }; | ||