diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-06 13:24:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-06 13:24:35 +0100 |
| commit | 370e815cdefee3e7b1794b28df585b2f86e8d391 (patch) | |
| tree | 22d5a2b1194beeb0d58ab0079d3fe83b07cde772 /src/wx/about_dialog.h | |
| parent | c01abd7a9ab8e31acc8a7f1c27841a128d6ae9c7 (diff) | |
Basic about dialog containing supporters.
Diffstat (limited to 'src/wx/about_dialog.h')
| -rw-r--r-- | src/wx/about_dialog.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/wx/about_dialog.h b/src/wx/about_dialog.h new file mode 100644 index 000000000..a78abb93e --- /dev/null +++ b/src/wx/about_dialog.h @@ -0,0 +1,34 @@ +/* + Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include <wx/wx.h> + +class wxNotebook; + +class AboutDialog : public wxDialog +{ +public: + AboutDialog (wxWindow *); + +private: + void add_section (wxString, wxArrayString); + + wxNotebook* _notebook; +}; + |
