1 // XCCalendarListCalendarCtrl.cpp - XCCalendarListCalendarCtrl class
3 // (c) 2016 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 #include "XCCalendarListCalendarCtrl.h"
23 XCCalendarListCalendarCtrl::XCCalendarListCalendarCtrl(wxWindow* parent, string calendarName, Colour calendarColour) :
24 wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, ""){
28 szrMain = new wxBoxSizer( wxHORIZONTAL );
29 this->SetSizer(szrMain);
31 // Setup the checkbox.
33 //chkShowAll = new wxCheckBox();
35 chkShowCalendar = new wxCheckBox(this, wxID_ANY, "", wxPoint(0,0), wxDefaultSize, wxCHK_3STATE, wxDefaultValidator, "");
39 lblCalendarName = new wxStaticText(this, wxID_ANY, wxString(calendarName), wxDefaultPosition, wxDefaultSize, 0, "");
43 pnlColour = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxSize(16,16), 0, "");
44 pnlColour->SetBackgroundColour(wxColour(calendarColour.red, calendarColour.green, calendarColour.blue, calendarColour.alpha));
46 // Connect them to the sizer.
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);
53 // Connect the events to the controls.
55 chkShowCalendar->Connect(wxEVT_COMMAND_CHECKBOX_CLICKED, wxMouseEventHandler(XCCalendarListCalendarCtrl::ShowAllCheckboxClick), NULL, this);
56 chkShowCalendar->SetValue(wxCHK_CHECKED);
60 XCCalendarListCalendarCtrl::~XCCalendarListCalendarCtrl(){
62 // Delete the controls.
66 wxCheckBoxState XCCalendarListCalendarCtrl::GetShowCheckboxState(){
68 return chkShowCalendar->Get3StateValue();
72 int XCCalendarListCalendarCtrl::GetCalendarID(){
78 void XCCalendarListCalendarCtrl::SetCalendarID(int calendarID){
80 this->calendarID = calendarID;
84 void XCCalendarListCalendarCtrl::ShowAllCheckboxClick( wxMouseEvent &mouseEvent ){
86 if (chkShowCalendar->Get3StateValue() == wxCHK_CHECKED){
88 wxCommandEvent event(XCCALENDARCTRL_SHOWCALENDARENTRIES);
89 event.SetInt(calendarID);
90 event.SetId(ID_SHOWCALENDARENTRIES);
91 wxPostEvent(this->GetParent()->GetParent()->GetParent(), event);
95 wxCommandEvent event(XCCALENDARCTRL_HIDECALENDARENTRIES);
96 event.SetInt(calendarID);
97 event.SetId(ID_HIDECALENDARENTRIES);
98 wxPostEvent(this->GetParent()->GetParent()->GetParent(), event);