Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
7ae30f896a645f0dd980b757d987ee2502d42d3b
[xestiacalendar/.git] / source / widgets / XCCalendarListAccountCtrl.cpp
1 // XCCalendarListAccountCtrl.cpp - XCCalendarListAccountCtrl 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 "XCCalendarListAccountCtrl.h"
21 using namespace std;
23 XCCalendarListAccountCtrl::XCCalendarListAccountCtrl(wxWindow* parent, string accountName) : 
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(this, wxID_ANY, "", wxPoint(0,0), wxDefaultSize, wxCHK_3STATE, wxDefaultValidator, "");
34         
35         // Setup the label.
36         
37         lblAccountName = new wxStaticText(this, wxID_ANY, wxString(accountName), wxDefaultPosition, wxDefaultSize, 0, "");
38                 
39         // Setup the font.
40                 
41         wxFont accountFont = lblAccountName->GetFont();
42         accountFont.MakeBold();
43         lblAccountName->SetFont(accountFont);
44                 
45         // Connect them to the sizer.
46         
47         szrMain->Add(chkShowAll, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
48         szrMain->Add(lblAccountName, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
49         
50 }
52 XCCalendarListAccountCtrl::~XCCalendarListAccountCtrl(){
53         
54         // Delete the calendar controls.
55         
56 }
58 void XCCalendarListAccountCtrl::AddCalendar(XCCalendarListCalendarCtrl *calendarControl){
60         // Add the calendar control to the sizer.
61         
62         //szrMain->Add(calendarControl, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
63         
64         // Add the calendar control to the list.
65         
66         calendarControlList.push_back(calendarControl);
67         
68 }
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