2010-07-10 16:34:30 +02:00
|
|
|
/*
|
2010-08-26 21:28:15 +02:00
|
|
|
Copyright 2010 Grégory Soutadé
|
2010-07-10 16:34:30 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
This file is part of KissCount.
|
2010-07-10 16:34:30 +02:00
|
|
|
|
2010-08-26 21:28:15 +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
|
|
|
|
2010-08-26 21:28:15 +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
|
|
|
|
2010-08-26 21:28:15 +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
|
|
|
|
2010-12-15 19:13:16 +01:00
|
|
|
#include "view.h"
|
2010-05-17 18:03:21 +02:00
|
|
|
#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-10-24 16:04:56 +02:00
|
|
|
#include "wxGridCellStarEditor.h"
|
2010-05-17 18:03:21 +02:00
|
|
|
|
2010-12-15 19:13:16 +01:00
|
|
|
class PreferencesPanel: public KissPanel
|
2010-05-17 18:03:21 +02:00
|
|
|
{
|
2010-08-26 21:28:15 +02:00
|
|
|
public:
|
|
|
|
PreferencesPanel(KissCount* kiss, wxUI *parent);
|
2010-12-15 19:13:16 +01:00
|
|
|
|
|
|
|
KissPanel* CreatePanel();
|
|
|
|
wxBitmapButton* GetButton(int id);
|
|
|
|
wxString GetToolTip();
|
|
|
|
void OnShow(wxShowEvent& event);
|
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void ChangeUser();
|
2010-05-17 18:03:21 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void OnAccountModified(wxGridEvent& event);
|
2010-10-24 16:04:56 +02:00
|
|
|
void OnAccountCellChanged(wxGridEvent& event);
|
|
|
|
void OnSharedChange(wxCommandEvent& event);
|
2010-08-26 21:28:15 +02:00
|
|
|
void OnCategoryModified(wxGridEvent& event);
|
|
|
|
void OnChangeName(wxCommandEvent& event);
|
|
|
|
void OnChangePassword(wxCommandEvent& event);
|
|
|
|
void OnOperationOrderChange(wxCommandEvent& event);
|
|
|
|
void OnLanguageChange(wxCommandEvent& event);
|
|
|
|
void OnKillMe(wxCommandEvent& event);
|
2010-06-21 10:53:43 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
private:
|
|
|
|
wxGrid* _accountsGrid;
|
|
|
|
wxGrid* _categoriesGrid;
|
|
|
|
wxTextCtrl* _name;
|
|
|
|
wxBitmapComboBox* _language;
|
|
|
|
wxComboBox* _operationOrder;
|
2010-10-24 16:04:56 +02:00
|
|
|
wxCheckListBox* _sharedWith;
|
|
|
|
int _curAccountRow;
|
|
|
|
std::map<wxString, wxString> _sharedOwners;
|
2010-06-21 10:53:43 +02:00
|
|
|
|
2010-08-26 21:28:15 +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
|
|
|
|
2010-11-29 20:11:11 +01:00
|
|
|
void AddAccount(int line, Account ac);
|
|
|
|
void AddCategory(int line, Category cat);
|
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
DECLARE_EVENT_TABLE();
|
2010-05-17 18:03:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|