]> git.saurik.com Git - wxWidgets.git/blame - include/wx/choice.h
added GetMargins()
[wxWidgets.git] / include / wx / choice.h
CommitLineData
8d99be5f
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/choice.h
3// Purpose: wxChoice class interface
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 26.07.99
7// RCS-ID: $Id$
8// Copyright: (c) wxWindows team
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_CHOICE_H_BASE_
13#define _WX_CHOICE_H_BASE_
c801d85f 14
8d99be5f
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
af49c4b8 19#if defined(__GNUG__) && !defined(__APPLE__)
1b68e0b5 20 #pragma interface "choicebase.h"
8d99be5f
VZ
21#endif
22
1e6feb95
VZ
23#if wxUSE_CHOICE
24
6c8a980f 25#include "wx/ctrlsub.h" // the base class
8d99be5f
VZ
26
27// ----------------------------------------------------------------------------
28// global data
29// ----------------------------------------------------------------------------
30
31WXDLLEXPORT_DATA(extern const wxChar*) wxChoiceNameStr;
32
33// ----------------------------------------------------------------------------
34// wxChoice allows to select one of a non-modifiable list of strings
35// ----------------------------------------------------------------------------
36
6c8a980f 37class WXDLLEXPORT wxChoiceBase : public wxControlWithItems
8d99be5f
VZ
38{
39public:
6c8a980f 40 // all generic methods are in wxControlWithItems
799ea011 41 virtual ~wxChoiceBase();
8d99be5f 42
6c8a980f
VZ
43 // single selection logic
44 virtual void SetSelection(int n) = 0;
45 virtual bool SetStringSelection(const wxString& s);
8d99be5f 46
6c8a980f
VZ
47 // don't override this
48 virtual void Select(int n) { SetSelection(n); }
8d99be5f
VZ
49
50 // set/get the number of columns in the control (as they're not supporte on
51 // most platforms, they do nothing by default)
52 virtual void SetColumns(int WXUNUSED(n) = 1 ) { }
53 virtual int GetColumns() const { return 1 ; }
54
6c8a980f
VZ
55 // emulate selecting the item event.GetInt()
56 void Command(wxCommandEvent& event);
8d99be5f
VZ
57};
58
59// ----------------------------------------------------------------------------
60// include the platform-dependent class definition
61// ----------------------------------------------------------------------------
62
926592a8
VS
63#if defined(__WXUNIVERSAL__)
64 #include "wx/univ/choice.h"
65#elif defined(__WXMSW__)
8d99be5f 66 #include "wx/msw/choice.h"
2049ba38 67#elif defined(__WXMOTIF__)
8d99be5f 68 #include "wx/motif/choice.h"
2049ba38 69#elif defined(__WXGTK__)
8d99be5f 70 #include "wx/gtk/choice.h"
34138703 71#elif defined(__WXMAC__)
8d99be5f 72 #include "wx/mac/choice.h"
e64df9bc
DE
73#elif defined(__WXCOCOA__)
74 #include "wx/cocoa/choice.h"
1777b9bb
DW
75#elif defined(__WXPM__)
76 #include "wx/os2/choice.h"
c801d85f
KB
77#endif
78
1e6feb95
VZ
79#endif // wxUSE_CHOICE
80
c801d85f 81#endif
34138703 82 // _WX_CHOICE_H_BASE_