spek-preferences-dialog.h (292B)
1 #pragma once 2 3 #include <wx/wx.h> 4 5 class SpekPreferencesDialog : public wxDialog 6 { 7 public: 8 SpekPreferencesDialog(wxWindow *parent); 9 10 private: 11 void on_language(wxCommandEvent& event); 12 void on_check(wxCommandEvent& event); 13 14 wxArrayString languages; 15 16 DECLARE_EVENT_TABLE() 17 };