OpenASIP 2.2
Loading...
Searching...
No Matches
AboutDialog.hh
Go to the documentation of this file.
1/**
2 * @file AboutDialog.hh
3 *
4 * Declaration of AboutDialog class.
5 *
6 * @author Veli-Pekka Jääskeläinen 2004 (vjaaskel-no.spam-cs.tut.fi)
7 */
8
9#ifndef TTA_ABOUT_DIALOG_HH
10#define TTA_ABOUT_DIALOG_HH
11
12#include <wx/wx.h>
13#include <wx/statline.h>
14
15/**
16 * Dialog with editor logo, name, version and copyright information.
17 */
18class AboutDialog : public wxDialog {
19public:
20 AboutDialog(wxWindow* parent);
21 virtual ~AboutDialog();
22
23private:
24 wxSizer* createContents(wxWindow* parent, bool call_fit, bool set_sizer);
25 void setTexts();
26};
27#endif
void setTexts()
virtual ~AboutDialog()
wxSizer * createContents(wxWindow *parent, bool call_fit, bool set_sizer)