Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
frmMain: Implemented code to hide/show calendar entries
[xestiacalendar/.git] / source / widgets / XCCalendarListCalendarCtrl.cpp
1 // XCCalendarListCalendarCtrl.cpp - XCCalendarListCalendarCtrl class
2 //
3 // (c) 2016 Xestia Software Development.
4 //
5 // This file is part of Xestia Calendar.
6 //
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.
10 //
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.
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 #include "XCCalendarListCalendarCtrl.h"
21 using namespace std; 
23 XCCalendarListCalendarCtrl::XCCalendarListCalendarCtrl(wxWindow* parent, string calendarName, Colour calendarColour) : 
24         wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, ""){
26         // Create the sizer.
27         
28         szrMain = new wxBoxSizer( wxHORIZONTAL );
29         this->SetSizer(szrMain);
30         
31         // Setup the checkbox.
32         
33         //chkShowAll = new wxCheckBox();
34         
35         chkShowCalendar = new wxCheckBox(this, wxID_ANY, "", wxPoint(0,0), wxDefaultSize, wxCHK_3STATE, wxDefaultValidator, "");
36         
37         // Setup the label.
38         
39         lblCalendarName = new wxStaticText(this, wxID_ANY, wxString(calendarName), wxDefaultPosition, wxDefaultSize, 0, "");
40         
41         // Setup the colour.
42                 
43         pnlColour = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxSize(16,16), 0, "");
44         pnlColour->SetBackgroundColour(wxColour(calendarColour.red, calendarColour.green, calendarColour.blue, calendarColour.alpha));
45                 
46         // Connect them to the sizer.
47         
48         szrMain->Add(15, 0, 0, 0, 5);
49         szrMain->Add(chkShowCalendar, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
50         szrMain->Add(lblCalendarName, 1, wxALL|wxALIGN_CENTER_VERTICAL, 5);
51         szrMain->Add(pnlColour, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
52         
53         // Connect the events to the controls.
54         
55         chkShowCalendar->Connect(wxEVT_COMMAND_CHECKBOX_CLICKED, wxMouseEventHandler(XCCalendarListCalendarCtrl::ShowAllCheckboxClick), NULL, this);
56         chkShowCalendar->SetValue(wxCHK_CHECKED);
57         
58 }
60 XCCalendarListCalendarCtrl::~XCCalendarListCalendarCtrl(){
61         
62         // Delete the controls.
63         
64 }
66 wxCheckBoxState XCCalendarListCalendarCtrl::GetShowCheckboxState(){
67         
68         return chkShowCalendar->Get3StateValue();
69         
70 }
72 int XCCalendarListCalendarCtrl::GetCalendarID(){
73         
74         return calendarID;
75         
76 }
78 void XCCalendarListCalendarCtrl::SetCalendarID(int calendarID){
79         
80         this->calendarID = calendarID;
81         
82 }
84 void XCCalendarListCalendarCtrl::ShowAllCheckboxClick( wxMouseEvent &mouseEvent ){
85         
86         if (chkShowCalendar->Get3StateValue() == wxCHK_CHECKED){
87                 
88                 wxCommandEvent event(XCCALENDARCTRL_SHOWCALENDARENTRIES);
89                 event.SetInt(calendarID);
90                 event.SetId(ID_SHOWCALENDARENTRIES);
91                 wxPostEvent(this->GetParent()->GetParent()->GetParent(), event);
92                 
93         } else {
94                 
95                 wxCommandEvent event(XCCALENDARCTRL_HIDECALENDARENTRIES);
96                 event.SetInt(calendarID);
97                 event.SetId(ID_HIDECALENDARENTRIES);
98                 wxPostEvent(this->GetParent()->GetParent()->GetParent(), event);
99                 
100         }
101         
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