Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
XCCalendarManipulator: Use frmCalendarSelectMonth instead of XCCalendarMonthSelect...
[xestiacalendar/.git] / source / widgets / XCCalendarManipulator.cpp
1 // XCCalendarManipulator.cpp - Xestia Calendar XCCalendarManipulator widget class.
2 //
3 // (c) 2016 Xestia Software Development.
4 //
5 // This file is part of Xestia Calendar.
6 //
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.
10 //
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.
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 "XCCalendarManipulator.h"
21 wxDEFINE_EVENT(XCCALENDARMANIPULATOR_CHANGEGRID, wxCommandEvent);
23 using namespace std;
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);
33         
34         // Setup the navigation section.
35                 
36         szrNavigation = new wxBoxSizer( wxHORIZONTAL );
37         pnlMain->SetSizer(szrNavigation);
38                 
39         // Add next month and previous month buttons.
40                 
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);
44         
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));
48                 
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);
61         previousButton->SetBackgroundColour(pnlMain->GetBackgroundColour());
62         nextButton->SetBackgroundColour(pnlMain->GetBackgroundColour());
63         calendarsButton->SetBackgroundColour(pnlMain->GetBackgroundColour());
64                 
65         // Setup the static text.
66                 
67         dateButton = new wxButton(pnlMain, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, 0|wxNO_BORDER);
68                 
69         wxFont test;
70         
71         test.SetWeight(wxFONTWEIGHT_BOLD);
72         test.SetPointSize(18);
73                 
74         dateButton->SetFont(test);
75         dateButton->SetForegroundColour(wxColour(255,255,255));
76         dateButton->SetBackgroundColour(pnlMain->GetBackgroundColour());
77         
78         // Setup the manipulator control.
80         szrNavigation->Add(previousButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
81         szrNavigation->Add(calendarsButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
82         szrNavigation->Add( 0, 0, 1, wxEXPAND, 5 );
83         szrNavigation->Add(dateButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
84         szrNavigation->Add( 0, 0, 1, wxEXPAND, 5 );
85         szrNavigation->Add(nextButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
86         szrNavigation->Layout();
87                 
88         // Setup the month selection control.
89         
90         wxDateTime dtNow = wxDateTime::Now();
92 #if defined(WIN32)
93         moo = new frmCalendarSelectMonth(this);
94 #else
95         moo = new XCCalendarMonthSelect(this);
96 #endif
97         month = ((int)dtNow.GetMonth() + 1);
98         year = dtNow.GetYear();
99         moo->UpdateDate(month, year);
100         UpdateDateButtonText();
101         
102         // Setup the calendars list.
103         
104         calendarList = new XCCalendarList(this);
105         
106         // Setup the calendar data storage pointer.
107         
108         this->dataStorage = dataStorage;
109                 
110         // Setup the event controls.
112         dateButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::DateTextClick), NULL, this);
113         nextButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::NextMonth), NULL, this);
114         calendarsButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::ShowCalendarsList), NULL, this);
115         previousButton->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(XCCalendarManipulator::PreviousMonth), NULL, this);
116         
117         Bind(XCCALENDARMANIPULATOR_CHANGEGRID, &XCCalendarManipulator::ChangeGrid, this, ID_CHANGEGRID);
120 XCCalendarManipulator::~XCCalendarManipulator(){
121         
122         // Destory the controls from the widget.
123         
126 void XCCalendarManipulator::DateTextClick(wxCommandEvent &event){
127         
128         // Bring up a popup control to select the month and year.
129         
130         // TODO: Do something different for Win32.
132         moo->SetPosition(wxPoint(dateButton->GetScreenRect().GetLeft(), dateButton->GetScreenRect().GetBottom()));
133         moo->UpdateDate(month, year);
134 #if defined(WIN32)
135         moo->ShowModal();
136 #else
137         moo->Popup();
138 #endif
142 void XCCalendarManipulator::ChangeGrid(wxCommandEvent &event){
143         
144         if (month == moo->GetMonth() && year == moo->GetYear()){
145                 return;
146         }
147         
148         month = moo->GetMonth();
149         year = moo->GetYear();
150         
151         // Post an event to the parent control to update the grid.
152         
153         wxCommandEvent changeGrid(XCCALENDARCTRL_CHANGEGRID);
154         changeGrid.SetId(ID_CHANGEGRID);
155         wxPostEvent(this->GetParent(), changeGrid);
156         
157         UpdateDateButtonText();
158         
161 void XCCalendarManipulator::NextMonth(wxCommandEvent &event){
162         
163         int newMonth = 1;
164         int newYear = 0;
165         
166         // Get the current month and year.
167         
168         newMonth = moo->GetMonth();
169         newYear = moo->GetYear();
171         if (newMonth == 12){
172                 newMonth = 1;
173                 newYear++;
174         } else {
175                 newMonth++;
176         }
177         
178         month = newMonth;
179         year = newYear;
181         moo->UpdateDate(month, year);
182         
183         // Post an event to the parent control to update the grid.
184         
185         wxCommandEvent changeGrid(XCCALENDARCTRL_CHANGEGRID);
186         changeGrid.SetId(ID_CHANGEGRID);
187         wxPostEvent(this->GetParent(), changeGrid);
189         UpdateDateButtonText();
190         
193 void XCCalendarManipulator::PreviousMonth(wxCommandEvent &event){
194         
195         int newMonth = 1;
196         int newYear = 0;
197         
198         // Get the current month and year.
199         
200         newMonth = moo->GetMonth();
201         newYear = moo->GetYear();
203         if (newMonth == 1){
204                 newMonth = 12;
205                 newYear--;
206         } else {
207                 newMonth--;
208         }
210         month = newMonth;
211         year = newYear;
212         
213         moo->UpdateDate(month, year);
214         
215         // Post an event to the parent control to update the grid.
216         
217         wxCommandEvent changeGrid(XCCALENDARCTRL_CHANGEGRID);
218         changeGrid.SetId(ID_CHANGEGRID);
219         wxPostEvent(this->GetParent(), changeGrid);
220         
221         UpdateDateButtonText();
222         
225 void XCCalendarManipulator::ShowCalendarsList(wxCommandEvent &event){
226         
227         // Update the list of calendars before showing.
228         
229         calendarList->SetPosition(wxPoint(calendarsButton->GetScreenRect().GetLeft(), calendarsButton->GetScreenRect().GetBottom()));
230         calendarList->UpdateCalendarList(dataStorage);
231         calendarList->Popup();
232         
235 void XCCalendarManipulator::UpdateDateButtonText(){
236         
237         // Update the date text.
238         
239         string newDateText = "";
240         
241         switch (moo->GetMonth()){
242                 case 1:
243                         newDateText = _("January");
244                         break;
245                 case 2:
246                         newDateText = _("February");
247                         break;
248                 case 3:
249                         newDateText = _("March");
250                         break;
251                 case 4:
252                         newDateText = _("April");
253                         break;
254                 case 5:
255                         newDateText = _("May");
256                         break;
257                 case 6:
258                         newDateText = _("June");
259                         break;
260                 case 7:
261                         newDateText = _("July");
262                         break;
263                 case 8:
264                         newDateText = _("August");
265                         break;
266                 case 9:
267                         newDateText = _("September");
268                         break;
269                 case 10:
270                         newDateText = _("October");
271                         break;
272                 case 11:
273                         newDateText = _("November");
274                         break;
275                 case 12:
276                         newDateText = _("December");
277                         break;
278         }
279         
280         newDateText += " ";
281         
282         newDateText += to_string(year);
283         
284         dateButton->SetLabel(newDateText);
285         szrMain->Layout();
286         
289 int XCCalendarManipulator::GetMonth(){
290         
291         return month;
292         
295 int XCCalendarManipulator::GetYear(){
296         
297         return year;
298         
301 vector<int> XCCalendarManipulator::GetHiddenAccountsList(){
302         
303         return calendarList->GetHiddenAccountsList();
304         
307 vector<int> XCCalendarManipulator::GetHiddenCalendarsList(){
308         
309         return calendarList->GetHiddenCalendarsList();
310         
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