]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/datectrl.h
Application of the most recent wxWebView patch, the only changes were so tab to space...
[wxWidgets.git] / include / wx / msw / datectrl.h
CommitLineData
32f1f66a
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/msw/datectrl.h
3// Purpose: wxDatePickerCtrl for Windows
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 2005-01-09
7// RCS-ID: $Id$
8// Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MSW_DATECTRL_H_
13#define _WX_MSW_DATECTRL_H_
14
15// ----------------------------------------------------------------------------
16// wxDatePickerCtrl
17// ----------------------------------------------------------------------------
18
19class WXDLLIMPEXP_ADV wxDatePickerCtrl : public wxDatePickerCtrlBase
20{
21public:
22 // ctors
23 wxDatePickerCtrl() { }
24
25 wxDatePickerCtrl(wxWindow *parent,
26 wxWindowID id,
27 const wxDateTime& dt = wxDefaultDateTime,
28 const wxPoint& pos = wxDefaultPosition,
29 const wxSize& size = wxDefaultSize,
2cfbeac8 30 long style = wxDP_DEFAULT | wxDP_SHOWCENTURY,
32f1f66a
VZ
31 const wxValidator& validator = wxDefaultValidator,
32 const wxString& name = wxDatePickerCtrlNameStr)
33 {
34 Create(parent, id, dt, pos, size, style, validator, name);
35 }
36
37 bool Create(wxWindow *parent,
38 wxWindowID id,
39 const wxDateTime& dt = wxDefaultDateTime,
40 const wxPoint& pos = wxDefaultPosition,
41 const wxSize& size = wxDefaultSize,
2cfbeac8 42 long style = wxDP_DEFAULT | wxDP_SHOWCENTURY,
32f1f66a
VZ
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxDatePickerCtrlNameStr);
45
46 // set/get the date
47 virtual void SetValue(const wxDateTime& dt);
48 virtual wxDateTime GetValue() const;
49
50 // set/get the allowed valid range for the dates, if either/both of them
51 // are invalid, there is no corresponding limit and if neither is set
52 // GetRange() returns false
53 virtual void SetRange(const wxDateTime& dt1, const wxDateTime& dt2);
54 virtual bool GetRange(wxDateTime *dt1, wxDateTime *dt2) const;
55
32f1f66a
VZ
56 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
57
58 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
59
a047aff2
JS
60 // returns true if the platform should explicitly apply a theme border
61 virtual bool CanApplyThemeBorder() const { return false; }
62
6f02a879 63protected:
dc797d8e 64 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
32f1f66a
VZ
65 virtual wxSize DoGetBestSize() const;
66
e4164aa9
VZ
67 // the date currently shown by the control, may be invalid
68 wxDateTime m_date;
69
32f1f66a 70
a69e2a0a 71 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDatePickerCtrl)
32f1f66a
VZ
72};
73
74#endif // _WX_MSW_DATECTRL_H_