1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/pickerbase.h
3 // Purpose: wxPickerBase definition
4 // Author: Francesco Montorsi (based on Vadim Zeitlin's code)
7 // Copyright: (c) Vadim Zeitlin, Francesco Montorsi
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PICKERBASE_H_BASE_
13 #define _WX_PICKERBASE_H_BASE_
15 #include "wx/control.h"
17 #include "wx/containr.h"
19 class WXDLLIMPEXP_FWD_CORE wxTextCtrl
;
20 class WXDLLIMPEXP_FWD_CORE wxToolTip
;
22 extern WXDLLIMPEXP_DATA_CORE(const char) wxButtonNameStr
[];
24 // ----------------------------------------------------------------------------
25 // wxPickerBase is the base class for the picker controls which support
26 // a wxPB_USE_TEXTCTRL style; i.e. for those pickers which can use an auxiliary
27 // text control next to the 'real' picker.
29 // The wxTextPickerHelper class manages enabled/disabled state of the text control,
30 // its sizing and positioning.
31 // ----------------------------------------------------------------------------
33 #define wxPB_USE_TEXTCTRL 0x0002
35 class WXDLLIMPEXP_CORE wxPickerBase
: public wxControl
38 // ctor: text is the associated text control
39 wxPickerBase() : m_text(NULL
), m_picker(NULL
), m_sizer(NULL
)
40 { WX_INIT_CONTROL_CONTAINER(); }
41 virtual ~wxPickerBase() {}
44 // if present, intercepts wxPB_USE_TEXTCTRL style and creates the text control
45 // The 3rd argument is the initial wxString to display in the text control
46 bool CreateBase(wxWindow
*parent
,
48 const wxString
& text
= wxEmptyString
,
49 const wxPoint
& pos
= wxDefaultPosition
,
50 const wxSize
& size
= wxDefaultSize
,
52 const wxValidator
& validator
= wxDefaultValidator
,
53 const wxString
& name
= wxButtonNameStr
);
57 // margin between the text control and the picker
58 void SetInternalMargin(int newmargin
)
59 { GetTextCtrlItem()->SetBorder(newmargin
); m_sizer
->Layout(); }
60 int GetInternalMargin() const
61 { return GetTextCtrlItem()->GetBorder(); }
63 // proportion of the text control
64 void SetTextCtrlProportion(int prop
)
65 { GetTextCtrlItem()->SetProportion(prop
); m_sizer
->Layout(); }
66 int GetTextCtrlProportion() const
67 { return GetTextCtrlItem()->GetProportion(); }
69 // proportion of the picker control
70 void SetPickerCtrlProportion(int prop
)
71 { GetPickerCtrlItem()->SetProportion(prop
); m_sizer
->Layout(); }
72 int GetPickerCtrlProportion() const
73 { return GetPickerCtrlItem()->GetProportion(); }
75 bool IsTextCtrlGrowable() const
76 { return (GetTextCtrlItem()->GetFlag() & wxGROW
) != 0; }
77 void SetTextCtrlGrowable(bool grow
= true)
79 int f
= GetDefaultTextCtrlFlag();
85 GetTextCtrlItem()->SetFlag(f
);
88 bool IsPickerCtrlGrowable() const
89 { return (GetPickerCtrlItem()->GetFlag() & wxGROW
) != 0; }
90 void SetPickerCtrlGrowable(bool grow
= true)
92 int f
= GetDefaultPickerCtrlFlag();
98 GetPickerCtrlItem()->SetFlag(f
);
101 bool HasTextCtrl() const
102 { return m_text
!= NULL
; }
103 wxTextCtrl
*GetTextCtrl()
105 wxControl
*GetPickerCtrl()
108 // methods that derived class must/may override
109 virtual void UpdatePickerFromTextCtrl() = 0;
110 virtual void UpdateTextCtrlFromPicker() = 0;
113 // overridden base class methods
115 virtual void DoSetToolTip(wxToolTip
*tip
);
116 #endif // wxUSE_TOOLTIPS
120 void OnTextCtrlDelete(wxWindowDestroyEvent
&);
121 void OnTextCtrlUpdate(wxCommandEvent
&);
122 void OnTextCtrlKillFocus(wxFocusEvent
&);
124 void OnSize(wxSizeEvent
&);
126 // returns the set of styles for the attached wxTextCtrl
127 // from given wxPickerBase's styles
128 virtual long GetTextCtrlStyle(long style
) const
129 { return (style
& wxWINDOW_STYLE_MASK
); }
131 // returns the set of styles for the m_picker
132 virtual long GetPickerStyle(long style
) const
133 { return (style
& wxWINDOW_STYLE_MASK
); }
136 wxSizerItem
*GetPickerCtrlItem() const
138 if (this->HasTextCtrl())
139 return m_sizer
->GetItem((size_t)1);
140 return m_sizer
->GetItem((size_t)0);
143 wxSizerItem
*GetTextCtrlItem() const
145 wxASSERT(this->HasTextCtrl());
146 return m_sizer
->GetItem((size_t)0);
149 int GetDefaultPickerCtrlFlag() const
151 // on macintosh, without additional borders
152 // there's not enough space for focus rect
153 return wxALIGN_CENTER_VERTICAL
|wxGROW
155 | wxTOP
| wxRIGHT
| wxBOTTOM
160 int GetDefaultTextCtrlFlag() const
162 // on macintosh, without wxALL there's not enough space for focus rect
163 return wxALIGN_CENTER_VERTICAL
175 wxTextCtrl
*m_text
; // can be NULL
180 DECLARE_ABSTRACT_CLASS(wxPickerBase
)
181 DECLARE_EVENT_TABLE()
183 // This class must be something just like a panel...
184 WX_DECLARE_CONTROL_CONTAINER();
189 // _WX_PICKERBASE_H_BASE_