]>
Commit | Line | Data |
---|---|---|
ec376c8f | 1 | /////////////////////////////////////////////////////////////////////////////// |
fec9cc08 | 2 | // Name: src/common/pickerbase.cpp |
ec376c8f VZ |
3 | // Purpose: wxPickerBase class implementation |
4 | // Author: Francesco Montorsi | |
5 | // Modified by: | |
6 | // Created: 15/04/2006 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Francesco Montorsi | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
9a6384ca WS |
27 | #if wxUSE_COLOURPICKERCTRL || \ |
28 | wxUSE_DIRPICKERCTRL || \ | |
29 | wxUSE_FILEPICKERCTRL || \ | |
30 | wxUSE_FONTPICKERCTRL | |
31 | ||
ec376c8f VZ |
32 | #include "wx/pickerbase.h" |
33 | ||
fec9cc08 WS |
34 | #ifndef WX_PRECOMP |
35 | #include "wx/textctrl.h" | |
36 | #endif | |
ec376c8f VZ |
37 | |
38 | // ============================================================================ | |
39 | // implementation | |
40 | // ============================================================================ | |
41 | ||
3c3b3558 | 42 | IMPLEMENT_ABSTRACT_CLASS(wxPickerBase, wxControl) |
ec376c8f | 43 | |
a65ffcb2 VZ |
44 | BEGIN_EVENT_TABLE(wxPickerBase, wxControl) |
45 | EVT_SIZE(wxPickerBase::OnSize) | |
46 | WX_EVENT_TABLE_CONTROL_CONTAINER(wxPickerBase) | |
47 | END_EVENT_TABLE() | |
6c20e8f8 | 48 | WX_DELEGATE_TO_CONTROL_CONTAINER(wxPickerBase, wxControl) |
a65ffcb2 VZ |
49 | |
50 | ||
ec376c8f VZ |
51 | // ---------------------------------------------------------------------------- |
52 | // wxPickerBase | |
53 | // ---------------------------------------------------------------------------- | |
54 | ||
ec376c8f VZ |
55 | bool wxPickerBase::CreateBase(wxWindow *parent, |
56 | wxWindowID id, | |
57 | const wxString &text, | |
58 | const wxPoint& pos, | |
59 | const wxSize& size, | |
60 | long style, | |
61 | const wxValidator& validator, | |
55b43eaa | 62 | const wxString& name) |
ec376c8f VZ |
63 | { |
64 | // remove any border style from our style as wxPickerBase's window must be | |
65 | // invisible (user styles must be set on the textctrl or the platform-dependent picker) | |
66 | style &= ~wxBORDER_MASK; | |
fec9cc08 | 67 | if (!wxControl::Create(parent, id, pos, size, style | wxNO_BORDER | wxTAB_TRAVERSAL, |
a65ffcb2 | 68 | validator, name)) |
ec376c8f VZ |
69 | return false; |
70 | ||
a65ffcb2 VZ |
71 | m_sizer = new wxBoxSizer(wxHORIZONTAL); |
72 | ||
ec376c8f VZ |
73 | if (HasFlag(wxPB_USE_TEXTCTRL)) |
74 | { | |
75 | // NOTE: the style of this class (wxPickerBase) and the style of the | |
76 | // attached text control are different: GetTextCtrlStyle() extracts | |
77 | // the styles related to the textctrl from the styles passed here | |
5f6475c1 VZ |
78 | m_text = new wxTextCtrl(this, wxID_ANY, wxEmptyString, |
79 | wxDefaultPosition, wxDefaultSize, | |
55b43eaa | 80 | GetTextCtrlStyle(style)); |
ec376c8f VZ |
81 | if (!m_text) |
82 | { | |
83 | wxFAIL_MSG( wxT("wxPickerBase's textctrl creation failed") ); | |
84 | return false; | |
85 | } | |
86 | ||
87 | // set the maximum lenght allowed for this textctrl. | |
88 | // This is very important since any change to it will trigger an update in | |
89 | // the m_picker; for very long strings, this real-time synchronization could | |
90 | // become a CPU-blocker and thus should be avoided. | |
91 | // 32 characters will be more than enough for all common uses. | |
92 | m_text->SetMaxLength(32); | |
93 | ||
94 | // set the initial contents of the textctrl | |
95 | m_text->SetValue(text); | |
96 | ||
97 | m_text->Connect(wxEVT_COMMAND_TEXT_UPDATED, | |
98 | wxCommandEventHandler(wxPickerBase::OnTextCtrlUpdate), | |
99 | NULL, this); | |
100 | m_text->Connect(wxEVT_KILL_FOCUS, | |
101 | wxFocusEventHandler(wxPickerBase::OnTextCtrlKillFocus), | |
102 | NULL, this); | |
103 | ||
104 | m_text->Connect(wxEVT_DESTROY, | |
105 | wxWindowDestroyEventHandler(wxPickerBase::OnTextCtrlDelete), | |
106 | NULL, this); | |
a65ffcb2 | 107 | |
ecd87e5b | 108 | // the text control's proportion values defaults to 2 |
a65ffcb2 | 109 | m_sizer->Add(m_text, 2, GetDefaultTextCtrlFlag(), 5); |
ec376c8f VZ |
110 | } |
111 | ||
112 | return true; | |
113 | } | |
114 | ||
a65ffcb2 VZ |
115 | void wxPickerBase::PostCreation() |
116 | { | |
ecd87e5b VZ |
117 | // the picker's proportion value defaults to 1 when there's no text control |
118 | // associated with it - in that case it defaults to 0 | |
119 | m_sizer->Add(m_picker, HasTextCtrl() ? 0 : 1, GetDefaultPickerCtrlFlag(), 5); | |
a65ffcb2 VZ |
120 | |
121 | SetSizer(m_sizer); | |
122 | m_sizer->SetSizeHints(this); | |
123 | } | |
124 | ||
ec376c8f VZ |
125 | void wxPickerBase::OnTextCtrlKillFocus(wxFocusEvent &) |
126 | { | |
127 | wxASSERT(m_text); | |
128 | ||
129 | // don't leave the textctrl empty | |
fec9cc08 | 130 | if (m_text->GetValue().empty()) |
ec376c8f VZ |
131 | UpdateTextCtrlFromPicker(); |
132 | } | |
133 | ||
134 | void wxPickerBase::OnTextCtrlDelete(wxWindowDestroyEvent &) | |
135 | { | |
136 | // the textctrl has been deleted; our pointer is invalid! | |
137 | m_text = NULL; | |
138 | } | |
139 | ||
140 | void wxPickerBase::OnTextCtrlUpdate(wxCommandEvent &) | |
141 | { | |
142 | // for each text-change, update the picker | |
143 | UpdatePickerFromTextCtrl(); | |
144 | } | |
145 | ||
a65ffcb2 | 146 | void wxPickerBase::OnSize(wxSizeEvent &event) |
06f23ff9 | 147 | { |
a65ffcb2 VZ |
148 | if (GetAutoLayout()) |
149 | Layout(); | |
150 | event.Skip(); | |
06f23ff9 | 151 | } |
9a6384ca WS |
152 | |
153 | #endif // Any picker in use |