Insert() patch from John Labenski
[wxWidgets.git] / include / wx / msw / choice.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: choice.h
3 // Purpose: wxChoice class
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin to derive from wxChoiceBase
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_CHOICE_H_
13 #define _WX_CHOICE_H_
14
15 #ifdef __GNUG__
16 #pragma interface "choice.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // Choice item
21 // ----------------------------------------------------------------------------
22
23 class WXDLLEXPORT wxChoice : public wxChoiceBase
24 {
25 DECLARE_DYNAMIC_CLASS(wxChoice)
26
27 public:
28 // ctors
29 wxChoice() { }
30 virtual ~wxChoice();
31
32 wxChoice(wxWindow *parent,
33 wxWindowID id,
34 const wxPoint& pos = wxDefaultPosition,
35 const wxSize& size = wxDefaultSize,
36 int n = 0, const wxString choices[] = NULL,
37 long style = 0,
38 const wxValidator& validator = wxDefaultValidator,
39 const wxString& name = wxChoiceNameStr)
40 {
41 Create(parent, id, pos, size, n, choices, style, validator, name);
42 }
43
44 bool Create(wxWindow *parent,
45 wxWindowID id,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize,
48 int n = 0, const wxString choices[] = NULL,
49 long style = 0,
50 const wxValidator& validator = wxDefaultValidator,
51 const wxString& name = wxChoiceNameStr);
52
53 // implement base class pure virtuals
54 virtual int DoAppend(const wxString& item);
55 virtual int DoInsert(const wxString& item, int pos);
56 virtual void Delete(int n);
57 virtual void Clear();
58
59 virtual int GetCount() const;
60 virtual int GetSelection() const;
61 virtual void SetSelection(int n);
62
63 virtual int FindString(const wxString& s) const;
64 virtual wxString GetString(int n) const;
65 virtual void SetString(int n, const wxString& s);
66
67 // MSW only
68 virtual bool MSWCommand(WXUINT param, WXWORD id);
69 long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
70 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
71 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
72
73 protected:
74 virtual void DoMoveWindow(int x, int y, int width, int height);
75 virtual void DoSetItemClientData( int n, void* clientData );
76 virtual void* DoGetItemClientData( int n ) const;
77 virtual void DoSetItemClientObject( int n, wxClientData* clientData );
78 virtual wxClientData* DoGetItemClientObject( int n ) const;
79
80 // MSW implementation
81 virtual wxSize DoGetBestSize() const;
82 virtual void DoSetSize(int x, int y,
83 int width, int height,
84 int sizeFlags = wxSIZE_AUTO);
85
86 // free all memory we have (used by Clear() and dtor)
87 void Free();
88 };
89
90 #endif // _WX_CHOICE_H_