Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
frmMain: Implemented code to hide/show calendar entries
[xestiacalendar/.git] / source / widgets / XCCalendarDay.h
1 // XCCalendarDay.h - Xestia Calendar XCCalendarDay widget class header file.
2 //
3 // (c) 2016 Xestia Software Development.
4 //
5 // This file is part of Xestia Calendar.
6 //
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.
10 //
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.
15 //
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_XCCALENDARDAY_H__
20 #define __WIDGETS_XCCALENDARDAY_H__
22 #include <wx/wx.h>
23 #include <wx/dcbuffer.h>
24 #include <wx/mstream.h>
25 #include <vector>
27 #include "XCCalendarDayEntry.h"
28 #include "XCCalendarMonthView.h"
29 #include "../common/events.h"
30 #include "../bitmaps.h"
32 #include "../libraries/CalendarDataStorage/CalendarDataStorage.h"
34 class XCCalendarMonthView;
36 class XCCalendarDay: public wxPanel
37 {
38         private:
39                 XCCalendarMonthView *MonthViewPointer = nullptr;
40                 wxFlexGridSizer *WindowSizer = new wxFlexGridSizer(2, 1, 0, 0);
41                 wxBoxSizer *TopSectionSizer = new wxBoxSizer(wxHORIZONTAL);
42                 wxBoxSizer *MainSectionSizer = new wxBoxSizer(wxVERTICAL);
43                 wxBoxSizer *EventListFrameSizer = new wxBoxSizer(wxVERTICAL);
44                 wxStaticBitmap *HighPriorityIcon = new wxStaticBitmap(this, wxID_ANY, wxNullBitmap, wxDefaultPosition, wxSize(32,32), 0);
45                 wxStaticBitmap *AlertIcon = new wxStaticBitmap(this, wxID_ANY, wxNullBitmap, wxDefaultPosition, wxSize(32,32), 0);
46                 wxBitmap AlertIconBitmap;
47                 wxBitmap PriorityIconBitmap;
48                 wxStaticText *NumberText = nullptr;
49                 wxScrolledWindow *EventListFrame = new wxScrolledWindow(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxVSCROLL);
50                 int CalendarEntrySeekNumber = 0;
51                 int calendarDay = 0;
52                 int calendarMonth = 0;
53                 int calendarYear = 0;
54                 bool IsInMonth = false;
55         
56                 vector<XCCalendarDayEntry*> CalendarEntryList;
57                 vector<size_t> CalendarEntryListIndex;
58         
59                 void Repaint();
60         
61         protected:
62                 void HideAccountEntries(wxCommandEvent &accountData);
63                 void ShowAccountEntries(wxCommandEvent &accountData);
64                 void HideCalendarEntries(wxCommandEvent &calendarData);
65                 void ShowCalendarEntries(wxCommandEvent &calendarData);
66         
67         public:
68                 XCCalendarDay(wxWindow *parent, const wxString& title, const wxPoint& pos, const wxSize& size);
69                 ~XCCalendarDay();
70                 void PaintFrameEvent(wxPaintEvent &PaintEvent);
71                 void ResizeFrameEvent(wxSizeEvent &SizeEvent);
72                 void DeselectOthersEvent(wxCommandEvent &DeselectEvent);
73                 void DeselectAllEvent(wxCommandEvent &DeselectEvent);
74                 void UpdateTopIcons();
75                 void SetupControl(int SetupDay, int SetupMonth, int SetupYear, bool SetupIsInMonth, XCCalendarMonthView *MonthViewPointer, CalendarDataStorage *dataStorage, std::vector<int> *hideAccounts, std::vector<int> *hideCalendars);
76         
77         DECLARE_EVENT_TABLE()
79 };
81 #endif
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy