Go to the documentation of this file.00001
00002
00003
00004
00005
00007
00008 #ifndef __PreferencesDialogBase__
00009 #define __PreferencesDialogBase__
00010
00011 #include <wx/intl.h>
00012
00013 class LanguagesAvailableListBox;
00014
00015 #include <wx/string.h>
00016 #include <wx/listbox.h>
00017 #include <wx/gdicmn.h>
00018 #include <wx/font.h>
00019 #include <wx/colour.h>
00020 #include <wx/settings.h>
00021 #include <wx/sizer.h>
00022 #include <wx/panel.h>
00023 #include <wx/bitmap.h>
00024 #include <wx/image.h>
00025 #include <wx/icon.h>
00026 #include <wx/notebook.h>
00027 #include <wx/button.h>
00028 #include <wx/dialog.h>
00029
00031
00032 namespace hipp
00033 {
00034
00038 class PreferencesDialogBase : public wxDialog
00039 {
00040 private:
00041
00042 protected:
00043 wxPanel* m_panel2;
00044 wxNotebook* pref_tabs;
00045 wxPanel* pref_tabs_languages;
00046 wxStdDialogButtonSizer* m_sdbSizer5;
00047 wxButton* m_sdbSizer5OK;
00048 wxButton* m_sdbSizer5Apply;
00049 wxButton* m_sdbSizer5Cancel;
00050
00051
00052 virtual void ApplyClicked( wxCommandEvent& event ) { event.Skip(); }
00053 virtual void CancelClicked( wxCommandEvent& event ) { event.Skip(); }
00054 virtual void OkayClicked( wxCommandEvent& event ) { event.Skip(); }
00055
00056
00057 public:
00058 LanguagesAvailableListBox* languages_available;
00059
00060 PreferencesDialogBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Preferences"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 425,338 ), long style = wxDEFAULT_DIALOG_STYLE );
00061 ~PreferencesDialogBase();
00062
00063 };
00064
00065 }
00066
00067 #endif //__PreferencesDialogBase__