1 // XCCalendarCtrl.h - Xestia Calendar XCCalendarCtrl widget class header file.
3 // (c) 2016-2017 Xestia Software Development.
5 // This file is part of Xestia Calendar.
7 // Xestia Calendar 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 Calendar 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_XCCALENDARCTRL_H__
20 #define __WIDGETS_XCCALENDARCTRL_H__
28 #include "XCCalendarMonthView.h"
29 #include "XCCalendarManipulator.h"
31 #include "../common/monthviewgen.h"
32 #include "../libraries/CalendarDataStorage/CalendarDataStorage.h"
34 class XCCalendarCtrl: public wxPanel
38 XCCalendarMonthView *monthViewCtrl = nullptr;
39 XCCalendarManipulator *manipulatorCtrl = nullptr;
40 wxFlexGridSizer *szrMain = nullptr;
41 CalendarDataStorage *calendarStorage = nullptr;
44 void UpdateGrid(wxCommandEvent &event);
45 void HideAccountEntries(wxCommandEvent &accountData);
46 void ShowAccountEntries(wxCommandEvent &accountData);
47 void HideCalendarEntries(wxCommandEvent &calendarData);
48 void ShowCalendarEntries(wxCommandEvent &calendarData);
49 void DeleteCalendarEntries(wxCommandEvent &calendarData);
50 void DeleteCalendarEntry(wxCommandEvent &eventData);
51 void AddCalendarEntry(wxCommandEvent &eventData);
52 void UpdateCalendarEntry(wxCommandEvent &eventData);
53 void UpdateCalendarColour(wxCommandEvent &colourData);
56 XCCalendarCtrl(wxWindow *parent, CalendarDataStorage *storage);