3 #include "StandAloneDlg.h"
4 // CImportPatchDlg dialog
6 #include "PatchListCtrl.h"
8 class CImportPatchDlg
: public CResizableStandAloneDialog
10 DECLARE_DYNAMIC(CImportPatchDlg
)
13 CImportPatchDlg(CWnd
* pParent
= NULL
); // standard constructor
14 virtual ~CImportPatchDlg();
17 enum { IDD
= IDD_APPLY_PATCH_LIST
};
20 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
21 virtual BOOL
OnInitDialog();
23 CPatchListCtrl m_cList
;
26 afx_msg
void OnLbnSelchangeListPatch();
27 afx_msg
void OnBnClickedButtonAdd();
28 afx_msg
void OnBnClickedButtonUp();
29 afx_msg
void OnBnClickedButtonDown();
30 afx_msg
void OnBnClickedButtonRemove();
31 afx_msg
void OnBnClickedOk();
33 CTGitPathList m_PathList
;