Code::Blocks  SVN r11506
selectincludefile.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
3  * http://www.gnu.org/licenses/gpl-3.0.html
4  */
5 
6 #ifndef SELECTINCLUDEFILE_H
7 #define SELECTINCLUDEFILE_H
8 
9 #include <wx/wxprec.h>
10 
11 #include "scrollingdialog.h"
12 
13 #ifndef WX_PRECOMP
14  #include <wx/button.h>
15  #include <wx/intl.h>
16  #include <wx/listbox.h>
17  #include <wx/sizer.h>
18  #include <wx/xrc/xmlres.h>
19 #endif
20 
22 {
23 public:
24  SelectIncludeFile(wxWindow* parent,wxWindowID id = -1);
25  virtual ~SelectIncludeFile();
26 
27  void AddListEntries(const wxArrayString& IncludeFile);
29 
30 private:
31  void OnOk(wxCommandEvent& event);
32  void OnCancel(wxCommandEvent& event);
33 
35 
37 
38  DECLARE_EVENT_TABLE()
39 };
40 
41 #endif // SELECTINCLUDEFILE_H
void OnCancel(wxCommandEvent &event)
wxString m_SelectedIncludeFile
wxString GetIncludeFile() const
void OnOk(wxCommandEvent &event)
void AddListEntries(const wxArrayString &IncludeFile)
SelectIncludeFile(wxWindow *parent, wxWindowID id=-1)
int wxWindowID
wxListBox * LstIncludeFiles