]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/combobox.h
wxStrnicmp() function is not defined under windows, so I've provided a workaround...
[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,
36 const wxValidator& validator = wxDefaultValidator,
37 const wxString& name = wxComboBoxNameStr)
38 {
39 Create(parent, id, value, pos, size, n, choices, style, validator, name);
40 }
41
42 bool Create(wxWindow *parent, wxWindowID id,
43 const wxString& value = wxEmptyString,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize,
46 int n = 0, const wxString choices[] = NULL,
47 long style = 0,
48 const wxValidator& validator = wxDefaultValidator,
49 const wxString& name = wxComboBoxNameStr);
50
37f214d5
DW
51 // List functions: see wxChoice
52
53 wxString GetValue() const { return GetLabel(); }
54 virtual void SetValue(const wxString& value);
55
56 // Clipboard operations
57 virtual void Copy();
58 virtual void Cut();
59 virtual void Paste();
60 virtual void SetInsertionPoint(long pos);
61 virtual void SetInsertionPointEnd();
62 virtual long GetInsertionPoint() const;
63 virtual long GetLastPosition() const;
64 virtual void Replace(long from, long to, const wxString& value);
65 virtual void Remove(long from, long to);
66 virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
67 virtual void SetSelection(long from, long to);
68 virtual void SetEditable(bool editable);
69
70 virtual bool OS2Command(WXUINT param, WXWORD id);
0e320a79 71
37f214d5
DW
72protected:
73 virtual void DoSetSize(int x, int y,
74 int width, int height,
75 int sizeFlags = wxSIZE_AUTO);
0e320a79
DW
76};
77
37f214d5 78#endif // wxUSE_COMBOBOX
0e320a79
DW
79#endif
80 // _WX_COMBOBOX_H_