Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Initial version of the XCCalendarDayEntry widget
[xestiacalendar/.git] / source / widgets / XCCalendarDayEntry.h
1 // XCCalendarDayEntry.h - Xestia Calendar XCCalendarDayEntry widget class.
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_XCCALENDARDAYENTRY_H__
20 #define __WIDGETS_XCCALENDARDAYENTRY_H__
22 #include <wx/wx.h>
23 #include "../common/colour.h"
24 #include "../common/text.h"
25 #include "../common/events.h"
27 enum XCCalendarDayEntryMode {
28         XCCALENDARDAYENTRY_NORMAL,
29         XCCALENDARDAYENTRY_SMALL,
30 };
32 class XCCalendarDayEntry: public wxPanel
33 {
34         
35         private:
36                 wxWindow *DayPanel = nullptr;
37                 string EventTextData = "";
38                 wxStaticText *EventText = nullptr;
39                 wxStaticBitmap *HighPriorityIcon = new wxStaticBitmap( this, wxID_ANY, wxNullBitmap, wxPoint(14,7), wxDefaultSize, 0 );
40                 wxStaticBitmap *AlarmIcon = new wxStaticBitmap( this, wxID_ANY, wxNullBitmap, wxPoint(30,7), wxDefaultSize, 0 );
41                 wxBitmap AlarmIconBitmap;
42                 wxBitmap PriorityIconBitmap;
43         
44                 Colour EntryColour;
45         
46                 bool HasAlarm = false;
47                 bool HasHighPriority = false;
48                 int PositionMode = 0;
49                 int EntryID = 0;
50                 const int FirstPosition = 14;
51                 const int SecondPosition = 30;
52                 const int ThirdPosition = 49;
53         
54                 void Repaint();
55                 void RepaintSelected();
56         
57                 void UpdateInformation();
58         
59         public:
60                 XCCalendarDayEntry(wxWindow* parent, const wxString& title, const wxPoint& pos, const wxSize& size, const int id);
61                 ~XCCalendarDayEntry();
62         
63                 void PaintFrameEvent(wxPaintEvent &PaintEvent);
64                 void ResizeFrameEvent(wxSizeEvent &SizeEvent);
65                 void LeftClick(wxMouseEvent &MouseEvent);
66                 void Deselect(wxCommandEvent &DeselectEvent);
67         
68                 void SetColour(Colour *ColourIn);
69                 void SetDisplayAlarm(bool DisplayValue);
70                 void SetDisplayHighPriority(bool DisplayValue);
71                 int GetID();
72                 bool GetDisplayAlarm();
73                 bool GetDisplayHighPriority();
74         
75         DECLARE_EVENT_TABLE()
76 };
78 #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