]> git.saurik.com Git - wxWidgets.git/blame - include/wx/listbox.h
restored previously removed inline
[wxWidgets.git] / include / wx / listbox.h
CommitLineData
2ee3ee1b
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/listbox.h
3// Purpose: wxListBox class interface
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 22.10.99
7// RCS-ID: $Id$
8// Copyright: (c) wxWindows team
6c8a980f 9// Licence: wxWindows licence
2ee3ee1b
VZ
10///////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_LISTBOX_H_BASE_
13#define _WX_LISTBOX_H_BASE_
c801d85f 14
2ee3ee1b
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19#ifdef __GNUG__
20 #pragma interface "listboxbase.h"
21#endif
22
23#include "wx/defs.h"
24
25#if wxUSE_LISTBOX
26
6c8a980f 27#include "wx/ctrlsub.h" // base class
2ee3ee1b
VZ
28
29// forward declarations are enough here
30class WXDLLEXPORT wxArrayInt;
31class WXDLLEXPORT wxArrayString;
32
33// ----------------------------------------------------------------------------
34// global data
35// ----------------------------------------------------------------------------
36
37WXDLLEXPORT_DATA(extern const wxChar*) wxListBoxNameStr;
38
39// ----------------------------------------------------------------------------
40// wxListBox interface is defined by the class wxListBoxBase
41// ----------------------------------------------------------------------------
42
6c8a980f 43class WXDLLEXPORT wxListBoxBase : public wxControlWithItems
2ee3ee1b
VZ
44{
45public:
6c8a980f
VZ
46 // all generic methods are in wxControlWithItems, except for the following
47 // ones which are not yet implemented by wxChoice/wxCombobox
03e11df5
GD
48#ifdef __WXMAC_X__
49 virtual ~wxListBoxBase() {} // Added min for Mac X
50#endif
2ee3ee1b
VZ
51
52 void Insert(const wxString& item, int pos)
53 { DoInsert(item, pos); }
54 void Insert(const wxString& item, int pos, void *clientData)
55 { DoInsert(item, pos); SetClientData(pos, clientData); }
56 void Insert(const wxString& item, int pos, wxClientData *clientData)
57 { DoInsert(item, pos); SetClientObject(pos, clientData); }
58
59 void InsertItems(int nItems, const wxString *items, int pos);
60 void InsertItems(const wxArrayString& items, int pos)
61 { DoInsertItems(items, pos); }
62
63 void Set(int n, const wxString* items, void **clientData = NULL);
64 void Set(const wxArrayString& items, void **clientData = NULL)
65 { DoSetItems(items, clientData); }
66
6c8a980f 67 // multiple selection logic
2ee3ee1b
VZ
68 virtual bool IsSelected(int n) const = 0;
69 virtual void SetSelection(int n, bool select = TRUE) = 0;
6c8a980f 70 virtual void Select(int n) { SetSelection(n, TRUE); }
2ee3ee1b
VZ
71 void Deselect(int n) { SetSelection(n, FALSE); }
72
6c8a980f 73 virtual bool SetStringSelection(const wxString& s, bool select = TRUE);
2ee3ee1b 74
6c8a980f
VZ
75 // works for single as well as multiple selection listboxes (unlike
76 // GetSelection which only works for listboxes with single selection)
77 virtual int GetSelections(wxArrayInt& aSelections) const = 0;
2ee3ee1b
VZ
78
79 // Set the specified item at the first visible item or scroll to max
80 // range.
81 void SetFirstItem(int n) { DoSetFirstItem(n); }
82 void SetFirstItem(const wxString& s);
83
6c8a980f
VZ
84 // emulate selecting or deselecting the item event.GetInt() (depending on
85 // event.GetExtraLong())
86 void Command(wxCommandEvent& event);
2ee3ee1b
VZ
87
88 // compatibility - these functions are deprecated, use the new ones
89 // instead
90 bool Selected(int n) const { return IsSelected(n); }
2ee3ee1b
VZ
91
92protected:
93 // NB: due to wxGTK implementation details, DoInsert() is implemented
94 // using DoInsertItems() and not the other way round
95 void DoInsert(const wxString& item, int pos)
96 { InsertItems(1, &item, pos); }
97
98 // to be implemented in derived classes
2ee3ee1b
VZ
99 virtual void DoInsertItems(const wxArrayString& items, int pos) = 0;
100 virtual void DoSetItems(const wxArrayString& items, void **clientData) = 0;
101
102 virtual void DoSetFirstItem(int n) = 0;
2ee3ee1b
VZ
103};
104
105// ----------------------------------------------------------------------------
106// include the platform-specific class declaration
107// ----------------------------------------------------------------------------
108
2049ba38 109#if defined(__WXMSW__)
2ee3ee1b 110 #include "wx/msw/listbox.h"
2049ba38 111#elif defined(__WXMOTIF__)
2ee3ee1b 112 #include "wx/motif/listbox.h"
2049ba38 113#elif defined(__WXGTK__)
2ee3ee1b 114 #include "wx/gtk/listbox.h"
b4e76e0d 115#elif defined(__WXQT__)
2ee3ee1b 116 #include "wx/qt/listbox.h"
34138703 117#elif defined(__WXMAC__)
2ee3ee1b 118 #include "wx/mac/listbox.h"
1777b9bb 119#elif defined(__WXPM__)
2ee3ee1b 120 #include "wx/os2/listbox.h"
34138703 121#elif defined(__WXSTUBS__)
2ee3ee1b 122 #include "wx/stubs/listbox.h"
c801d85f
KB
123#endif
124
2ee3ee1b
VZ
125#endif // wxUSE_LISTBOX
126
c801d85f 127#endif
34138703 128 // _WX_LISTBOX_H_BASE_