]>
Commit | Line | Data |
---|---|---|
39df3acd | 1 | ///////////////////////////////////////////////////////////////////////////// |
68f2155b | 2 | // Name: src/generic/datectlg.cpp |
7ae712f5 | 3 | // Purpose: generic wxDatePickerCtrlGeneric implementation |
39df3acd VZ |
4 | // Author: Andreas Pflug |
5 | // Modified by: | |
6 | // Created: 2005-01-19 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2005 Andreas Pflug <pgadmin@pse-consulting.de> | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
7ae712f5 VZ |
26 | #if wxUSE_DATEPICKCTRL |
27 | ||
15c86b39 | 28 | #include "wx/datectrl.h" |
7ae712f5 VZ |
29 | |
30 | // use this version if we're explicitly requested to do it or if it's the only | |
31 | // one we have | |
2a5e6376 VZ |
32 | #if !defined(wxHAS_NATIVE_DATEPICKCTRL) || \ |
33 | (defined(wxUSE_DATEPICKCTRL_GENERIC) && wxUSE_DATEPICKCTRL_GENERIC) | |
7ae712f5 | 34 | |
a962d4e0 | 35 | #ifndef WX_PRECOMP |
a962d4e0 KH |
36 | #include "wx/dialog.h" |
37 | #include "wx/dcmemory.h" | |
38 | #include "wx/panel.h" | |
39 | #include "wx/textctrl.h" | |
40 | #include "wx/valtext.h" | |
41 | #endif | |
42 | ||
1721a8c0 VZ |
43 | #ifdef wxHAS_NATIVE_DATEPICKCTRL |
44 | // this header is not included from wx/datectrl.h if we have a native | |
45 | // version, but we do need it here | |
46 | #include "wx/generic/datectrl.h" | |
930fb29e VZ |
47 | #else |
48 | // we need to define _WX_DEFINE_DATE_EVENTS_ before including wx/dateevt.h to | |
49 | // define the event types we use if we're the only date picker control version | |
50 | // being compiled -- otherwise it's defined in the native version implementation | |
7ae712f5 VZ |
51 | #define _WX_DEFINE_DATE_EVENTS_ |
52 | #endif | |
53 | ||
91edf16c VZ |
54 | #include "wx/dateevt.h" |
55 | ||
4b134bb2 | 56 | #include "wx/calctrl.h" |
85fa9d60 | 57 | #include "wx/combo.h" |
39df3acd VZ |
58 | |
59 | // ---------------------------------------------------------------------------- | |
60 | // constants | |
61 | // ---------------------------------------------------------------------------- | |
62 | ||
caad7637 | 63 | #if defined(__WXMSW__) |
930fb29e | 64 | #define CALBORDER 0 |
930fb29e | 65 | #else |
930fb29e | 66 | #define CALBORDER 4 |
930fb29e VZ |
67 | #endif |
68 | ||
aa74ad5b VZ |
69 | // ---------------------------------------------------------------------------- |
70 | // global variables | |
71 | // ---------------------------------------------------------------------------- | |
72 | ||
930fb29e | 73 | |
1721a8c0 VZ |
74 | // ---------------------------------------------------------------------------- |
75 | // local classes | |
76 | // ---------------------------------------------------------------------------- | |
77 | ||
85fa9d60 VZ |
78 | class wxCalendarComboPopup : public wxCalendarCtrl, |
79 | public wxComboPopup | |
38511687 VZ |
80 | { |
81 | public: | |
38511687 | 82 | |
85fa9d60 VZ |
83 | wxCalendarComboPopup() : wxCalendarCtrl(), |
84 | wxComboPopup() | |
caad7637 | 85 | { |
caad7637 JS |
86 | } |
87 | ||
85fa9d60 VZ |
88 | virtual void Init() |
89 | { | |
90 | } | |
caad7637 | 91 | |
85fa9d60 VZ |
92 | // NB: Don't create lazily since it didn't work that way before |
93 | // wxComboCtrl was used, and changing behaviour would almost | |
94 | // certainly introduce new bugs. | |
95 | virtual bool Create(wxWindow* parent) | |
96 | { | |
97 | if ( !wxCalendarCtrl::Create(parent, wxID_ANY, wxDefaultDateTime, | |
98 | wxPoint(0, 0), wxDefaultSize, | |
99 | wxCAL_SHOW_HOLIDAYS | wxBORDER_SUNKEN) ) | |
100 | return false; | |
caad7637 | 101 | |
85fa9d60 | 102 | wxWindow *yearControl = wxCalendarCtrl::GetYearControl(); |
caad7637 | 103 | |
85fa9d60 VZ |
104 | wxClientDC dc(yearControl); |
105 | dc.SetFont(yearControl->GetFont()); | |
106 | wxCoord width, dummy; | |
107 | dc.GetTextExtent(wxT("2000"), &width, &dummy); | |
108 | width += ConvertDialogToPixels(wxSize(20, 0)).x; | |
caad7637 | 109 | |
85fa9d60 VZ |
110 | wxSize calSize = wxCalendarCtrl::GetBestSize(); |
111 | wxSize yearSize = yearControl->GetSize(); | |
112 | yearSize.x = width; | |
caad7637 | 113 | |
85fa9d60 | 114 | wxPoint yearPosition = yearControl->GetPosition(); |
caad7637 | 115 | |
330e8ab9 | 116 | SetFormat("%x"); |
caad7637 | 117 | |
85fa9d60 VZ |
118 | width = yearPosition.x + yearSize.x+2+CALBORDER/2; |
119 | if (width < calSize.x-4) | |
120 | width = calSize.x-4; | |
caad7637 | 121 | |
85fa9d60 VZ |
122 | int calPos = (width-calSize.x)/2; |
123 | if (calPos == -1) | |
124 | { | |
125 | calPos = 0; | |
126 | width += 2; | |
127 | } | |
128 | wxCalendarCtrl::SetSize(calPos, 0, calSize.x, calSize.y); | |
129 | yearControl->SetSize(width-yearSize.x-CALBORDER/2, yearPosition.y, | |
130 | yearSize.x, yearSize.y); | |
131 | wxCalendarCtrl::GetMonthControl()->Move(0, 0); | |
caad7637 | 132 | |
85fa9d60 VZ |
133 | m_useSize.x = width+CALBORDER/2; |
134 | m_useSize.y = calSize.y-2+CALBORDER; | |
caad7637 | 135 | |
85fa9d60 VZ |
136 | wxWindow* tx = m_combo->GetTextCtrl(); |
137 | if ( !tx ) | |
138 | tx = m_combo; | |
caad7637 | 139 | |
85fa9d60 VZ |
140 | tx->Connect(wxEVT_KILL_FOCUS, |
141 | wxFocusEventHandler(wxCalendarComboPopup::OnKillTextFocus), | |
142 | NULL, this); | |
caad7637 | 143 | |
85fa9d60 VZ |
144 | return true; |
145 | } | |
38511687 | 146 | |
85fa9d60 VZ |
147 | virtual wxSize GetAdjustedSize(int WXUNUSED(minWidth), |
148 | int WXUNUSED(prefHeight), | |
149 | int WXUNUSED(maxHeight)) | |
150 | { | |
151 | return m_useSize; | |
152 | } | |
38511687 | 153 | |
85fa9d60 | 154 | virtual wxWindow *GetControl() { return this; } |
930fb29e | 155 | |
85fa9d60 VZ |
156 | void SetDateValue(const wxDateTime& date) |
157 | { | |
158 | if ( date.IsValid() ) | |
159 | { | |
160 | m_combo->SetText(date.Format(m_format)); | |
161 | } | |
162 | else // invalid date | |
163 | { | |
164 | wxASSERT_MSG( HasDPFlag(wxDP_ALLOWNONE), | |
165 | _T("this control must have a valid date") ); | |
caad7637 | 166 | |
85fa9d60 VZ |
167 | m_combo->SetText(wxEmptyString); |
168 | } | |
38511687 | 169 | |
85fa9d60 VZ |
170 | m_currentDate = date; |
171 | } | |
38511687 | 172 | |
85fa9d60 VZ |
173 | const wxDateTime& GetDateValue() const |
174 | { | |
175 | return m_currentDate; | |
176 | } | |
94ab4d92 | 177 | |
85fa9d60 VZ |
178 | bool ParseDateTime(const wxString& s, wxDateTime* pDt) |
179 | { | |
180 | wxASSERT(pDt); | |
38511687 | 181 | |
85fa9d60 VZ |
182 | if ( !s.empty() ) |
183 | { | |
e0a050e3 | 184 | pDt->ParseFormat(s.c_str(), m_format); |
85fa9d60 VZ |
185 | if ( !pDt->IsValid() ) |
186 | return false; | |
187 | } | |
38511687 | 188 | |
85fa9d60 VZ |
189 | return true; |
190 | } | |
38511687 | 191 | |
85fa9d60 VZ |
192 | void SendDateEvent(const wxDateTime& dt) |
193 | { | |
194 | // | |
195 | // Sends both wxCalendarEvent and wxDateEvent | |
196 | wxWindow* datePicker = m_combo->GetParent(); | |
38511687 | 197 | |
85fa9d60 VZ |
198 | wxCalendarEvent cev((wxCalendarCtrl*) this, wxEVT_CALENDAR_SEL_CHANGED); |
199 | cev.SetEventObject(datePicker); | |
200 | cev.SetId(datePicker->GetId()); | |
201 | cev.SetDate(dt); | |
d1b736b7 | 202 | datePicker->GetEventHandler()->ProcessEvent(cev); |
38511687 | 203 | |
85fa9d60 | 204 | wxDateEvent event(datePicker, dt, wxEVT_DATE_CHANGED); |
d1b736b7 | 205 | datePicker->GetEventHandler()->ProcessEvent(event); |
85fa9d60 | 206 | } |
caad7637 | 207 | |
85fa9d60 | 208 | private: |
caad7637 | 209 | |
85fa9d60 | 210 | void OnCalKey(wxKeyEvent & ev) |
caad7637 | 211 | { |
85fa9d60 VZ |
212 | if (ev.GetKeyCode() == WXK_ESCAPE && !ev.HasModifiers()) |
213 | Dismiss(); | |
214 | else | |
215 | ev.Skip(); | |
caad7637 | 216 | } |
caad7637 | 217 | |
85fa9d60 VZ |
218 | void OnSelChange(wxCalendarEvent &ev) |
219 | { | |
220 | m_currentDate = wxCalendarCtrl::GetDate(); | |
221 | m_combo->SetText(m_currentDate.Format(m_format)); | |
caad7637 | 222 | |
85fa9d60 VZ |
223 | if ( ev.GetEventType() == wxEVT_CALENDAR_DOUBLECLICKED ) |
224 | { | |
225 | Dismiss(); | |
226 | } | |
caad7637 | 227 | |
85fa9d60 | 228 | SendDateEvent(m_currentDate); |
38511687 VZ |
229 | } |
230 | ||
85fa9d60 VZ |
231 | void OnKillTextFocus(wxFocusEvent &ev) |
232 | { | |
233 | ev.Skip(); | |
caad7637 | 234 | |
85fa9d60 VZ |
235 | wxDateTime dt; |
236 | wxString value = m_combo->GetValue(); | |
237 | if ( !ParseDateTime(value, &dt) ) | |
238 | { | |
239 | if ( !HasDPFlag(wxDP_ALLOWNONE) ) | |
240 | dt = m_currentDate; | |
241 | } | |
caad7637 | 242 | |
85fa9d60 VZ |
243 | if ( dt.IsValid() ) |
244 | m_combo->SetText(dt.Format(m_format)); | |
245 | else | |
246 | m_combo->SetText(wxEmptyString); | |
38511687 | 247 | |
85fa9d60 VZ |
248 | // notify that we had to change the date after validation |
249 | if ( (dt.IsValid() && (!m_currentDate.IsValid() || m_currentDate != dt)) || | |
250 | (!dt.IsValid() && m_currentDate.IsValid()) ) | |
251 | { | |
252 | m_currentDate = dt; | |
253 | SendDateEvent(dt); | |
254 | } | |
255 | } | |
38511687 | 256 | |
85fa9d60 | 257 | bool HasDPFlag(int flag) |
caad7637 | 258 | { |
85fa9d60 | 259 | return m_combo->GetParent()->HasFlag(flag); |
caad7637 | 260 | } |
caad7637 | 261 | |
330e8ab9 | 262 | bool SetFormat(const wxString& fmt) |
85fa9d60 VZ |
263 | { |
264 | m_format.clear(); | |
caad7637 | 265 | |
85fa9d60 VZ |
266 | wxDateTime dt; |
267 | dt.ParseFormat(wxT("2003-10-13"), wxT("%Y-%m-%d")); | |
268 | wxString str(dt.Format(fmt)); | |
1721a8c0 | 269 | |
85fa9d60 VZ |
270 | const wxChar *p = str.c_str(); |
271 | while ( *p ) | |
272 | { | |
273 | int n=wxAtoi(p); | |
274 | if (n == dt.GetDay()) | |
275 | { | |
276 | m_format.Append(wxT("%d")); | |
277 | p += 2; | |
278 | } | |
279 | else if (n == (int)dt.GetMonth()+1) | |
280 | { | |
281 | m_format.Append(wxT("%m")); | |
282 | p += 2; | |
283 | } | |
284 | else if (n == dt.GetYear()) | |
285 | { | |
286 | m_format.Append(wxT("%Y")); | |
287 | p += 4; | |
288 | } | |
289 | else if (n == (dt.GetYear() % 100)) | |
290 | { | |
291 | if ( HasDPFlag(wxDP_SHOWCENTURY) ) | |
292 | m_format.Append(wxT("%Y")); | |
293 | else | |
294 | m_format.Append(wxT("%y")); | |
295 | p += 2; | |
296 | } | |
297 | else | |
298 | m_format.Append(*p++); | |
299 | } | |
1721a8c0 | 300 | |
85fa9d60 VZ |
301 | if ( m_combo ) |
302 | { | |
303 | wxArrayString allowedChars; | |
304 | for ( wxChar c = _T('0'); c <= _T('9'); c++ ) | |
305 | allowedChars.Add(wxString(c, 1)); | |
306 | ||
307 | const wxChar *p2 = m_format.c_str(); | |
308 | while ( *p2 ) | |
309 | { | |
310 | if ( *p2 == '%') | |
311 | p2 += 2; | |
312 | else | |
313 | allowedChars.Add(wxString(*p2++, 1)); | |
314 | } | |
315 | ||
316 | #if wxUSE_VALIDATORS | |
317 | wxTextValidator tv(wxFILTER_INCLUDE_CHAR_LIST); | |
318 | tv.SetIncludes(allowedChars); | |
319 | m_combo->SetValidator(tv); | |
320 | #endif | |
321 | ||
322 | if (m_currentDate.IsValid()) | |
323 | m_combo->SetText(m_currentDate.Format(m_format)); | |
324 | } | |
1721a8c0 | 325 | |
85fa9d60 | 326 | return true; |
1721a8c0 VZ |
327 | } |
328 | ||
85fa9d60 | 329 | virtual void SetStringValue(const wxString& s) |
1721a8c0 | 330 | { |
85fa9d60 VZ |
331 | wxDateTime dt; |
332 | if ( ParseDateTime(s, &dt) ) | |
333 | m_currentDate = dt; | |
334 | else if ( HasDPFlag(wxDP_ALLOWNONE) ) | |
335 | m_currentDate = dt; | |
1721a8c0 | 336 | } |
1721a8c0 | 337 | |
85fa9d60 | 338 | virtual wxString GetStringValue() const |
1721a8c0 | 339 | { |
85fa9d60 VZ |
340 | if ( !m_currentDate.IsValid() ) |
341 | return wxEmptyString; | |
1721a8c0 | 342 | |
85fa9d60 | 343 | return m_currentDate.Format(m_format); |
1721a8c0 VZ |
344 | } |
345 | ||
85fa9d60 VZ |
346 | private: |
347 | ||
348 | wxSize m_useSize; | |
349 | wxString m_format; | |
350 | wxDateTime m_currentDate; | |
351 | ||
352 | DECLARE_EVENT_TABLE() | |
1721a8c0 VZ |
353 | }; |
354 | ||
85fa9d60 VZ |
355 | |
356 | BEGIN_EVENT_TABLE(wxCalendarComboPopup, wxCalendarCtrl) | |
357 | EVT_KEY_DOWN(wxCalendarComboPopup::OnCalKey) | |
358 | EVT_CALENDAR_SEL_CHANGED(wxID_ANY, wxCalendarComboPopup::OnSelChange) | |
359 | EVT_CALENDAR_DAY(wxID_ANY, wxCalendarComboPopup::OnSelChange) | |
360 | EVT_CALENDAR_MONTH(wxID_ANY, wxCalendarComboPopup::OnSelChange) | |
361 | EVT_CALENDAR_YEAR(wxID_ANY, wxCalendarComboPopup::OnSelChange) | |
362 | EVT_CALENDAR(wxID_ANY, wxCalendarComboPopup::OnSelChange) | |
363 | END_EVENT_TABLE() | |
364 | ||
1721a8c0 | 365 | |
39df3acd | 366 | // ============================================================================ |
7ae712f5 | 367 | // wxDatePickerCtrlGeneric implementation |
39df3acd VZ |
368 | // ============================================================================ |
369 | ||
7ae712f5 | 370 | BEGIN_EVENT_TABLE(wxDatePickerCtrlGeneric, wxDatePickerCtrlBase) |
85fa9d60 | 371 | EVT_TEXT(wxID_ANY, wxDatePickerCtrlGeneric::OnText) |
caad7637 | 372 | EVT_SIZE(wxDatePickerCtrlGeneric::OnSize) |
4427c0a3 | 373 | EVT_SET_FOCUS(wxDatePickerCtrlGeneric::OnFocus) |
39df3acd VZ |
374 | END_EVENT_TABLE() |
375 | ||
b6292ff0 | 376 | #ifndef wxHAS_NATIVE_DATEPICKCTRL |
94ab4d92 | 377 | IMPLEMENT_DYNAMIC_CLASS(wxDatePickerCtrl, wxControl) |
b6292ff0 | 378 | #endif |
39df3acd VZ |
379 | |
380 | // ---------------------------------------------------------------------------- | |
381 | // creation | |
382 | // ---------------------------------------------------------------------------- | |
383 | ||
7ae712f5 VZ |
384 | bool wxDatePickerCtrlGeneric::Create(wxWindow *parent, |
385 | wxWindowID id, | |
386 | const wxDateTime& date, | |
387 | const wxPoint& pos, | |
388 | const wxSize& size, | |
389 | long style, | |
807f5038 | 390 | const wxValidator& validator, |
7ae712f5 | 391 | const wxString& name) |
39df3acd | 392 | { |
29c86948 VZ |
393 | wxASSERT_MSG( !(style & wxDP_SPIN), |
394 | _T("wxDP_SPIN style not supported, use wxDP_DEFAULT") ); | |
395 | ||
39df3acd | 396 | if ( !wxControl::Create(parent, id, pos, size, |
85fa9d60 | 397 | style | wxCLIP_CHILDREN | wxWANTS_CHARS | wxBORDER_NONE, |
807f5038 | 398 | validator, name) ) |
39df3acd VZ |
399 | { |
400 | return false; | |
401 | } | |
402 | ||
39df3acd VZ |
403 | InheritAttributes(); |
404 | ||
85fa9d60 VZ |
405 | m_combo = new wxComboCtrl(this, -1, wxEmptyString, |
406 | wxDefaultPosition, wxDefaultSize); | |
39df3acd | 407 | |
4427c0a3 RR |
408 | m_combo->SetCtrlMainWnd(this); |
409 | ||
85fa9d60 | 410 | m_popup = new wxCalendarComboPopup(); |
39df3acd | 411 | |
06077aaf VZ |
412 | #if defined(__WXMSW__) |
413 | // without this keyboard navigation in month control doesn't work | |
414 | m_combo->UseAltPopupWindow(); | |
415 | #endif | |
85fa9d60 | 416 | m_combo->SetPopupControl(m_popup); |
39df3acd | 417 | |
85fa9d60 | 418 | m_cal = m_popup; |
39df3acd | 419 | |
85fa9d60 | 420 | m_popup->SetDateValue(date.IsValid() ? date : wxDateTime::Today()); |
1721a8c0 | 421 | |
170acdc9 | 422 | SetInitialSize(size); |
930fb29e | 423 | |
3a0c6181 | 424 | return true; |
39df3acd VZ |
425 | } |
426 | ||
427 | ||
7ae712f5 | 428 | void wxDatePickerCtrlGeneric::Init() |
39df3acd | 429 | { |
85fa9d60 | 430 | m_combo = NULL; |
39df3acd | 431 | m_cal = NULL; |
85fa9d60 | 432 | m_popup = NULL; |
39df3acd VZ |
433 | } |
434 | ||
a9d13e15 JS |
435 | wxDatePickerCtrlGeneric::~wxDatePickerCtrlGeneric() |
436 | { | |
a9d13e15 | 437 | } |
39df3acd | 438 | |
7ae712f5 | 439 | bool wxDatePickerCtrlGeneric::Destroy() |
39df3acd | 440 | { |
85fa9d60 VZ |
441 | if ( m_combo ) |
442 | m_combo->Destroy(); | |
39df3acd | 443 | |
85fa9d60 | 444 | m_combo = NULL; |
39df3acd | 445 | m_cal = NULL; |
85fa9d60 | 446 | m_popup = NULL; |
39df3acd VZ |
447 | |
448 | return wxControl::Destroy(); | |
449 | } | |
450 | ||
451 | // ---------------------------------------------------------------------------- | |
452 | // overridden base class methods | |
453 | // ---------------------------------------------------------------------------- | |
454 | ||
7ae712f5 | 455 | wxSize wxDatePickerCtrlGeneric::DoGetBestSize() const |
39df3acd | 456 | { |
85fa9d60 | 457 | return m_combo->GetBestSize(); |
39df3acd VZ |
458 | } |
459 | ||
460 | // ---------------------------------------------------------------------------- | |
7ae712f5 | 461 | // wxDatePickerCtrlGeneric API |
39df3acd VZ |
462 | // ---------------------------------------------------------------------------- |
463 | ||
4b134bb2 | 464 | bool |
7ae712f5 VZ |
465 | wxDatePickerCtrlGeneric::SetDateRange(const wxDateTime& lowerdate, |
466 | const wxDateTime& upperdate) | |
4b134bb2 VZ |
467 | { |
468 | return m_cal->SetDateRange(lowerdate, upperdate); | |
469 | } | |
470 | ||
39df3acd | 471 | |
7ae712f5 | 472 | wxDateTime wxDatePickerCtrlGeneric::GetValue() const |
39df3acd | 473 | { |
85fa9d60 | 474 | return m_popup->GetDateValue(); |
39df3acd VZ |
475 | } |
476 | ||
477 | ||
7ae712f5 | 478 | void wxDatePickerCtrlGeneric::SetValue(const wxDateTime& date) |
39df3acd | 479 | { |
85fa9d60 | 480 | m_popup->SetDateValue(date); |
39df3acd VZ |
481 | } |
482 | ||
483 | ||
7ae712f5 | 484 | bool wxDatePickerCtrlGeneric::GetRange(wxDateTime *dt1, wxDateTime *dt2) const |
39df3acd VZ |
485 | { |
486 | if (dt1) | |
4b134bb2 | 487 | *dt1 = m_cal->GetLowerDateLimit(); |
40a33c46 | 488 | if (dt2) |
4b134bb2 | 489 | *dt2 = m_cal->GetUpperDateLimit(); |
39df3acd VZ |
490 | return true; |
491 | } | |
492 | ||
493 | ||
7ae712f5 VZ |
494 | void |
495 | wxDatePickerCtrlGeneric::SetRange(const wxDateTime &dt1, const wxDateTime &dt2) | |
39df3acd | 496 | { |
4b134bb2 | 497 | m_cal->SetDateRange(dt1, dt2); |
39df3acd VZ |
498 | } |
499 | ||
500 | // ---------------------------------------------------------------------------- | |
501 | // event handlers | |
502 | // ---------------------------------------------------------------------------- | |
503 | ||
39df3acd | 504 | |
caad7637 JS |
505 | void wxDatePickerCtrlGeneric::OnSize(wxSizeEvent& event) |
506 | { | |
85fa9d60 VZ |
507 | if ( m_combo ) |
508 | m_combo->SetSize(GetClientSize()); | |
caad7637 JS |
509 | |
510 | event.Skip(); | |
511 | } | |
512 | ||
513 | ||
7ae712f5 | 514 | void wxDatePickerCtrlGeneric::OnText(wxCommandEvent &ev) |
39df3acd VZ |
515 | { |
516 | ev.SetEventObject(this); | |
517 | ev.SetId(GetId()); | |
eafd76b0 | 518 | GetParent()->GetEventHandler()->ProcessEvent(ev); |
39df3acd VZ |
519 | |
520 | // We'll create an additional event if the date is valid. | |
1721a8c0 | 521 | // If the date isn't valid, the user's probably in the middle of typing |
39df3acd | 522 | wxDateTime dt; |
85fa9d60 VZ |
523 | if ( !m_popup->ParseDateTime(m_combo->GetValue(), &dt) ) |
524 | return; | |
39df3acd | 525 | |
85fa9d60 | 526 | m_popup->SendDateEvent(dt); |
39df3acd VZ |
527 | } |
528 | ||
529 | ||
4427c0a3 RR |
530 | void wxDatePickerCtrlGeneric::OnFocus(wxFocusEvent& WXUNUSED(event)) |
531 | { | |
532 | m_combo->SetFocus(); | |
533 | } | |
534 | ||
535 | ||
7ae712f5 VZ |
536 | #endif // wxUSE_DATEPICKCTRL_GENERIC |
537 | ||
538 | #endif // wxUSE_DATEPICKCTRL | |
85fa9d60 | 539 |