]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/combobox.h
more tweaks for release
[wxWidgets.git] / include / wx / os2 / combobox.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: combobox.h
3// Purpose: wxComboBox class
37f214d5 4// Author: David Webster
0e320a79 5// Modified by:
37f214d5 6// Created: 10/13/99
0e320a79 7// RCS-ID: $Id$
37f214d5
DW
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COMBOBOX_H_
13#define _WX_COMBOBOX_H_
14
0e320a79
DW
15#include "wx/choice.h"
16
37f214d5
DW
17#if wxUSE_COMBOBOX
18
0e320a79
DW
19WXDLLEXPORT_DATA(extern const char*) wxComboBoxNameStr;
20WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
21
22// Combobox item
23class WXDLLEXPORT wxComboBox: public wxChoice
24{
25 DECLARE_DYNAMIC_CLASS(wxComboBox)
26
27 public:
28 inline wxComboBox() {}
29
30 inline wxComboBox(wxWindow *parent, wxWindowID id,
31 const wxString& value = wxEmptyString,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 int n = 0, const wxString choices[] = NULL,
35 long style = 0,
57c4d796
DW
36#if wxUSE_VALIDATORS
37# if defined(__VISAGECPP__)
38 const wxValidator* validator = wxDefaultValidator,
39# else
0e320a79 40 const wxValidator& validator = wxDefaultValidator,
57c4d796
DW
41# endif
42#endif
0e320a79
DW
43 const wxString& name = wxComboBoxNameStr)
44 {
45 Create(parent, id, value, pos, size, n, choices, style, validator, name);
46 }
47
48 bool Create(wxWindow *parent, wxWindowID id,
49 const wxString& value = wxEmptyString,
50 const wxPoint& pos = wxDefaultPosition,
51 const wxSize& size = wxDefaultSize,
52 int n = 0, const wxString choices[] = NULL,
53 long style = 0,
57c4d796
DW
54#if wxUSE_VALIDATORS
55# if defined(__VISAGECPP__)
56 const wxValidator* validator = wxDefaultValidator,
57# else
0e320a79 58 const wxValidator& validator = wxDefaultValidator,
57c4d796
DW
59# endif
60#endif
0e320a79
DW
61 const wxString& name = wxComboBoxNameStr);
62
37f214d5
DW
63 // List functions: see wxChoice
64
65 wxString GetValue() const { return GetLabel(); }
66 virtual void SetValue(const wxString& value);
67
68 // Clipboard operations
69 virtual void Copy();
70 virtual void Cut();
71 virtual void Paste();
72 virtual void SetInsertionPoint(long pos);
73 virtual void SetInsertionPointEnd();
74 virtual long GetInsertionPoint() const;
75 virtual long GetLastPosition() const;
76 virtual void Replace(long from, long to, const wxString& value);
77 virtual void Remove(long from, long to);
78 virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
79 virtual void SetSelection(long from, long to);
80 virtual void SetEditable(bool editable);
81
82 virtual bool OS2Command(WXUINT param, WXWORD id);
0e320a79 83
37f214d5
DW
84protected:
85 virtual void DoSetSize(int x, int y,
86 int width, int height,
87 int sizeFlags = wxSIZE_AUTO);
0e320a79
DW
88};
89
37f214d5 90#endif // wxUSE_COMBOBOX
0e320a79
DW
91#endif
92 // _WX_COMBOBOX_H_