diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-06 21:39:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-06 21:39:15 +0100 |
| commit | 10c5866265db6830a67748ea3e5567ceef94951b (patch) | |
| tree | f7becf1800723ffdad75fe40cc58bdaed8b3baf8 /src/wx/about_dialog.h | |
| parent | 71266e2361c255785c1b70e9d030c3156519c781 (diff) | |
| parent | 0dde88a4b531cd3a3020d0a9a1849b4114c13939 (diff) | |
Merge branch 'master' of ssh://192.168.1.201/home/carl/git/dvdomatic
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; +}; + |
