KissCount/src/view/PreferencesPanel.h

76 lines
2.0 KiB
C
Raw Normal View History

2010-07-10 16:34:30 +02:00
/*
Copyright 2010 Grégory Soutadé
2010-07-10 16:34:30 +02:00
This file is part of KissCount.
2010-07-10 16:34:30 +02:00
KissCount is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2010-07-10 16:34:30 +02:00
KissCount is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2010-07-10 16:34:30 +02:00
You should have received a copy of the GNU General Public License
along with KissCount. If not, see <http://www.gnu.org/licenses/>.
2010-07-10 16:34:30 +02:00
*/
2010-05-17 18:03:21 +02:00
#ifndef PREFERENCESPANEL_H
#define PREFERENCESPANEL_H
#include <wx/wx.h>
#include <wx/grid.h>
#include <wx/treectrl.h>
#include <wx/statbox.h>
#include <wx/gbsizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
2010-07-06 20:59:02 +02:00
#include <wx/bmpcbox.h>
2010-09-08 11:02:03 +02:00
#include <wx/colordlg.h>
#include <wx/fontdlg.h>
2010-05-17 18:03:21 +02:00
#include <controller/KissCount.h>
#include "wxUI.h"
#include <model/model.h>
2010-06-27 21:39:49 +02:00
#include "PasswordDialog.h"
2010-07-06 20:59:02 +02:00
#include "SupportedLanguages.h"
2010-05-17 18:03:21 +02:00
class wxUI;
class KissCount;
class PreferencesPanel: public wxPanel
{
public:
PreferencesPanel(KissCount* kiss, wxUI *parent);
void ChangeUser();
2010-05-17 18:03:21 +02:00
void OnAccountModified(wxGridEvent& event);
void OnCategoryModified(wxGridEvent& event);
void OnChangeName(wxCommandEvent& event);
void OnChangePassword(wxCommandEvent& event);
void OnOperationOrderChange(wxCommandEvent& event);
void OnLanguageChange(wxCommandEvent& event);
void OnShow(wxShowEvent& event);
void OnKillMe(wxCommandEvent& event);
2010-06-21 10:53:43 +02:00
private:
KissCount* _kiss;
wxUI* _wxUI;
wxGrid* _accountsGrid;
wxGrid* _categoriesGrid;
wxTextCtrl* _name;
wxBitmapComboBox* _language;
wxComboBox* _operationOrder;
2010-06-21 10:53:43 +02:00
void InitAccounts(User* user);
void InitCategories(User* user);
void InitLanguage(User* user);
void InitOperationOrder(User* user);
2010-05-17 18:03:21 +02:00
DECLARE_EVENT_TABLE();
2010-05-17 18:03:21 +02:00
};
#endif