]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/listbox.h
range with m_minimumPaneSize and m_maximumPaneSize
[wxWidgets.git] / include / wx / motif / listbox.h
CommitLineData
9b6dbb09
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: listbox.h
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
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_LISTBOX_H_
13#define _WX_LISTBOX_H_
14
15#ifdef __GNUG__
16#pragma interface "listbox.h"
17#endif
18
19#include "wx/control.h"
20
21WXDLLEXPORT_DATA(extern const char*) wxListBoxNameStr;
22
23// forward decl for GetSelections()
24class WXDLLEXPORT wxArrayInt;
25
26WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
27
28// List box item
29class WXDLLEXPORT wxListBox: public wxControl
30{
31 DECLARE_DYNAMIC_CLASS(wxListBox)
32 public:
33
34 wxListBox();
35 inline wxListBox(wxWindow *parent, wxWindowID id,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 int n = 0, const wxString choices[] = NULL,
39 long style = 0,
40 const wxValidator& validator = wxDefaultValidator,
f97c9854
JS
41 const wxString& name = wxListBoxNameStr):
42 m_clientDataList(wxKEY_INTEGER)
9b6dbb09
JS
43 {
44 Create(parent, id, pos, size, n, choices, style, validator, name);
45 }
46
47 bool Create(wxWindow *parent, wxWindowID id,
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize,
50 int n = 0, const wxString choices[] = NULL,
51 long style = 0,
52 const wxValidator& validator = wxDefaultValidator,
53 const wxString& name = wxListBoxNameStr);
54
55 ~wxListBox();
56
57 virtual void Append(const wxString& item);
58 virtual void Append(const wxString& item, char *clientData);
59 virtual void Set(int n, const wxString* choices, char **clientData = NULL);
60 virtual int FindString(const wxString& s) const ;
61 virtual void Clear();
62 virtual void SetSelection(int n, bool select = TRUE);
63
64 virtual void Deselect(int n);
65
66 // For single choice list item only
67 virtual int GetSelection() const ;
68 virtual void Delete(int n);
69 virtual char *GetClientData(int n) const ;
70 virtual void SetClientData(int n, char *clientData);
71 virtual void SetString(int n, const wxString& s);
72
73 // For single or multiple choice list item
74 virtual int GetSelections(wxArrayInt& aSelections) const;
75 virtual bool Selected(int n) const ;
76 virtual wxString GetString(int n) const ;
4fabb575 77
9b6dbb09 78 virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
4fabb575
JS
79 virtual void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
80 { wxWindow::SetSize(rect, sizeFlags); }
81 virtual void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
9b6dbb09
JS
82
83 // Set the specified item at the first visible item
84 // or scroll to max range.
85 virtual void SetFirstItem(int n) ;
86 virtual void SetFirstItem(const wxString& s) ;
87
88 virtual void InsertItems(int nItems, const wxString items[], int pos);
89
90 virtual wxString GetStringSelection() const ;
91 virtual bool SetStringSelection(const wxString& s, bool flag = TRUE);
92 virtual int Number() const ;
93
94 void Command(wxCommandEvent& event);
95
0d57be45 96// Implementation
4b5f3fe6 97 virtual void ChangeFont(bool keepOriginalSize = TRUE);
0d57be45
JS
98 virtual void ChangeBackgroundColour();
99 virtual void ChangeForegroundColour();
89c7e962
JS
100 WXWidget GetTopWidget() const;
101
f97c9854 102protected:
9b6dbb09
JS
103 int m_noItems;
104 int m_selected;
f97c9854
JS
105
106 // List mapping positions->client data
107 wxList m_clientDataList;
9b6dbb09
JS
108};
109
110#endif
111 // _WX_LISTBOX_H_