2010-07-10 16:34:30 +02:00
|
|
|
/*
|
2011-01-29 13:04:15 +01:00
|
|
|
Copyright 2010-2011 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-14 15:04:01 +02:00
|
|
|
#ifndef WXUI_H
|
|
|
|
#define WXUI_H
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
#include "AccountPanel.h"
|
2010-05-17 18:03:21 +02:00
|
|
|
#include "PreferencesPanel.h"
|
2010-05-14 15:04:01 +02:00
|
|
|
#include "UsersDialog.h"
|
2010-06-23 14:25:00 +02:00
|
|
|
#include "GenerateDialog.h"
|
2010-07-14 11:15:48 +02:00
|
|
|
#include "SearchPanel.h"
|
2010-08-17 18:59:19 +02:00
|
|
|
#include "StatsPanel.h"
|
2010-05-14 15:04:01 +02:00
|
|
|
#include <controller/KissCount.h>
|
2010-09-04 11:54:49 +02:00
|
|
|
#include "grid/wxMyGrid.h"
|
|
|
|
#include "grid/wxGridCellFastBoolEditor.h"
|
2010-09-08 11:02:03 +02:00
|
|
|
#include "grid/wxGridCellButtonRenderer.h"
|
|
|
|
#include "grid/wxGridCellButtonEditor.h"
|
2010-05-14 15:04:01 +02:00
|
|
|
|
|
|
|
class KissCount;
|
|
|
|
class AccountPanel;
|
2010-05-17 18:03:21 +02:00
|
|
|
class PreferencesPanel;
|
2010-05-14 15:04:01 +02:00
|
|
|
|
2010-05-16 10:35:34 +02:00
|
|
|
extern wxString months[12];
|
2010-08-17 18:59:19 +02:00
|
|
|
extern wxColour categoryColors[12];
|
2010-05-16 10:35:34 +02:00
|
|
|
|
2010-05-14 15:04:01 +02:00
|
|
|
class wxUI: public wxFrame
|
|
|
|
{
|
2010-08-26 21:28:15 +02:00
|
|
|
public:
|
2010-05-14 15:04:01 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
wxUI(KissCount* kiss, const wxString& title, const wxPoint& pos, const wxSize& size);
|
|
|
|
~wxUI();
|
2010-05-14 15:04:01 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
bool SetLanguage(long language);
|
2010-05-14 15:04:01 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void ChangeUser();
|
|
|
|
void LoadUser();
|
2010-05-16 10:35:34 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void ShowAccount();
|
|
|
|
void ShowSearch();
|
|
|
|
void ShowPreferences();
|
|
|
|
void GenerateMonth(int month, int year);
|
2010-05-17 18:03:21 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
void KillMe();
|
2010-06-27 21:39:49 +02:00
|
|
|
|
2010-12-20 19:28:24 +01:00
|
|
|
void ShowPanel(KissPanel* panel);
|
2010-08-26 21:28:15 +02:00
|
|
|
void NeedReload();
|
2010-06-27 21:39:49 +02:00
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
wxLanguage _language;
|
2010-07-07 21:04:38 +02:00
|
|
|
|
2010-12-20 19:28:24 +01:00
|
|
|
void OnButtonClicked(wxCommandEvent& event);
|
|
|
|
void OnButtonChangeUser(wxCommandEvent& event);
|
|
|
|
void OnButtonAbout(wxCommandEvent& event);
|
|
|
|
void OnButtonQuit(wxCommandEvent& event);
|
|
|
|
|
2010-08-26 21:28:15 +02:00
|
|
|
private:
|
|
|
|
KissCount *_kiss;
|
2010-12-20 19:28:24 +01:00
|
|
|
wxBoxSizer *_vbox, *_buttonsBox;
|
|
|
|
KissPanel *_curPanel;
|
|
|
|
std::vector<KissPanel*> _panels;
|
|
|
|
std::vector<wxBitmapButton*> _buttons;
|
2010-08-26 21:28:15 +02:00
|
|
|
wxLocale *_locale;
|
|
|
|
bool _needReload;
|
2010-12-20 19:28:24 +01:00
|
|
|
|
|
|
|
void InitPanels();
|
|
|
|
void LoadPanels();
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE();
|
2010-05-14 15:04:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|