git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31526
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class WXDLLIMPEXP_ADV wxCalendarCtrl;
class WXDLLIMPEXP_ADV wxCalendarEvent;
class WXDLLIMPEXP_ADV wxCalendarCtrl;
class WXDLLIMPEXP_ADV wxCalendarEvent;
+#include <wx/popupwin.h>
+
class WXDLLIMPEXP_ADV wxDatePickerCtrl : public wxDatePickerCtrlBase
{
public:
class WXDLLIMPEXP_ADV wxDatePickerCtrl : public wxDatePickerCtrlBase
{
public:
virtual void DoMoveWindow(int x, int y, int width, int height);
private:
virtual void DoMoveWindow(int x, int y, int width, int height);
private:
+ wxPopupWindow *m_popup;
wxTextCtrl *m_txt;
wxCalendarCtrl *m_cal;
wxButton *m_btn;
wxTextCtrl *m_txt;
wxCalendarCtrl *m_cal;
wxButton *m_btn;
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: generic/datectrl.cpp
+// Name: generic/datectlg.cpp
// Purpose: generic wxDatePickerCtrl implementation
// Author: Andreas Pflug
// Modified by:
// Purpose: generic wxDatePickerCtrl implementation
// Author: Andreas Pflug
// Modified by:
wxASSERT_MSG( !(style & wxDP_SPIN),
_T("wxDP_SPIN style not supported, use wxDP_DEFAULT") );
wxASSERT_MSG( !(style & wxDP_SPIN),
_T("wxDP_SPIN style not supported, use wxDP_DEFAULT") );
- wxString txt;
- if (date.IsValid())
- txt = date.FormatDate();
-
if ( !wxControl::Create(parent, id, pos, size,
style | wxCLIP_CHILDREN | wxWANTS_CHARS,
wxDefaultValidator, name) )
if ( !wxControl::Create(parent, id, pos, size,
style | wxCLIP_CHILDREN | wxWANTS_CHARS,
wxDefaultValidator, name) )
dc.SelectObject(wxNullBitmap);
}
dc.SelectObject(wxNullBitmap);
}
- m_txt=new wxTextCtrl(this, CTRLID_TXT, txt);
+ m_txt=new wxTextCtrl(this, CTRLID_TXT);
m_txt->Connect(wxID_ANY, wxID_ANY, wxEVT_KEY_DOWN,
(wxObjectEventFunction)&wxDatePickerCtrl::OnEditKey,
0, this);
m_txt->Connect(wxID_ANY, wxID_ANY, wxEVT_KILL_FOCUS,
(wxObjectEventFunction)&wxDatePickerCtrl::OnKillFocus,
0, this);
m_txt->Connect(wxID_ANY, wxID_ANY, wxEVT_KEY_DOWN,
(wxObjectEventFunction)&wxDatePickerCtrl::OnEditKey,
0, this);
m_txt->Connect(wxID_ANY, wxID_ANY, wxEVT_KILL_FOCUS,
(wxObjectEventFunction)&wxDatePickerCtrl::OnKillFocus,
0, this);
m_btn = new wxBitmapButton(this, CTRLID_BTN, bmp);
m_btn = new wxBitmapButton(this, CTRLID_BTN, bmp);
- m_dlg = new wxDialog(this, CTRLID_CAL, wxEmptyString,
- wxDefaultPosition, wxDefaultSize,
- wxSIMPLE_BORDER);
- m_dlg->SetFont(GetFont());
+ m_popup = new wxPopupWindow(this);
+ m_popup->SetFont(GetFont());
- wxPanel *panel=new wxPanel(m_dlg, CTRLID_PAN,
+ wxPanel *panel=new wxPanel(m_popup, CTRLID_PAN,
wxPoint(0, 0), wxDefaultSize,
wxSUNKEN_BORDER);
m_cal = new wxCalendarCtrl(panel, CTRLID_CAL, wxDefaultDateTime,
wxPoint(0, 0), wxDefaultSize,
wxSUNKEN_BORDER);
m_cal = new wxCalendarCtrl(panel, CTRLID_CAL, wxDefaultDateTime,
wxPoint yearPosition = yearControl->GetPosition();
wxPoint yearPosition = yearControl->GetPosition();
+ SetFormat(wxT("%x"));
+
+ if (date.IsValid())
+ m_txt->SetValue(date.Format(m_format));
+
+
#ifdef __WXMSW__
#define CALBORDER 0
#else
#ifdef __WXMSW__
#define CALBORDER 0
#else
panel->SetClientSize(width+CALBORDER/2, calSize.y-2+CALBORDER);
panel->SetClientSize(width+CALBORDER/2, calSize.y-2+CALBORDER);
- m_dlg->SetClientSize(panel->GetSize());
+ m_popup->SetClientSize(panel->GetSize());
+ m_popup->Hide();
void wxDatePickerCtrl::Init()
{
void wxDatePickerCtrl::Init()
{
m_txt = NULL;
m_cal = NULL;
m_btn = NULL;
m_txt = NULL;
m_cal = NULL;
m_btn = NULL;
{
if (m_cal)
m_cal->Destroy();
{
if (m_cal)
m_cal->Destroy();
- if (m_dlg)
- m_dlg->Destroy();
+ if (m_popup)
+ m_popup->Destroy();
if (m_txt)
m_txt->Destroy();
if (m_btn)
m_btn->Destroy();
if (m_txt)
m_txt->Destroy();
if (m_btn)
m_btn->Destroy();
m_txt = NULL;
m_cal = NULL;
m_btn = NULL;
m_txt = NULL;
m_cal = NULL;
m_btn = NULL;
bool wxDatePickerCtrl::SetFormat(const wxChar *fmt)
{
bool wxDatePickerCtrl::SetFormat(const wxChar *fmt)
{
+ wxString currentText;
+ wxDateTime currentDate;
+ if (m_txt)
+ {
+ currentText = m_txt->GetValue();
+ if (!currentText.IsEmpty())
+ currentDate.ParseFormat(currentText, m_format);
+ }
wxDateTime dt;
dt.ParseFormat(wxT("2003-10-13"), wxT("%Y-%m-%d"));
wxString str=dt.Format(fmt);
wxDateTime dt;
dt.ParseFormat(wxT("2003-10-13"), wxT("%Y-%m-%d"));
wxString str=dt.Format(fmt);
m_format.Append(wxT("%Y"));
p += 4;
}
m_format.Append(wxT("%Y"));
p += 4;
}
+ else if (n == (dt.GetYear() % 100))
+ {
+ m_format.Append(wxT("%y"));
+ p += 2;
+ }
else
m_format.Append(*p++);
}
else
m_format.Append(*p++);
}
tv.SetIncludeList(valList);
m_txt->SetValidator(tv);
tv.SetIncludeList(valList);
m_txt->SetValidator(tv);
+
+ if (!currentText.IsEmpty())
+ m_txt->SetValue(currentDate.Format(m_format));
if (m_cal)
{
if (date.IsValid())
if (m_cal)
{
if (date.IsValid())
- m_txt->SetValue(date.FormatDate());
+ m_txt->SetValue(date.Format(m_format));
else
m_txt->SetValue(wxEmptyString);
}
else
m_txt->SetValue(wxEmptyString);
}
void wxDatePickerCtrl::DropDown(bool down)
{
void wxDatePickerCtrl::DropDown(bool down)
{
- if (m_txt->GetValue().IsEmpty())
- m_cal->SetDate(wxDateTime::Today());
- else
- {
- wxDateTime dt;
+ wxDateTime dt;
+ if (!m_txt->GetValue().IsEmpty())
dt.ParseFormat(m_txt->GetValue(), m_format);
dt.ParseFormat(m_txt->GetValue(), m_format);
- }
- wxPoint pos=GetParent()->ClientToScreen(GetPosition());
+ else
+ m_cal->SetDate(wxDateTime::Today());
- m_dlg->Move(pos.x, pos.y + GetSize().y);
- m_dlg->Show();
+ wxPoint pos=GetParent()->ClientToScreen(GetPosition());
+ m_popup->Move(pos.x, pos.y + GetSize().y);
+ m_popup->Show();
m_dropped = true;
}
else
{
if (m_dropped)
m_dropped = true;
}
else
{
if (m_dropped)
wxWindow *w=(wxWindow*)ev.GetEventObject();
while (w)
{
wxWindow *w=(wxWindow*)ev.GetEventObject();
while (w)
{
return;
w = w->GetParent();
}
return;
w = w->GetParent();
}
- m_txt->SetValue(m_cal->GetDate().FormatDate());
+ m_txt->SetValue(m_cal->GetDate().Format(m_format));
if (ev.GetEventType() == wxEVT_CALENDAR_DOUBLECLICKED)
{
DropDown(false);
if (ev.GetEventType() == wxEVT_CALENDAR_DOUBLECLICKED)
{
DropDown(false);