~ubuntu-branches/ubuntu/utopic/pgadmin3/utopic-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2013, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// calbox.h - Date-picker control box
//
//////////////////////////////////////////////////////////////////////////

#ifndef _WX_CALBOX_H_
#define _WX_CALBOX_H_

#include "wx/calctrl.h"

#if defined(wxUSE_DATEPICKCTRL) && wxUSE_DATEPICKCTRL
#include "wx/datectrl.h"
#if wxUSE_DATEPICKCTRL_GENERIC
#include "wx/generic/datectrl.h"
#endif // wxUSE_DATEPICKCTRL_GENERIC
typedef wxDatePickerCtrl wxCalendarBox;
#else

// pgCompatCalendarCtrl is a typedef for either wxGenericCalendarCtrl or wxCalendarCtrl
#if wxCHECK_VERSION(2, 9, 0)
#include "wx/generic/calctrlg.h"
typedef wxGenericCalendarCtrl pgCompatCalendarCtrl;
#else
typedef wxCalendarCtrl pgCompatCalendarCtrl;
#endif

class wxCalendarBox : public wxControl
{
public:
	wxCalendarBox()
	{
		Init();
	}
	wxCalendarBox(wxWindow *parent,
	              wxWindowID id,
	              const wxDateTime &date = wxDefaultDateTime,
	              const wxPoint &pos = wxDefaultPosition,
	              const wxSize &size = wxDefaultSize,
	              long style = wxCAL_SHOW_HOLIDAYS | wxWANTS_CHARS, const wxString &name = wxCalendarNameStr);

	bool Destroy();

	bool Create(wxWindow *parent,
	            wxWindowID id,
	            const wxDateTime &date,
	            const wxPoint &pos,
	            const wxSize &size,
	            long style,
	            const wxString &name);

	bool SetValue(const wxDateTime &date);
	wxDateTime GetValue();

	bool SetLowerDateLimit(const wxDateTime &date = wxDefaultDateTime)
	{
		return m_cal->SetLowerDateLimit(date);
	}
	const wxDateTime &GetLowerDateLimit() const
	{
		return m_cal->GetLowerDateLimit();
	}
	bool SetUpperDateLimit(const wxDateTime &date = wxDefaultDateTime)
	{
		return m_cal->SetUpperDateLimit(date);
	}
	const wxDateTime &GetUpperDateLimit() const
	{
		return m_cal->GetUpperDateLimit();
	}

	bool SetDateRange(const wxDateTime &lowerdate = wxDefaultDateTime, const wxDateTime &upperdate = wxDefaultDateTime)
	{
		return m_cal->SetDateRange(lowerdate, upperdate);
	}

	wxCalendarDateAttr *GetAttr(size_t day) const
	{
		return m_cal->GetAttr(day);
	}
	void SetAttr(size_t day, wxCalendarDateAttr *attr)
	{
		m_cal->SetAttr(day, attr);
	}
	void SetHoliday(size_t day)
	{
		m_cal->SetHoliday(day);
	}
	void ResetAttr(size_t day)
	{
		m_cal->ResetAttr(day);
	}
	bool SetFormat(const wxChar *fmt);

	virtual bool Enable(bool enable = true);
	virtual bool Show(bool show = true);
	virtual void DoMoveWindow(int x, int y, int width, int height);

private:
	wxDialog *m_dlg;
	wxTextCtrl *m_txt;
	pgCompatCalendarCtrl *m_cal;
	wxButton *m_btn;
	wxString m_format;

	bool m_dropped, m_ignoreDrop;

	void Init();
	void DropDown(bool down = true);

	wxSize DoGetBestSize() const;
	void OnSize(wxSizeEvent &event);

	void OnText(wxCommandEvent &ev);
	void OnEditKey(wxKeyEvent &event);
	void OnCalKey(wxKeyEvent &event);
	void OnClick(wxCommandEvent &ev);
	void OnSelChange(wxCalendarEvent &ev);
	void OnSetFocus(wxFocusEvent &ev);
	void OnKillFocus(wxFocusEvent &ev);
	void OnChildSetFocus(wxChildFocusEvent &ev);

	DECLARE_DYNAMIC_CLASS(wxCalendarBox)
	DECLARE_EVENT_TABLE()
	DECLARE_NO_COPY_CLASS(wxCalendarBox)
};

#endif // wxUSE_DATEPICKCTRL

#endif // _WX_CALBOX_H_