X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6f02a879ed7efc5fcf6328ff47a1352ec82812b7..b16f24dd05b14835e5701aa4434747fe5f94169a:/include/wx/msw/datectrl.h?ds=inline diff --git a/include/wx/msw/datectrl.h b/include/wx/msw/datectrl.h index d4b8bc74fb..b92a88ea38 100644 --- a/include/wx/msw/datectrl.h +++ b/include/wx/msw/datectrl.h @@ -57,9 +57,16 @@ public: virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); + // returns true if the platform should explicitly apply a theme border + virtual bool CanApplyThemeBorder() const { return false; } + protected: + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } virtual wxSize DoGetBestSize() const; + // the date currently shown by the control, may be invalid + wxDateTime m_date; + DECLARE_DYNAMIC_CLASS_NO_COPY(wxDatePickerCtrl) };