2010-07-10 16:34:30 +02:00
|
|
|
/*
|
|
|
|
Copyright 2010 Grégory Soutadé
|
|
|
|
|
|
|
|
This file is part of KissCount.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with KissCount. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-05-14 15:04:01 +02:00
|
|
|
#ifndef BUTTONPANEL_H
|
|
|
|
#define BUTTONPANEL_H
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
#include <wx/bmpbuttn.h>
|
|
|
|
|
|
|
|
#include <controller/KissCount.h>
|
|
|
|
#include "wxUI.h"
|
|
|
|
|
2010-07-14 11:15:48 +02:00
|
|
|
#include "view.h"
|
2010-05-14 15:04:01 +02:00
|
|
|
|
|
|
|
class KissCount;
|
|
|
|
class wxUI;
|
|
|
|
|
|
|
|
class ButtonPanel: public wxPanel
|
|
|
|
{
|
2010-07-04 16:33:25 +02:00
|
|
|
public:
|
2010-05-14 15:04:01 +02:00
|
|
|
|
|
|
|
ButtonPanel(KissCount* kiss, wxUI *parent);
|
|
|
|
~ButtonPanel();
|
|
|
|
|
2010-05-17 18:03:21 +02:00
|
|
|
void OnButtonAccount(wxCommandEvent& event);
|
2010-08-17 18:59:19 +02:00
|
|
|
void OnButtonStats(wxCommandEvent& event);
|
2010-07-14 11:15:48 +02:00
|
|
|
void OnButtonSearch(wxCommandEvent& event);
|
2010-05-17 18:03:21 +02:00
|
|
|
void OnButtonPreferences(wxCommandEvent& event);
|
|
|
|
void OnButtonChangeUser(wxCommandEvent& event);
|
2010-07-03 16:14:05 +02:00
|
|
|
void OnButtonAbout(wxCommandEvent& event);
|
|
|
|
void OnButtonQuit(wxCommandEvent& event);
|
2010-05-14 15:04:01 +02:00
|
|
|
|
2010-07-04 16:33:25 +02:00
|
|
|
private:
|
2010-05-14 15:04:01 +02:00
|
|
|
KissCount* _kiss;
|
|
|
|
wxUI* _wxUI;
|
|
|
|
wxBitmapButton* _account;
|
|
|
|
wxBitmapButton* _stats;
|
2010-07-03 16:14:05 +02:00
|
|
|
wxBitmapButton* _search;
|
2010-05-14 15:04:01 +02:00
|
|
|
wxBitmapButton* _prefs;
|
|
|
|
wxBitmapButton* _changeUser;
|
2010-07-03 16:14:05 +02:00
|
|
|
wxBitmapButton* _about;
|
|
|
|
wxBitmapButton* _quit;
|
2010-05-14 15:04:01 +02:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|