forked from irwir/eMule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPPgDirectories.h
40 lines (32 loc) · 992 Bytes
/
PPgDirectories.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
36
37
38
39
40
#pragma once
#include "DirectoryTreeCtrl.h"
class CPPgDirectories : public CPropertyPage
{
DECLARE_DYNAMIC(CPPgDirectories)
public:
CPPgDirectories(); // standard constructor
virtual ~CPPgDirectories();
// Dialog Data
enum { IDD = IDD_PPG_DIRECTORIES };
void Localize(void);
protected:
CDirectoryTreeCtrl m_ShareSelector;
CListCtrl m_ctlUncPaths;
HICON m_icoBrowse;
void LoadSettings(void);
void FillUncList(void);
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnInitDialog();
virtual BOOL OnApply();
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
afx_msg void OnSettingsChange() { SetModified(); }
afx_msg void OnBnClickedSelincdir();
afx_msg void OnBnClickedSeltempdir();
afx_msg void OnBnClickedAddUNC();
afx_msg void OnBnClickedRemUNC();
afx_msg void OnHelp();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
afx_msg void OnBnClickedSeltempdiradd();
afx_msg void OnDestroy();
};