Code::Blocks  SVN r11506
projectdepsdlg.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
3  * http://www.gnu.org/licenses/lgpl-3.0.html
4  */
5 
6 #ifndef PROJECTDEPSDLG_H
7 #define PROJECTDEPSDLG_H
8 
9 #include "scrollingdialog.h"
10 
11 class cbProject;
12 
14 {
15  public:
16  ProjectDepsDlg(wxWindow* parent, cbProject* sel = nullptr);
17  virtual ~ProjectDepsDlg();
18  virtual void EndModal(int retCode);
19  protected:
20  void FillList();
21  bool SaveList();
22  void OnProjectChange(wxCommandEvent& event);
23  int m_LastSel;
24  private:
25  DECLARE_EVENT_TABLE()
26 };
27 
28 #endif // PROJECTDEPSDLG_H
void OnProjectChange(wxCommandEvent &event)
virtual void EndModal(int retCode)
Represents a Code::Blocks project.
Definition: cbproject.h:96
ProjectDepsDlg(wxWindow *parent, cbProject *sel=nullptr)
virtual ~ProjectDepsDlg()