1 // XCCalendarDayEntry.h - Xestia Calendar XCCalendarDayEntry widget class.
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_XCCALENDARDAYENTRY_H__
20 #define __WIDGETS_XCCALENDARDAYENTRY_H__
23 #include <wx/mstream.h>
25 #include "../common/colour.h"
26 #include "../common/text.h"
27 #include "../common/events.h"
28 #include "../bitmaps.h"
30 enum XCCalendarDayEntryMode {
31 XCCALENDARDAYENTRY_NORMAL,
32 XCCALENDARDAYENTRY_SMALL,
35 class XCCalendarDayEntry: public wxPanel
39 wxWindow *DayPanel = nullptr;
40 string EventTextData = "";
41 wxStaticText *EventTime = nullptr;
42 wxStaticText *EventText = nullptr;
43 wxStaticBitmap *HighPriorityIcon = new wxStaticBitmap( this, wxID_ANY, wxNullBitmap, wxPoint(14,7), wxDefaultSize, 0 );
44 wxStaticBitmap *AlarmIcon = new wxStaticBitmap( this, wxID_ANY, wxNullBitmap, wxPoint(30,7), wxDefaultSize, 0 );
45 wxSizerItem *afterSpacer = nullptr;
46 wxBitmap AlarmIconBitmap;
47 wxBitmap PriorityIconBitmap;
55 bool HasAlarm = false;
56 bool HasHighPriority = false;
62 bool showAccount = true;
63 bool showCalendar = true;
65 const int FirstPosition = 14;
66 const int SecondPosition = 30;
67 const int ThirdPosition = 49;
70 void RepaintSelected();
72 void UpdateInformation();
74 string BuildEventTime(int timeHour, int timeMinute);
79 XCCalendarDayEntry(wxWindow* parent, const wxString& title, const wxPoint& pos, const wxSize& size, const int id);
80 ~XCCalendarDayEntry();
82 void PaintFrameEvent(wxPaintEvent &PaintEvent);
83 void ResizeFrameEvent(wxSizeEvent &SizeEvent);
84 void LeftClick(wxMouseEvent &MouseEvent);
85 void Deselect(wxCommandEvent &DeselectEvent);
87 void SetTime(int timeHour, int timeMinute, int timeSecond);
88 void SetColour(Colour *ColourIn);
89 void SetDisplayAlarm(bool DisplayValue);
90 void SetDisplayHighPriority(bool DisplayValue);
91 void SetEntryIDs(int accountID, int calendarID, int entryID);
92 void SetAfterSpacer(wxSizerItem *afterSpacer);
96 wxSizerItem* GetAfterSpacer();
97 bool GetDisplayAlarm();
98 bool GetDisplayHighPriority();
99 bool SetShowAccountStatus(bool statusInput);
100 bool SetShowCalendarStatus(bool statusInput);
101 bool GetShowAccountStatus();
102 bool GetShowCalendarStatus();
104 DECLARE_EVENT_TABLE()