]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/listbox.h
Use an enum for the colour/string conversion flags
[wxWidgets.git] / include / wx / motif / listbox.h
CommitLineData
9b6dbb09 1/////////////////////////////////////////////////////////////////////////////
853dcc57 2// Name: wx/motif/listbox.h
9b6dbb09
JS
3// Purpose: wxListBox class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
853dcc57 9// Licence: wxWindows licence
9b6dbb09
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_LISTBOX_H_
13#define _WX_LISTBOX_H_
14
6adaedf0 15#include "wx/ctrlsub.h"
99ab3e3f 16#include "wx/clntdata.h"
9b6dbb09 17
9b6dbb09 18// forward decl for GetSelections()
4f7d425f 19class WXDLLIMPEXP_FWD_BASE wxArrayInt;
9b6dbb09 20
9b6dbb09 21// List box item
53a2db12 22class WXDLLIMPEXP_CORE wxListBox: public wxListBoxBase
9b6dbb09 23{
83df96d6 24 DECLARE_DYNAMIC_CLASS(wxListBox)
853dcc57 25
bfc6fde4
VZ
26public:
27 wxListBox();
28 wxListBox(wxWindow *parent, wxWindowID id,
83df96d6
JS
29 const wxPoint& pos = wxDefaultPosition,
30 const wxSize& size = wxDefaultSize,
31 int n = 0, const wxString choices[] = NULL,
32 long style = 0,
33 const wxValidator& validator = wxDefaultValidator,
99ab3e3f 34 const wxString& name = wxListBoxNameStr)
83df96d6
JS
35 {
36 Create(parent, id, pos, size, n, choices, style, validator, name);
37 }
853dcc57 38
584ad2a3
MB
39 wxListBox(wxWindow *parent, wxWindowID id,
40 const wxPoint& pos,
41 const wxSize& size,
42 const wxArrayString& choices,
43 long style = 0,
44 const wxValidator& validator = wxDefaultValidator,
45 const wxString& name = wxListBoxNameStr)
46 {
47 Create(parent, id, pos, size, choices, style, validator, name);
48 }
853dcc57 49
bfc6fde4 50 bool Create(wxWindow *parent, wxWindowID id,
83df96d6
JS
51 const wxPoint& pos = wxDefaultPosition,
52 const wxSize& size = wxDefaultSize,
53 int n = 0, const wxString choices[] = NULL,
54 long style = 0,
55 const wxValidator& validator = wxDefaultValidator,
56 const wxString& name = wxListBoxNameStr);
853dcc57 57
584ad2a3
MB
58 bool Create(wxWindow *parent, wxWindowID id,
59 const wxPoint& pos,
60 const wxSize& size,
61 const wxArrayString& choices,
62 long style = 0,
63 const wxValidator& validator = wxDefaultValidator,
64 const wxString& name = wxListBoxNameStr);
853dcc57 65
ef41d80c 66 // implementation of wxControlWithItems
aa61d352 67 virtual unsigned int GetCount() const;
a236aa20
VZ
68 virtual int DoInsertItems(const wxArrayStringsAdapter& items,
69 unsigned int pos,
70 void **clientData, wxClientDataType type);
ef41d80c 71 virtual int GetSelection() const;
a236aa20 72 virtual void DoDeleteOneItem(unsigned int n);
853dcc57 73 virtual int FindString(const wxString& s, bool bCase = false) const;
a236aa20 74 virtual void DoClear();
aa61d352
VZ
75 virtual void SetString(unsigned int n, const wxString& s);
76 virtual wxString GetString(unsigned int n) const;
ef41d80c
MB
77
78 // implementation of wxListBoxbase
c6179a84 79 virtual void DoSetSelection(int n, bool select);
6adaedf0 80 virtual void DoSetFirstItem(int n);
bfc6fde4 81 virtual int GetSelections(wxArrayInt& aSelections) const;
ef41d80c 82 virtual bool IsSelected(int n) const;
18128cbb 83
ef41d80c 84 // For single or multiple choice list item
bfc6fde4 85 void Command(wxCommandEvent& event);
853dcc57 86
bfc6fde4 87 // Implementation
bfc6fde4
VZ
88 virtual void ChangeBackgroundColour();
89 virtual void ChangeForegroundColour();
90 WXWidget GetTopWidget() const;
ef41d80c
MB
91
92#if wxUSE_CHECKLISTBOX
a236aa20 93 virtual void DoToggleItem(int WXUNUSED(item), int WXUNUSED(x)) {}
ef41d80c 94#endif
f97c9854 95protected:
e1aae528
MB
96 virtual wxSize DoGetBestSize() const;
97
aa61d352 98 unsigned int m_noItems;
853dcc57 99
99ab3e3f
MB
100private:
101 void SetSelectionPolicy();
9b6dbb09
JS
102};
103
104#endif
83df96d6 105// _WX_LISTBOX_H_