desktop: added timezone list to CalendarEditDlg
[barry.git] / desktop / src / CalendarEditDlg.cc
blob7f3a0782e8633c22db8cf382f7303e6fdeb76494
1 ///
2 /// \file CalendarEditDlg.cc
3 /// Dialog class to handle the editing of the Calendar record
4 ///
6 /*
7 Copyright (C) 2012, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #include "CalendarEditDlg.h"
23 #include "windowids.h"
24 #include <wx/valgen.h>
25 #include "wxval.h"
27 using namespace std;
28 using namespace Barry;
30 // begin wxGlade: ::extracode
31 // end wxGlade
34 //////////////////////////////////////////////////////////////////////////////
35 // CalendarEditDlg class
37 CalendarEditDlg::CalendarEditDlg(wxWindow* parent,
38 Barry::Calendar &rec,
39 bool editable,
40 const Barry::TimeZones *device_zones)
41 : wxDialog(parent, Dialog_CalendarEdit, _T("Calendar Record"))
42 , m_zones(device_zones ? device_zones : &m_static_zones)
43 , m_rec(rec)
44 , m_duration_hours(0)
45 , m_duration_minutes(0)
46 , m_reminder_hours(0)
47 , m_reminder_minutes(0)
48 , m_interval(0)
49 , m_relative_date(false)
51 // set all weekday 'bits' to false
52 for( int i = 0; i < 7; i++ )
53 m_weekdays[i] = false;
55 if( editable ) {
56 bottom_buttons = CreateButtonSizer(wxOK | wxCANCEL);
58 else {
59 bottom_buttons = CreateButtonSizer(wxCANCEL);
62 // begin wxGlade: CalendarEditDlg::CalendarEditDlg
63 label_1 = new wxStaticText(this, wxID_ANY, wxT("Subject:"));
64 m_Subject = new wxTextCtrl(this, wxID_ANY, wxEmptyString);
65 label_2 = new wxStaticText(this, wxID_ANY, wxT("Location:"));
66 m_Location = new wxTextCtrl(this, wxID_ANY, wxEmptyString);
67 static_line_1 = new wxStaticLine(this, wxID_ANY);
68 label_4 = new wxStaticText(this, wxID_ANY, wxT("All Day Event:"));
69 m_AllDayCheck = new wxCheckBox(this, wxID_ANY, wxEmptyString);
70 label_5 = new wxStaticText(this, wxID_ANY, wxT("Start:"));
71 m_StartDateCtrl = new wxDatePickerCtrl(this, wxID_ANY, wxDefaultDateTime, wxDefaultPosition, wxDefaultSize, wxDP_DROPDOWN|wxDP_SHOWCENTURY);
72 m_StartHoursSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_WRAP|wxTE_NOHIDESEL, 0, 23);
73 label_11 = new wxStaticText(this, wxID_ANY, wxT(":"));
74 m_StartMinutesSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_WRAP|wxTE_NOHIDESEL, 0, 59);
75 label_6 = new wxStaticText(this, wxID_ANY, wxT("End:"));
76 m_EndDateCtrl = new wxDatePickerCtrl(this, wxID_ANY, wxDefaultDateTime, wxDefaultPosition, wxDefaultSize, wxDP_DROPDOWN|wxDP_SHOWCENTURY);
77 m_EndHoursSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_WRAP|wxTE_NOHIDESEL, 0, 23);
78 label_12 = new wxStaticText(this, wxID_ANY, wxT(":"));
79 m_EndMinutesSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_WRAP|wxTE_NOHIDESEL, 0, 59);
80 label_7 = new wxStaticText(this, wxID_ANY, wxT("Duration:"));
81 m_DurationHoursSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 999);
82 label_13 = new wxStaticText(this, wxID_ANY, wxT("hours and"));
83 m_DurationMinutesSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 59);
84 label_17 = new wxStaticText(this, wxID_ANY, wxT("minutes."));
85 label_8 = new wxStaticText(this, wxID_ANY, wxT("Time Zone:"));
86 const wxString m_TimezoneChoice_choices[] = {
87 wxT("System Time Zone")
89 m_TimezoneChoice = new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 1, m_TimezoneChoice_choices, 0);
90 label_9 = new wxStaticText(this, wxID_ANY, wxT("Show As:"));
91 const wxString m_ShowAsChoice_choices[] = {
92 wxT("Free"),
93 wxT("Tentative"),
94 wxT("Busy"),
95 wxT("Out of Office")
97 m_ShowAsChoice = new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 4, m_ShowAsChoice_choices, 0);
98 label_10 = new wxStaticText(this, wxID_ANY, wxT("Reminder:"));
99 m_ReminderHoursSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 999);
100 label_13_copy = new wxStaticText(this, wxID_ANY, wxT("hours and"));
101 m_ReminderMinutesSpinner = new wxSpinCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 59);
102 label_17_copy = new wxStaticText(this, wxID_ANY, wxT("minutes."));
103 static_line_2 = new wxStaticLine(this, wxID_ANY);
104 label_18 = new wxStaticText(this, wxID_ANY, wxT("Recurrence:"));
105 const wxString m_RecurrenceChoice_choices[] = {
106 wxT("None"),
107 wxT("Daily"),
108 wxT("Weekly"),
109 wxT("Monthly"),
110 wxT("Yearly")
112 m_RecurrenceChoice = new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 5, m_RecurrenceChoice_choices, 0);
113 label_19 = new wxStaticText(this, wxID_ANY, wxT("Interval:"));
114 label_23 = new wxStaticText(this, wxID_ANY, wxT("Every"));
115 m_IntervalSpinner = new wxSpinCtrl(this, wxID_ANY, wxT("1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 1, 999);
116 m_IntervalUnitLabel = new wxStaticText(this, wxID_ANY, wxT("days? weeks? months?"), wxDefaultPosition, wxDefaultSize, wxST_NO_AUTORESIZE);
117 label_20 = new wxStaticText(this, wxID_ANY, wxT("Days:"));
118 m_SunCheck = new wxCheckBox(this, wxID_ANY, wxT("S"));
119 m_MonCheck = new wxCheckBox(this, wxID_ANY, wxT("M"));
120 m_TueCheck = new wxCheckBox(this, wxID_ANY, wxT("T"));
121 m_WedCheck = new wxCheckBox(this, wxID_ANY, wxT("W"));
122 m_ThuCheck = new wxCheckBox(this, wxID_ANY, wxT("T"));
123 m_FriCheck = new wxCheckBox(this, wxID_ANY, wxT("F"));
124 m_SatCheck = new wxCheckBox(this, wxID_ANY, wxT("S"));
125 label_21 = new wxStaticText(this, wxID_ANY, wxT("Relative Date:"));
126 m_RelativeDateCheck = new wxCheckBox(this, wxID_ANY, wxEmptyString);
127 label_22 = new wxStaticText(this, wxID_ANY, wxT("End Date:"));
128 m_NeverEndsCheck = new wxCheckBox(this, wxID_ANY, wxT("Never ends"));
129 m_RecurEndDateCtrl = new wxDatePickerCtrl(this, wxID_ANY, wxDefaultDateTime, wxDefaultPosition, wxDefaultSize, wxDP_DROPDOWN|wxDP_SHOWCENTURY);
130 static_line_3 = new wxStaticLine(this, wxID_ANY);
131 label_14 = new wxStaticText(this, wxID_ANY, wxT("Organizer:"));
132 m_OrganizerText = new wxTextCtrl(this, wxID_ANY, wxEmptyString);
133 label_15 = new wxStaticText(this, wxID_ANY, wxT("Invited:"));
134 m_InvitedText = new wxTextCtrl(this, wxID_ANY, wxEmptyString);
135 label_16 = new wxStaticText(this, wxID_ANY, wxT("Accepted By:"));
136 m_AcceptedByText = new wxTextCtrl(this, wxID_ANY, wxEmptyString);
137 static_line_4 = new wxStaticLine(this, wxID_ANY);
138 const wxString m_ClassRadioBox_choices[] = {
139 wxT("Public"),
140 wxT("Private"),
141 wxT("Confidential")
143 m_ClassRadioBox = new wxRadioBox(this, wxID_ANY, wxT("Class"), wxDefaultPosition, wxDefaultSize, 3, m_ClassRadioBox_choices, 3, wxRA_SPECIFY_COLS);
144 static_line_5 = new wxStaticLine(this, wxID_ANY);
145 label_3 = new wxStaticText(this, wxID_ANY, wxT("Notes:"));
146 m_NotesText = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE);
148 set_properties();
149 do_layout();
150 // end wxGlade
152 m_top_sizer->Add(bottom_buttons, 0, wxLEFT|wxRIGHT|wxBOTTOM|wxEXPAND, 5);
154 // fill the time zone control with real time zones
155 m_TimezoneChoice->Clear();
156 m_TimezoneChoice->Append(wxT("Assume Local Timezone"), (void*)0);
157 Barry::TimeZones::const_iterator b, e;
158 for( b = m_zones->begin(), e = m_zones->end(); b != e; ++b ) {
159 m_TimezoneChoice->Append(
160 wxString(b->GetDescription().c_str(), wxConvUTF8),
161 (void*) &b->Index);
163 m_TimezoneChoice->SetSelection(0);
165 // layout again, in case sizes are different
166 RedoLayout();
169 void CalendarEditDlg::RedoLayout()
171 m_top_sizer->Fit(this);
172 Layout();
175 BEGIN_EVENT_TABLE(CalendarEditDlg, wxDialog)
176 // begin wxGlade: CalendarEditDlg::event_table
177 EVT_CHECKBOX(wxID_ANY, CalendarEditDlg::OnAllDayEvent)
178 EVT_DATE_CHANGED(wxID_ANY, CalendarEditDlg::OnStartDateChanged)
179 EVT_SPINCTRL(wxID_ANY, CalendarEditDlg::OnStartHoursSpin)
180 EVT_SPINCTRL(wxID_ANY, CalendarEditDlg::OnStartMinutesSpin)
181 EVT_DATE_CHANGED(wxID_ANY, CalendarEditDlg::OnEndDateChanged)
182 EVT_SPINCTRL(wxID_ANY, CalendarEditDlg::OnEndHoursSpin)
183 EVT_SPINCTRL(wxID_ANY, CalendarEditDlg::OnEndMinutesSpin)
184 EVT_SPINCTRL(wxID_ANY, CalendarEditDlg::OnDurationHoursSpin)
185 EVT_SPINCTRL(wxID_ANY, CalendarEditDlg::OnDurationMinutesSpin)
186 EVT_CHOICE(wxID_ANY, CalendarEditDlg::OnRecurrenceChoice)
187 EVT_CHECKBOX(wxID_ANY, CalendarEditDlg::OnEndDateCheckbox)
188 // end wxGlade
189 END_EVENT_TABLE();
192 void CalendarEditDlg::OnAllDayEvent(wxCommandEvent &event)
194 event.Skip();
195 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnAllDayEvent) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
199 void CalendarEditDlg::OnStartDateChanged(wxDateEvent &event)
201 event.Skip();
202 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnStartDateChanged) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
206 void CalendarEditDlg::OnStartHoursSpin(wxSpinEvent &event)
208 event.Skip();
209 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnStartHoursSpin) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
213 void CalendarEditDlg::OnStartMinutesSpin(wxSpinEvent &event)
215 event.Skip();
216 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnStartMinutesSpin) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
220 void CalendarEditDlg::OnEndDateChanged(wxDateEvent &event)
222 event.Skip();
223 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnEndDateChanged) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
227 void CalendarEditDlg::OnEndHoursSpin(wxSpinEvent &event)
229 event.Skip();
230 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnEndHoursSpin) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
234 void CalendarEditDlg::OnEndMinutesSpin(wxSpinEvent &event)
236 event.Skip();
237 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnEndMinutesSpin) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
241 void CalendarEditDlg::OnDurationHoursSpin(wxSpinEvent &event)
243 event.Skip();
244 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnDurationHoursSpin) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
248 void CalendarEditDlg::OnDurationMinutesSpin(wxSpinEvent &event)
250 event.Skip();
251 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnDurationMinutesSpin) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
255 void CalendarEditDlg::OnRecurrenceChoice(wxCommandEvent &event)
257 event.Skip();
258 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnRecurrenceChoice) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
262 void CalendarEditDlg::OnEndDateCheckbox(wxCommandEvent &event)
264 event.Skip();
265 wxLogDebug(wxT("Event handler (CalendarEditDlg::OnEndDateCheckbox) not implemented yet")); //notify the user that he hasn't implemented the event handler yet
269 // wxGlade: add CalendarEditDlg event handlers
272 void CalendarEditDlg::set_properties()
274 // begin wxGlade: CalendarEditDlg::set_properties
275 SetTitle(wxT("dialog_1"));
276 m_Subject->SetFocus();
277 m_Subject->SetValidator(wxTextValidator(wxFILTER_NONE, m_strings.Add(m_rec.Subject)));
278 m_Location->SetValidator(wxTextValidator(wxFILTER_NONE, m_strings.Add(m_rec.Location)));
279 m_AllDayCheck->SetValidator(wxGenericValidator(&m_rec.AllDayEvent));
280 m_StartDateCtrl->SetMinSize(wxSize(110, -1));
281 m_StartDateCtrl->SetValidator(DateTimeValidator(&m_StartDateObj.m_date));
282 m_StartHoursSpinner->SetMinSize(wxSize(45, -1));
283 m_StartHoursSpinner->SetValidator(wxGenericValidator(&m_StartDateObj.m_hour));
284 m_StartMinutesSpinner->SetMinSize(wxSize(45, -1));
285 m_StartMinutesSpinner->SetValidator(wxGenericValidator(&m_StartDateObj.m_min));
286 m_EndDateCtrl->SetMinSize(wxSize(110, -1));
287 m_EndDateCtrl->SetValidator(DateTimeValidator(&m_EndDateObj.m_date));
288 m_EndHoursSpinner->SetMinSize(wxSize(45, -1));
289 m_EndHoursSpinner->SetValidator(wxGenericValidator(&m_EndDateObj.m_hour));
290 m_EndMinutesSpinner->SetMinSize(wxSize(45, -1));
291 m_EndMinutesSpinner->SetValidator(wxGenericValidator(&m_EndDateObj.m_min));
292 m_DurationHoursSpinner->SetMinSize(wxSize(45, -1));
293 m_DurationHoursSpinner->SetValidator(wxGenericValidator(&m_duration_hours));
294 m_DurationMinutesSpinner->SetMinSize(wxSize(45, -1));
295 m_DurationMinutesSpinner->SetValidator(wxGenericValidator(&m_duration_minutes));
296 m_TimezoneChoice->SetSelection(0);
297 m_ShowAsChoice->SetSelection(2);
298 m_ReminderHoursSpinner->SetMinSize(wxSize(45, -1));
299 m_ReminderHoursSpinner->SetToolTip(wxT("Set Reminder to 0 to disable"));
300 m_ReminderHoursSpinner->SetValidator(wxGenericValidator(&m_reminder_hours));
301 m_ReminderMinutesSpinner->SetMinSize(wxSize(45, -1));
302 m_ReminderMinutesSpinner->SetToolTip(wxT("Set Reminder to 0 to disable"));
303 m_ReminderMinutesSpinner->SetValidator(wxGenericValidator(&m_reminder_minutes));
304 m_RecurrenceChoice->SetValidator(wxGenericValidator(&m_recur_choice));
305 m_RecurrenceChoice->SetSelection(0);
306 m_IntervalSpinner->SetMinSize(wxSize(45, -1));
307 m_IntervalSpinner->SetValidator(wxGenericValidator(&m_interval));
308 m_SunCheck->SetValidator(wxGenericValidator(&m_weekdays[0]));
309 m_MonCheck->SetValidator(wxGenericValidator(&m_weekdays[1]));
310 m_TueCheck->SetValidator(wxGenericValidator(&m_weekdays[2]));
311 m_WedCheck->SetValidator(wxGenericValidator(&m_weekdays[3]));
312 m_ThuCheck->SetValidator(wxGenericValidator(&m_weekdays[4]));
313 m_FriCheck->SetValidator(wxGenericValidator(&m_weekdays[5]));
314 m_SatCheck->SetValidator(wxGenericValidator(&m_weekdays[6]));
315 label_21->SetToolTip(wxT("Relative monthly or yearly dates take the weekday of the start date into account. (eg. every first Sunday of month)"));
316 m_RelativeDateCheck->SetToolTip(wxT("Relative monthly or yearly dates take the weekday of the start date into account. (eg. every first Sunday of month)"));
317 m_RelativeDateCheck->SetValidator(wxGenericValidator(&m_relative_date));
318 m_NeverEndsCheck->SetValidator(wxGenericValidator(&m_rec.Perpetual));
319 m_NeverEndsCheck->SetValue(1);
320 m_RecurEndDateCtrl->SetMinSize(wxSize(110, -1));
321 m_RecurEndDateCtrl->Enable(false);
322 m_RecurEndDateCtrl->SetValidator(DateTimeValidator(&m_RecurEndDateObj.m_date));
323 m_OrganizerText->SetValidator(wxTextValidator(wxFILTER_NONE, m_strings.Add(m_organizer)));
324 m_InvitedText->SetValidator(wxTextValidator(wxFILTER_NONE, m_strings.Add(m_invited)));
325 m_AcceptedByText->SetValidator(wxTextValidator(wxFILTER_NONE, m_strings.Add(m_accepted_by)));
326 m_ClassRadioBox->SetValidator(MakeRadioBoxValidator(&m_rec.ClassFlag).Add(Barry::Calendar::Public).Add(Barry::Calendar::Private).Add(Barry::Calendar::Confidential));
327 m_ClassRadioBox->SetSelection(0);
328 m_NotesText->SetMinSize(wxSize(-1, 61));
329 m_NotesText->SetValidator(wxTextValidator(wxFILTER_NONE, m_strings.Add(m_rec.Notes)));
330 // end wxGlade
334 void CalendarEditDlg::do_layout()
336 // begin wxGlade: CalendarEditDlg::do_layout
337 wxBoxSizer* sizer_surround = new wxBoxSizer(wxVERTICAL);
338 wxBoxSizer* sizer_1 = new wxBoxSizer(wxVERTICAL);
339 wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL);
340 wxFlexGridSizer* grid_sizer_3 = new wxFlexGridSizer(3, 2, 5, 5);
341 wxFlexGridSizer* grid_sizer_4 = new wxFlexGridSizer(5, 2, 5, 5);
342 wxBoxSizer* sizer_8 = new wxBoxSizer(wxHORIZONTAL);
343 wxBoxSizer* m_DaysCtrlsSizer = new wxBoxSizer(wxHORIZONTAL);
344 wxBoxSizer* m_IntervalCtrlsSizer = new wxBoxSizer(wxHORIZONTAL);
345 wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(7, 2, 5, 5);
346 wxBoxSizer* sizer_5_copy = new wxBoxSizer(wxHORIZONTAL);
347 wxBoxSizer* sizer_5 = new wxBoxSizer(wxHORIZONTAL);
348 wxBoxSizer* sizer_4 = new wxBoxSizer(wxHORIZONTAL);
349 wxBoxSizer* sizer_3 = new wxBoxSizer(wxHORIZONTAL);
350 wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(2, 2, 5, 5);
351 grid_sizer_1->Add(label_1, 0, 0, 0);
352 grid_sizer_1->Add(m_Subject, 0, wxEXPAND, 0);
353 grid_sizer_1->Add(label_2, 0, 0, 0);
354 grid_sizer_1->Add(m_Location, 0, wxEXPAND, 0);
355 grid_sizer_1->AddGrowableCol(1);
356 sizer_1->Add(grid_sizer_1, 0, wxEXPAND, 0);
357 sizer_1->Add(static_line_1, 0, wxALL|wxEXPAND, 5);
358 grid_sizer_2->Add(label_4, 0, 0, 0);
359 grid_sizer_2->Add(m_AllDayCheck, 0, 0, 0);
360 grid_sizer_2->Add(label_5, 0, wxALIGN_CENTER_VERTICAL, 0);
361 sizer_3->Add(m_StartDateCtrl, 0, 0, 0);
362 sizer_3->Add(20, 20, 0, 0, 0);
363 sizer_3->Add(m_StartHoursSpinner, 0, 0, 0);
364 sizer_3->Add(label_11, 0, wxLEFT|wxRIGHT|wxALIGN_CENTER_VERTICAL, 1);
365 sizer_3->Add(m_StartMinutesSpinner, 0, 0, 0);
366 grid_sizer_2->Add(sizer_3, 1, wxEXPAND, 0);
367 grid_sizer_2->Add(label_6, 0, wxALIGN_CENTER_VERTICAL, 0);
368 sizer_4->Add(m_EndDateCtrl, 0, 0, 0);
369 sizer_4->Add(20, 20, 0, 0, 0);
370 sizer_4->Add(m_EndHoursSpinner, 0, 0, 0);
371 sizer_4->Add(label_12, 0, wxALL|wxALIGN_CENTER_VERTICAL, 1);
372 sizer_4->Add(m_EndMinutesSpinner, 0, 0, 0);
373 grid_sizer_2->Add(sizer_4, 1, wxEXPAND, 0);
374 grid_sizer_2->Add(label_7, 0, wxALIGN_CENTER_VERTICAL, 0);
375 sizer_5->Add(m_DurationHoursSpinner, 0, wxRIGHT, 5);
376 sizer_5->Add(label_13, 0, wxRIGHT|wxALIGN_CENTER_VERTICAL, 5);
377 sizer_5->Add(m_DurationMinutesSpinner, 0, wxRIGHT, 5);
378 sizer_5->Add(label_17, 0, wxALIGN_CENTER_VERTICAL, 0);
379 grid_sizer_2->Add(sizer_5, 1, wxEXPAND, 0);
380 grid_sizer_2->Add(label_8, 0, wxALIGN_CENTER_VERTICAL, 0);
381 grid_sizer_2->Add(m_TimezoneChoice, 0, 0, 0);
382 grid_sizer_2->Add(label_9, 0, wxALIGN_CENTER_VERTICAL, 0);
383 grid_sizer_2->Add(m_ShowAsChoice, 0, 0, 0);
384 grid_sizer_2->Add(label_10, 0, wxALIGN_CENTER_VERTICAL, 0);
385 sizer_5_copy->Add(m_ReminderHoursSpinner, 0, wxRIGHT, 5);
386 sizer_5_copy->Add(label_13_copy, 0, wxRIGHT|wxALIGN_CENTER_VERTICAL, 5);
387 sizer_5_copy->Add(m_ReminderMinutesSpinner, 0, wxRIGHT, 5);
388 sizer_5_copy->Add(label_17_copy, 0, wxALIGN_CENTER_VERTICAL, 0);
389 grid_sizer_2->Add(sizer_5_copy, 1, wxEXPAND, 0);
390 grid_sizer_2->AddGrowableCol(1);
391 sizer_1->Add(grid_sizer_2, 0, wxEXPAND, 0);
392 sizer_1->Add(static_line_2, 0, wxALL|wxEXPAND, 5);
393 grid_sizer_4->Add(label_18, 0, wxALIGN_CENTER_VERTICAL, 0);
394 grid_sizer_4->Add(m_RecurrenceChoice, 0, 0, 0);
395 grid_sizer_4->Add(label_19, 0, wxALIGN_CENTER_VERTICAL, 0);
396 m_IntervalCtrlsSizer->Add(label_23, 0, wxRIGHT|wxALIGN_CENTER_VERTICAL, 5);
397 m_IntervalCtrlsSizer->Add(m_IntervalSpinner, 0, wxRIGHT, 5);
398 m_IntervalCtrlsSizer->Add(m_IntervalUnitLabel, 1, wxALIGN_CENTER_VERTICAL, 0);
399 grid_sizer_4->Add(m_IntervalCtrlsSizer, 1, wxEXPAND, 0);
400 grid_sizer_4->Add(label_20, 0, wxALIGN_CENTER_VERTICAL, 0);
401 m_DaysCtrlsSizer->Add(m_SunCheck, 0, wxRIGHT, 5);
402 m_DaysCtrlsSizer->Add(m_MonCheck, 0, wxRIGHT, 5);
403 m_DaysCtrlsSizer->Add(m_TueCheck, 0, wxRIGHT, 5);
404 m_DaysCtrlsSizer->Add(m_WedCheck, 0, wxRIGHT, 5);
405 m_DaysCtrlsSizer->Add(m_ThuCheck, 0, wxRIGHT, 5);
406 m_DaysCtrlsSizer->Add(m_FriCheck, 0, wxRIGHT, 5);
407 m_DaysCtrlsSizer->Add(m_SatCheck, 0, wxRIGHT, 5);
408 grid_sizer_4->Add(m_DaysCtrlsSizer, 1, wxEXPAND, 0);
409 grid_sizer_4->Add(label_21, 0, wxALIGN_CENTER_VERTICAL, 0);
410 grid_sizer_4->Add(m_RelativeDateCheck, 0, 0, 0);
411 grid_sizer_4->Add(label_22, 0, wxALIGN_CENTER_VERTICAL, 0);
412 sizer_8->Add(m_NeverEndsCheck, 0, wxRIGHT|wxALIGN_CENTER_VERTICAL, 10);
413 sizer_8->Add(m_RecurEndDateCtrl, 0, wxALIGN_CENTER_VERTICAL, 0);
414 grid_sizer_4->Add(sizer_8, 1, wxEXPAND, 0);
415 grid_sizer_4->AddGrowableCol(1);
416 sizer_1->Add(grid_sizer_4, 0, wxEXPAND, 0);
417 sizer_1->Add(static_line_3, 0, wxALL|wxEXPAND, 5);
418 grid_sizer_3->Add(label_14, 0, wxALIGN_CENTER_VERTICAL, 0);
419 grid_sizer_3->Add(m_OrganizerText, 0, wxEXPAND, 0);
420 grid_sizer_3->Add(label_15, 0, wxALIGN_CENTER_VERTICAL, 0);
421 grid_sizer_3->Add(m_InvitedText, 0, wxEXPAND, 0);
422 grid_sizer_3->Add(label_16, 0, wxALIGN_CENTER_VERTICAL, 0);
423 grid_sizer_3->Add(m_AcceptedByText, 0, wxEXPAND, 0);
424 grid_sizer_3->AddGrowableCol(1);
425 sizer_1->Add(grid_sizer_3, 0, wxEXPAND, 0);
426 sizer_1->Add(static_line_4, 0, wxALL|wxEXPAND, 5);
427 sizer_1->Add(m_ClassRadioBox, 0, wxEXPAND, 0);
428 sizer_1->Add(static_line_5, 0, wxALL|wxEXPAND, 5);
429 sizer_2->Add(label_3, 0, wxRIGHT, 5);
430 sizer_2->Add(m_NotesText, 1, wxEXPAND, 0);
431 sizer_1->Add(sizer_2, 1, wxEXPAND, 0);
432 sizer_surround->Add(sizer_1, 1, wxALL|wxEXPAND, 10);
433 SetSizer(sizer_surround);
434 sizer_surround->Fit(this);
435 Layout();
436 // end wxGlade
438 m_top_sizer = sizer_surround;
441 bool CalendarEditDlg::TransferDataToWindow()
443 // prepare temporary variables, from record
445 m_organizer = m_rec.Organizer.ToCommaSeparated();
446 m_invited = m_rec.Invited.ToCommaSeparated();
447 m_accepted_by = m_rec.AcceptedBy.ToCommaSeparated();
449 m_StartDateObj.Set(m_rec.StartTime.Time);
450 m_EndDateObj.Set(m_rec.EndTime.Time);
452 int duration = m_rec.EndTime.Time - m_rec.StartTime.Time;
453 duration /= 60; // convert to minutes
454 if( m_rec.EndTime.Time >= m_rec.StartTime.Time ) {
455 m_duration_hours = duration / 60;
456 m_duration_minutes = duration % 60;
459 if( m_rec.NotificationTime.Time ) {
460 int span = m_rec.StartTime.Time - m_rec.NotificationTime.Time;
461 span /= 60; // convert to minutes
462 if( m_rec.StartTime.Time > m_rec.NotificationTime.Time ) {
463 m_reminder_hours = span / 60;
464 m_reminder_minutes = span % 60;
466 else {
467 m_reminder_hours = 0;
468 m_reminder_minutes = 15;
472 // set the timezone choice only if the record's data is valid
473 m_TimezoneChoice->SetSelection(0); // default to none
474 if( m_rec.TimeZoneValid ) {
475 TimeZones::const_iterator i = m_zones->Find(m_rec.TimeZoneCode);
476 if( i != m_zones->end() ) {
477 int array_index = i - m_zones->begin();
478 // select item, skipping 0's "none" option
479 m_TimezoneChoice->SetSelection(array_index + 1);
483 // Note that recur_choice values are (zero-based) in the following
484 // order:
485 // None, Daily, Weekly, Monthly, Yearly
486 #define RC_NONE 0
487 #define RC_DAILY 1
488 #define RC_WEEKLY 2
489 #define RC_MONTHLY 3
490 #define RC_YEARLY 4
492 if( m_rec.Recurring ) {
493 switch( m_rec.RecurringType )
495 case Barry::Calendar::Day:
496 m_recur_choice = RC_DAILY;
497 m_relative_date = false;
498 break;
500 case Barry::Calendar::MonthByDate:
501 m_recur_choice = RC_MONTHLY;
502 m_relative_date = false;
503 break;
505 case Barry::Calendar::MonthByDay:
506 m_recur_choice = RC_MONTHLY;
507 m_relative_date = true;
508 break;
510 case Barry::Calendar::YearByDate:
511 m_recur_choice = RC_YEARLY;
512 m_relative_date = false;
513 break;
515 case Barry::Calendar::YearByDay:
516 m_recur_choice = RC_YEARLY;
517 m_relative_date = true;
518 break;
520 case Barry::Calendar::Week:
521 m_recur_choice = RC_WEEKLY;
522 m_relative_date = false;
523 m_weekdays[0] = m_rec.WeekDays & CAL_WD_SUN;
524 m_weekdays[1] = m_rec.WeekDays & CAL_WD_MON;
525 m_weekdays[2] = m_rec.WeekDays & CAL_WD_TUE;
526 m_weekdays[3] = m_rec.WeekDays & CAL_WD_WED;
527 m_weekdays[4] = m_rec.WeekDays & CAL_WD_THU;
528 m_weekdays[5] = m_rec.WeekDays & CAL_WD_FRI;
529 m_weekdays[6] = m_rec.WeekDays & CAL_WD_SAT;
530 break;
532 default:
533 cerr << "Bad RecurringType in CalendarEditDlg" << endl;
534 m_recur_choice = RC_NONE;
535 m_relative_date = false;
538 else {
539 m_recur_choice = RC_NONE;
540 m_relative_date = false;
543 m_interval = m_rec.Interval;
545 if( m_rec.Perpetual ) {
546 m_RecurEndDateCtrl->Enable(false);
548 else {
549 m_RecurEndDateCtrl->Enable();
550 m_RecurEndDateObj.Set(m_rec.RecurringEndTime.Time);
553 m_strings.SyncToWx();
555 return wxDialog::TransferDataToWindow();
558 bool CalendarEditDlg::TransferDataFromWindow()
560 if( !wxDialog::TransferDataFromWindow() )
561 return false;
563 return true;