1 // XCCalendarManipulator.cpp - Xestia Calendar XCCalendarManipulator widget class.
3 // (c) 2016 Xestia Software Development.
5 // This file is part of Xestia Calendar.
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.
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.
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 "XCCalendarManipulator.h"
21 wxDEFINE_EVENT(XCCALENDARMANIPULATOR_CHANGEGRID, wxCommandEvent);
25 XCCalendarManipulator::XCCalendarManipulator(wxWindow* parent, const wxString& title,
26 const wxPoint& pos, const wxSize& size, CalendarDataStorage *dataStorage)
27 : wxPanel(parent, wxID_ANY, pos, size, wxTAB_TRAVERSAL, title){
28 szrMain = new wxBoxSizer( wxVERTICAL );
29 pnlMain = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxSize(500, 50), wxTAB_TRAVERSAL);
30 pnlMain->SetBackgroundColour(wxColour(40,40,40));
31 this->SetSizer(szrMain);
32 szrMain->Add(pnlMain, 0, wxEXPAND, 0);
34 // Setup the navigation section.
36 szrNavigation = new wxBoxSizer( wxHORIZONTAL );
37 pnlMain->SetSizer(szrNavigation);
39 // Add next month and previous month buttons.
41 previousButton = new wxButton(pnlMain, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(32,32), 0|wxNO_BORDER);
42 nextButton = new wxButton(pnlMain, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(32,32), 0|wxNO_BORDER);
43 calendarsButton = new wxButton(pnlMain, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(32,32), 0|wxNO_BORDER);
45 wxMemoryInputStream previousIcon(icons_previous_png, sizeof(icons_previous_png));
46 wxMemoryInputStream nextIcon(icons_next_png, sizeof(icons_next_png));
47 wxMemoryInputStream calendarsIcon(icons_calendars_png, sizeof(icons_calendars_png));
49 wxImage icons_previous_png(previousIcon, wxBITMAP_TYPE_PNG);
50 previousIconBitmap = wxBitmap(icons_previous_png, -1);
52 wxImage icons_next_png(nextIcon, wxBITMAP_TYPE_PNG);
53 nextIconBitmap = wxBitmap(icons_next_png, -1);
55 wxImage icons_calendars_png(calendarsIcon, wxBITMAP_TYPE_PNG);
56 calendarsIconBitmap = wxBitmap(icons_calendars_png, -1);
58 previousButton->SetBitmap(previousIconBitmap);
59 nextButton->SetBitmap(nextIconBitmap);
60 calendarsButton->SetBitmap(calendarsIconBitmap);
62 // Setup the static text.
64 dateButton = new wxButton(pnlMain, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, 0|wxNO_BORDER);
68 test.SetWeight(wxFONTWEIGHT_BOLD);
69 test.SetPointSize(18);
71 dateButton->SetFont(test);
72 dateButton->SetForegroundColour(wxColour(255,255,255));
74 // Setup the manipulator control.
76 szrNavigation->Add(previousButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
77 szrNavigation->Add(calendarsButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
78 szrNavigation->Add( 0, 0, 1, wxEXPAND, 5 );
79 szrNavigation->Add(dateButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
80 szrNavigation->Add( 0, 0, 1, wxEXPAND, 5 );
81 szrNavigation->Add(nextButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
82 szrNavigation->Layout();
84 // Setup the month selection control.
86 wxDateTime dtNow = wxDateTime::Now();
88 moo = new XCCalendarMonthSelect(this);
89 month = ((int)dtNow.GetMonth() + 1);
90 year = dtNow.GetYear();
91 moo->UpdateDate(month, year);
92 UpdateDateButtonText();
94 // Setup the calendars list.
96 calendarList = new XCCalendarList(this);
98 // Setup the calendar data storage pointer.
100 this->dataStorage = dataStorage;
102 // Setup the event controls.
104 dateButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::DateTextClick), NULL, this);
105 nextButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::NextMonth), NULL, this);
106 calendarsButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::ShowCalendarsList), NULL, this);
107 previousButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::PreviousMonth), NULL, this);
109 Bind(XCCALENDARMANIPULATOR_CHANGEGRID, &XCCalendarManipulator::ChangeGrid, this, ID_CHANGEGRID);
112 XCCalendarManipulator::~XCCalendarManipulator(){
114 // Destory the controls from the widget.
118 void XCCalendarManipulator::DateTextClick(wxCommandEvent &event){
120 // Bring up a popup control to select the month and year.
122 moo->SetPosition(wxPoint(dateButton->GetScreenRect().GetLeft(), dateButton->GetScreenRect().GetBottom()));
123 moo->UpdateDate(month, year);
128 void XCCalendarManipulator::ChangeGrid(wxCommandEvent &event){
130 if (month == moo->GetMonth() && year == moo->GetYear()){
134 month = moo->GetMonth();
135 year = moo->GetYear();
137 // Post an event to the parent control to update the grid.
139 wxCommandEvent changeGrid(XCCALENDARCTRL_CHANGEGRID);
140 changeGrid.SetId(ID_CHANGEGRID);
141 wxPostEvent(this->GetParent(), changeGrid);
143 UpdateDateButtonText();
147 void XCCalendarManipulator::NextMonth(wxCommandEvent &event){
152 // Get the current month and year.
154 newMonth = moo->GetMonth();
155 newYear = moo->GetYear();
167 moo->UpdateDate(month, year);
169 // Post an event to the parent control to update the grid.
171 wxCommandEvent changeGrid(XCCALENDARCTRL_CHANGEGRID);
172 changeGrid.SetId(ID_CHANGEGRID);
173 wxPostEvent(this->GetParent(), changeGrid);
175 UpdateDateButtonText();
179 void XCCalendarManipulator::PreviousMonth(wxCommandEvent &event){
184 // Get the current month and year.
186 newMonth = moo->GetMonth();
187 newYear = moo->GetYear();
199 moo->UpdateDate(month, year);
201 // Post an event to the parent control to update the grid.
203 wxCommandEvent changeGrid(XCCALENDARCTRL_CHANGEGRID);
204 changeGrid.SetId(ID_CHANGEGRID);
205 wxPostEvent(this->GetParent(), changeGrid);
207 UpdateDateButtonText();
211 void XCCalendarManipulator::ShowCalendarsList(wxCommandEvent &event){
213 // Update the list of calendars before showing.
215 calendarList->SetPosition(wxPoint(calendarsButton->GetScreenRect().GetLeft(), calendarsButton->GetScreenRect().GetBottom()));
216 calendarList->UpdateCalendarList(dataStorage);
217 calendarList->Popup();
221 void XCCalendarManipulator::UpdateDateButtonText(){
223 // Update the date text.
225 string newDateText = "";
227 switch (moo->GetMonth()){
229 newDateText = _("January");
232 newDateText = _("February");
235 newDateText = _("March");
238 newDateText = _("April");
241 newDateText = _("May");
244 newDateText = _("June");
247 newDateText = _("July");
250 newDateText = _("August");
253 newDateText = _("September");
256 newDateText = _("October");
259 newDateText = _("November");
262 newDateText = _("December");
268 newDateText += to_string(year);
270 dateButton->SetLabel(newDateText);
275 int XCCalendarManipulator::GetMonth(){
281 int XCCalendarManipulator::GetYear(){
287 vector<int> XCCalendarManipulator::GetHiddenAccountsList(){
289 return calendarList->GetHiddenAccountsList();
293 vector<int> XCCalendarManipulator::GetHiddenCalendarsList(){
295 return calendarList->GetHiddenCalendarsList();