1 // XCCalendarManipulator.h - Xestia Calendar XCCalendarManipulator header file.
3 // (c) 2016 Xestia Software Development.
5 // This file is part of Xestia Calendar.
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Calendar. If not, see <http://www.gnu.org/licenses/>
19 #ifndef __WIDGETS_XCCALENDARMANIPULATOR_H__
20 #define __WIDGETS_XCCALENDARMANIPULATOR_H__
26 #include <wx/dcbuffer.h>
27 #include <wx/mstream.h>
30 #include "XCCalendarMonthSelect.h"
31 #include "XCCalendarList.h"
32 #include "../bitmaps.h"
33 #include "../libraries/CalendarDataStorage/CalendarDataStorage.h"
35 class XCCalendarManipulator: public wxPanel
39 wxBoxSizer *szrMain = nullptr;
40 wxBoxSizer *szrNavigation = nullptr;
41 wxPanel *pnlMain = nullptr;
42 wxButton *PreviousButton = nullptr;
43 wxButton *NextButton = nullptr;
44 wxButton *CalendarsButton = nullptr;
45 wxButton *DateButton = nullptr;
46 XCCalendarMonthSelect *Moo = nullptr;
47 XCCalendarList *calendarList = nullptr;
48 CalendarDataStorage *dataStorage = nullptr;
51 wxBitmap NextIconBitmap;
52 wxBitmap PreviousIconBitmap;
53 wxBitmap CalendarsIconBitmap;
55 void UpdateDateButtonText();
57 void DateTextMouseover(wxMouseEvent &event);
58 void DateTextMouseout(wxMouseEvent &event);
59 void DateTextClick(wxCommandEvent &event);
60 void ChangeGrid(wxCommandEvent &event);
61 void NextMonth(wxCommandEvent &event);
62 void PreviousMonth(wxCommandEvent &event);
63 void ShowCalendarsList(wxCommandEvent &event);
65 XCCalendarManipulator(wxWindow* parent, const wxString& title, const wxPoint& pos, const wxSize& size, CalendarDataStorage *dataStorage);
66 ~XCCalendarManipulator();
69 std::vector<int> GetHiddenAccountsList();
70 std::vector<int> GetHiddenCalendarsList();