mirror of
https://github.com/DxWnd/DxWnd.reloaded
synced 2024-12-30 09:25:35 +01:00
14 lines
282 B
C
14 lines
282 B
C
|
// CDragEdit class: inherited by DEdit, adds drag & drop of file pathnames
|
||
|
// within the text field.
|
||
|
|
||
|
class CDragEdit : public CEdit
|
||
|
{
|
||
|
public:
|
||
|
CDragEdit();
|
||
|
virtual ~CDragEdit();
|
||
|
BOOL OnInitDialog();
|
||
|
private:
|
||
|
afx_msg void OnDropFiles(HDROP hDropInfo);
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|