1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
3  * http://www.gnu.org/licenses/gpl-3.0.html
4  */
5 
6 #ifndef TODOSETTINGSDLG_H
7 #define TODOSETTINGSDLG_H
8 
9 #include <wx/intl.h>
10 #include "configurationpanel.h"
11 #include <settings.h>
12 
13 class ToDoSettingsDlg : public cbConfigurationPanel
14 {
15 	public:
16 		ToDoSettingsDlg(wxWindow* parent);
17 		~ToDoSettingsDlg();
18 
GetTitle()19         virtual wxString GetTitle() const { return _("Todo list"); }
GetBitmapBaseName()20         virtual wxString GetBitmapBaseName() const { return _T("todo"); }
21         virtual void OnApply();
OnCancel()22         virtual void OnCancel(){}
23 };
24 
25 #endif // TODOSETTINGSDLG_H
26 
27