Changeset 167 for trunk/src/highscores_dialog.h
- Timestamp:
- 10/03/2008 07:39:43 AM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/highscores_dialog.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/highscores_dialog.h
r165 r167 25 25 #include <wx/dialog.h> 26 26 #include <wx/listctrl.h> 27 #include <wx/spinctrl.h> 27 28 28 29 namespace highscores_dialog { … … 34 35 35 36 void onClose(wxCommandEvent& event); 37 void onClear(wxCommandEvent& event); 38 void onConfigure(wxCommandEvent& event); 36 39 private: 37 40 void createControls(); … … 46 49 }; 47 50 51 52 class HighscoresSettingsDialog : public wxDialog 53 { 54 public: 55 HighscoresSettingsDialog(wxWindow* parent, configuration::Configuration* config); 56 57 void onOk(wxCommandEvent& event); 58 private: 59 void doLayout(); 60 wxSpinCtrl *spin_ctrl; 61 62 configuration::Configuration* m_config; 63 }; 64 65 66 enum { 67 ID_CONFIGURE, 68 }; 69 48 70 } 49 71
Note: See TracChangeset
for help on using the changeset viewer.
