1 #ifndef CBPROFILERCONFIG_H
2 #define CBPROFILERCONFIG_H
3 
4 #include <wx/intl.h>
5 #include <wx/string.h>
6 #include "configurationpanel.h"
7 
8 class wxCommandEvent;
9 class wxWindow;
10 
11 class CBProfilerConfigDlg : public cbConfigurationPanel
12 {
13     public:
14         CBProfilerConfigDlg(wxWindow* parent);
15         virtual ~CBProfilerConfigDlg();
16 
GetTitle()17         wxString GetTitle() const { return _("Profiler settings"); }
GetBitmapBaseName()18         wxString GetBitmapBaseName() const { return _T("profiler"); }
19         void OnApply();
OnCancel()20         void OnCancel(){}
21     private:
22         void CheckBoxEvent(wxCommandEvent& event);
23 
24         void LoadSettings();
25         void SaveSettings();
26 
27         DECLARE_EVENT_TABLE()
28 };
29 
30 #endif // CBPROFILERCONFIG_H
31