diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-09 16:38:36 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-09 16:38:36 +0100 |
| commit | 6a11232620e0006f6a2b1e8d2b56e56d84229d5c (patch) | |
| tree | 5ea8d25d95aac54dbf7e45fa72c50215ff5fc437 /src/wx/file_picker_ctrl.h | |
| parent | 837a54744277a5252a1a69b0690305e9a669124d (diff) | |
Basic GUI for export.
Diffstat (limited to 'src/wx/file_picker_ctrl.h')
| -rw-r--r-- | src/wx/file_picker_ctrl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/file_picker_ctrl.h b/src/wx/file_picker_ctrl.h index 61e7bd55f..d0c4d56c8 100644 --- a/src/wx/file_picker_ctrl.h +++ b/src/wx/file_picker_ctrl.h @@ -23,10 +23,11 @@ class FilePickerCtrl : public wxPanel { public: - FilePickerCtrl (wxWindow* parent, wxString prompt, wxString wildcard); + FilePickerCtrl (wxWindow* parent, wxString prompt, wxString wildcard, bool open); wxString GetPath () const; void SetPath (wxString); + void SetWildcard (wxString); private: void browse_clicked (); @@ -36,4 +37,5 @@ private: wxSizer* _sizer; wxString _prompt; wxString _wildcard; + bool _open; }; |
