1
#ifndef EXTERNALDEPSDLG_H
2
#define EXTERNALDEPSDLG_H
8
class ProjectBuildTarget;
10
class DLLIMPORT ExternalDepsDlg : public wxDialog
13
ExternalDepsDlg(wxWindow* parent, cbProject* project, ProjectBuildTarget* target);
14
virtual ~ExternalDepsDlg();
16
void EndModal(int retCode);
18
void FillAdditional();
21
// BYO: Do___ functions xhanged to defines in .cpp because of incompatibilities
24
//void DoAdd(const wxString& listbox, const wxString& message);
25
//void DoEdit(const wxString& listbox, const wxString& message);
26
//void DoDel(const wxString& listbox);
28
void OnAddAdditional(wxCommandEvent& event);
29
void OnEditAdditional(wxCommandEvent& event);
30
void OnDelAdditional(wxCommandEvent& event);
32
void OnAddExternal(wxCommandEvent& event);
33
void OnEditExternal(wxCommandEvent& event);
34
void OnDelExternal(wxCommandEvent& event);
36
void OnUpdateUI(wxUpdateUIEvent& event);
38
cbProject* m_pProject;
39
ProjectBuildTarget* m_pTarget;
44
#endif // EXTERNALDEPSDLG_H