]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/combo.h
Remove duplicated GetTextPeer() definitions from derived classes.
[wxWidgets.git] / include / wx / msw / combo.h
CommitLineData
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 36extern WXDLLIMPEXP_DATA_CORE(const char) wxComboBoxNameStr[];
7c982668 37
53a2db12 38class WXDLLIMPEXP_CORE wxComboCtrl : public wxComboCtrlBase
a340b80d
VZ
39{
40public:
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
952555f7
VZ
76 void OnTimerEvent(wxTimerEvent& WXUNUSED(event)) { DoTimerEvent(); }
77
1c3693e8 78protected:
952555f7
VZ
79 void DoTimerEvent();
80
1c3693e8 81 virtual bool AnimateShow( const wxRect& rect, int flags );
952555f7 82#endif // wxUSE_COMBOCTRL_POPUP_ANIMATION
30be036c 83
a340b80d
VZ
84protected:
85
86 // customization
87 virtual void OnResize();
88 virtual wxCoord GetNativeTextIndent() const;
a340b80d
VZ
89
90 // event handlers
91 void OnPaintEvent( wxPaintEvent& event );
92 void OnMouseEvent( wxMouseEvent& event );
93
94private:
95 void Init();
96
30be036c
RR
97#if wxUSE_COMBOCTRL_POPUP_ANIMATION
98 // Popup animation related
99 wxLongLong m_animStart;
100 wxTimer m_animTimer;
101 wxRect m_animRect;
102 int m_animFlags;
103#endif
104
a340b80d
VZ
105 DECLARE_EVENT_TABLE()
106
a57d600f 107 DECLARE_DYNAMIC_CLASS(wxComboCtrl)
a340b80d
VZ
108};
109
110
a57d600f 111#endif // wxUSE_COMBOCTRL
a340b80d
VZ
112#endif
113 // _WX_COMBOCONTROL_H_