KissCount/src/view/wxUI.h

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