forked from NOVACProject/NOVACProgram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileTreeCtrl.h
More file actions
28 lines (23 loc) · 736 Bytes
/
FileTreeCtrl.h
File metadata and controls
28 lines (23 loc) · 736 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
#pragma once
// CFileTreeCtrl
namespace DlgControls {
/** The <b>CFileTreeCtrl</b> is a specialized class to show the
file-structure on the electronics box in the FileTransferDialog. */
class CFileTreeCtrl : public CTreeCtrl
{
DECLARE_DYNAMIC(CFileTreeCtrl)
public:
CFileTreeCtrl();
virtual ~CFileTreeCtrl();
protected:
DECLARE_MESSAGE_MAP()
public:
//void OnItemexpanding(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
void SetWnd(CWnd* pWnd);
public:
//variables
CWnd* parent;
};
}