]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/choice.h
updated mac sources (CW 5.3 working , CW6 still having code gen problems)
[wxWidgets.git] / include / wx / mac / choice.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: choice.h
3 // Purpose: wxChoice class
4 // Author: AUTHOR
5 // Modified by:
6 // Created: ??/??/98
7 // RCS-ID: $Id$
8 // Copyright: (c) AUTHOR
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 #include "wx/control.h"
20
21 WXDLLEXPORT_DATA(extern const char*) wxChoiceNameStr;
22
23 // Choice item
24 class WXDLLEXPORT wxChoice: public wxControl
25 {
26 DECLARE_DYNAMIC_CLASS(wxChoice)
27
28 public:
29 wxChoice() {}
30 ~wxChoice() ;
31
32 wxChoice(wxWindow *parent, wxWindowID id,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 int n = 0, const wxString choices[] = NULL,
36 long style = 0,
37 const wxValidator& validator = wxDefaultValidator,
38 const wxString& name = wxChoiceNameStr)
39 {
40 Create(parent, id, pos, size, n, choices, style, validator, name);
41 }
42
43 bool Create(wxWindow *parent, wxWindowID id,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize,
46 int n = 0, const wxString choices[] = NULL,
47 long style = 0,
48 const wxValidator& validator = wxDefaultValidator,
49 const wxString& name = wxChoiceNameStr);
50
51 virtual void Append(const wxString& item);
52 virtual void Delete(int n);
53 virtual void Clear();
54 virtual int GetSelection() const ;
55 virtual void SetSelection(int n);
56 virtual inline void Select( int n ) { SetSelection( n ); }
57 virtual int FindString(const wxString& s) const;
58 virtual wxString GetString(int n) const ;
59 virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
60 virtual wxString GetStringSelection() const ;
61 virtual bool SetStringSelection(const wxString& sel);
62
63 virtual inline int Number() const { return m_strings.GetCount(); }
64 virtual inline int GetCount() const { return m_strings.GetCount(); }
65 virtual void Command(wxCommandEvent& event);
66
67 virtual inline void SetColumns(int WXUNUSED(n) = 1 ) { /* No effect */ } ;
68 virtual inline int GetColumns() const { return 1 ; };
69 void MacHandleControlClick( ControlHandle control , SInt16 controlpart ) ;
70
71 protected:
72 wxArrayString m_strings;
73 MenuHandle m_macPopUpMenuHandle ;
74 };
75
76 #endif
77 // _WX_CHOICE_H_