git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44141
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// wxDataViewDateRenderer
// ---------------------------------------------------------
// wxDataViewDateRenderer
// ---------------------------------------------------------
+#define wxUSE_DATE_RENDERER_POPUP (wxUSE_CALENDARCTRL && wxUSE_POPUPWIN)
+
+#if wxUSE_DATE_RENDERER_POPUP
class wxDataViewDateRendererPopupTransient: public wxPopupTransientWindow
{
class wxDataViewDateRendererPopupTransient: public wxPopupTransientWindow
{
-#endif // wxUSE_CALENDARCTRL
+#endif // wxUSE_DATE_RENDERER_POPUP
IMPLEMENT_ABSTRACT_CLASS(wxDataViewDateRenderer, wxDataViewCustomRenderer)
IMPLEMENT_ABSTRACT_CLASS(wxDataViewDateRenderer, wxDataViewCustomRenderer)
model->GetValue( variant, col, row );
wxDateTime value = variant.GetDateTime();
model->GetValue( variant, col, row );
wxDateTime value = variant.GetDateTime();
+#if wxUSE_DATE_RENDERER_POPUP
wxDataViewDateRendererPopupTransient *popup = new wxDataViewDateRendererPopupTransient(
GetOwner()->GetOwner()->GetParent(), &value, model, col, row );
wxPoint pos = wxGetMousePosition();
popup->Move( pos );
popup->Layout();
popup->Popup( popup->m_cal );
wxDataViewDateRendererPopupTransient *popup = new wxDataViewDateRendererPopupTransient(
GetOwner()->GetOwner()->GetParent(), &value, model, col, row );
wxPoint pos = wxGetMousePosition();
popup->Move( pos );
popup->Layout();
popup->Popup( popup->m_cal );
+#else // !wxUSE_DATE_RENDERER_POPUP
wxMessageBox(value.Format());
wxMessageBox(value.Format());
+#endif // wxUSE_DATE_RENDERER_POPUP/!wxUSE_DATE_RENDERER_POPUP