]>
Commit | Line | Data |
---|---|---|
a340b80d VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/combo.h | |
a57d600f | 3 | // Purpose: wxComboCtrl class |
a340b80d VZ |
4 | // Author: Jaakko Salli |
5 | // Modified by: | |
6 | // Created: Apr-30-2006 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Jaakko Salli | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_COMBOCONTROL_H_ | |
13 | #define _WX_COMBOCONTROL_H_ | |
14 | ||
15 | // NB: Definition of _WX_COMBOCONTROL_H_ is used in wx/generic/combo.h to | |
a57d600f VZ |
16 | // determine whether there is native wxComboCtrl, so make sure you |
17 | // use it in all native wxComboCtrls. | |
a340b80d | 18 | |
a57d600f | 19 | #if wxUSE_COMBOCTRL |
a340b80d | 20 | |
30be036c RR |
21 | #if !defined(__WXWINCE__) && wxUSE_TIMER |
22 | #include "wx/timer.h" | |
23 | #define wxUSE_COMBOCTRL_POPUP_ANIMATION 1 | |
24 | #else | |
25 | #define wxUSE_COMBOCTRL_POPUP_ANIMATION 0 | |
26 | #endif | |
27 | ||
28 | ||
a340b80d | 29 | // ---------------------------------------------------------------------------- |
a57d600f | 30 | // Native wxComboCtrl |
a340b80d VZ |
31 | // ---------------------------------------------------------------------------- |
32 | ||
33 | // Define this only if native implementation includes all features | |
34 | #define wxCOMBOCONTROL_FULLY_FEATURED | |
35 | ||
fba05595 | 36 | extern WXDLLIMPEXP_DATA_CORE(const char) wxComboBoxNameStr[]; |
7c982668 | 37 | |
53a2db12 | 38 | class WXDLLIMPEXP_CORE wxComboCtrl : public wxComboCtrlBase |
a340b80d VZ |
39 | { |
40 | public: | |
41 | // ctors and such | |
a57d600f | 42 | wxComboCtrl() : wxComboCtrlBase() { Init(); } |
a340b80d | 43 | |
a57d600f | 44 | wxComboCtrl(wxWindow *parent, |
a340b80d VZ |
45 | wxWindowID id = wxID_ANY, |
46 | const wxString& value = wxEmptyString, | |
47 | const wxPoint& pos = wxDefaultPosition, | |
48 | const wxSize& size = wxDefaultSize, | |
49 | long style = 0, | |
50 | const wxValidator& validator = wxDefaultValidator, | |
51 | const wxString& name = wxComboBoxNameStr) | |
a57d600f | 52 | : wxComboCtrlBase() |
a340b80d VZ |
53 | { |
54 | Init(); | |
55 | ||
56 | (void)Create(parent, id, value, pos, size, style, validator, name); | |
57 | } | |
58 | ||
59 | bool Create(wxWindow *parent, | |
60 | wxWindowID id = wxID_ANY, | |
61 | const wxString& value = wxEmptyString, | |
62 | const wxPoint& pos = wxDefaultPosition, | |
63 | const wxSize& size = wxDefaultSize, | |
64 | long style = 0, | |
65 | const wxValidator& validator = wxDefaultValidator, | |
66 | const wxString& name = wxComboBoxNameStr); | |
67 | ||
a57d600f | 68 | virtual ~wxComboCtrl(); |
a340b80d | 69 | |
118f5fbd | 70 | virtual void PrepareBackground( wxDC& dc, const wxRect& rect, int flags ) const; |
b445b6a7 | 71 | virtual bool IsKeyPopupToggle(const wxKeyEvent& event) const; |
a340b80d | 72 | |
a57d600f | 73 | static int GetFeatures() { return wxComboCtrlFeatures::All; } |
a340b80d | 74 | |
30be036c | 75 | #if wxUSE_COMBOCTRL_POPUP_ANIMATION |
30be036c | 76 | void OnTimerEvent( wxTimerEvent& event ); |
1c3693e8 PC |
77 | protected: |
78 | virtual bool AnimateShow( const wxRect& rect, int flags ); | |
30be036c RR |
79 | #endif |
80 | ||
a340b80d VZ |
81 | protected: |
82 | ||
83 | // customization | |
84 | virtual void OnResize(); | |
85 | virtual wxCoord GetNativeTextIndent() const; | |
86 | virtual void OnThemeChange(); | |
87 | ||
88 | // event handlers | |
89 | void OnPaintEvent( wxPaintEvent& event ); | |
90 | void OnMouseEvent( wxMouseEvent& event ); | |
91 | ||
92 | private: | |
93 | void Init(); | |
94 | ||
30be036c RR |
95 | #if wxUSE_COMBOCTRL_POPUP_ANIMATION |
96 | // Popup animation related | |
97 | wxLongLong m_animStart; | |
98 | wxTimer m_animTimer; | |
99 | wxRect m_animRect; | |
100 | int m_animFlags; | |
101 | #endif | |
102 | ||
a340b80d VZ |
103 | DECLARE_EVENT_TABLE() |
104 | ||
a57d600f | 105 | DECLARE_DYNAMIC_CLASS(wxComboCtrl) |
a340b80d VZ |
106 | }; |
107 | ||
108 | ||
a57d600f | 109 | #endif // wxUSE_COMBOCTRL |
a340b80d VZ |
110 | #endif |
111 | // _WX_COMBOCONTROL_H_ |