Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
bdf1b6a8411253f22d47b39bdc3980a477c04df8
[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 }
55 XCCalendarListCalendarCtrl::~XCCalendarListCalendarCtrl(){
56         
57         // Delete the controls.
58         
59 }
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