]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/radiobox.h
More OS/2 Updates
[wxWidgets.git] / include / wx / os2 / radiobox.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobox.h
3// Purpose: wxRadioBox class
cdf1e714 4// Author: David Webster
0e320a79 5// Modified by:
cdf1e714 6// Created: 10/12/99
0e320a79 7// RCS-ID: $Id$
cdf1e714
DW
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_RADIOBOX_H_
13#define _WX_RADIOBOX_H_
14
0e320a79
DW
15#include "wx/control.h"
16
54da4255 17WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr;
0e320a79
DW
18
19// List box item
54da4255 20class WXDLLEXPORT wxBitmap ;
0e320a79 21
54da4255 22class WXDLLEXPORT wxRadioBox: public wxControl
0e320a79 23{
54da4255 24 DECLARE_DYNAMIC_CLASS(wxRadioBox)
0e320a79 25public:
54da4255
DW
26 wxRadioBox();
27
28 inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
29 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
30 int n = 0, const wxString choices[] = NULL,
31 int majorDim = 0, long style = wxRA_HORIZONTAL,
57c4d796 32#if wxUSE_VALIDATORS
54da4255 33 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr)
57c4d796 34#endif
54da4255
DW
35 {
36 Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name);
37 }
38
39 ~wxRadioBox();
40
41 bool Create(wxWindow *parent, wxWindowID id, const wxString& title,
42 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
43 int n = 0, const wxString choices[] = NULL,
44 int majorDim = 0, long style = wxRA_HORIZONTAL,
57c4d796 45#if wxUSE_VALIDATORS
54da4255 46 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr);
57c4d796 47#endif
54da4255 48
cdf1e714 49 virtual bool OS2Command(WXUINT param, WXWORD id);
11e59d47
DW
50 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
51 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
cdf1e714 52
54da4255
DW
53 int FindString(const wxString& s) const;
54 void SetSelection(int N);
55 int GetSelection() const;
56 wxString GetString(int N) const;
cdf1e714 57
54da4255
DW
58 void GetSize(int *x, int *y) const;
59 void GetPosition(int *x, int *y) const;
cdf1e714 60
11e59d47
DW
61 void SetLabel(int item, const wxString& label);
62 void SetLabel(int item, wxBitmap *bitmap);
54da4255
DW
63 wxString GetLabel(int item) const;
64 bool Show(bool show);
65 void SetFocus();
66 bool Enable(bool enable);
67 void Enable(int item, bool enable);
68 void Show(int item, bool show) ;
69 inline void SetLabelFont(const wxFont& WXUNUSED(font)) {};
70 inline void SetButtonFont(const wxFont& font) { SetFont(font); }
71
72 virtual wxString GetStringSelection() const;
73 virtual bool SetStringSelection(const wxString& s);
74 inline virtual int Number() const { return m_noItems; } ;
75 void Command(wxCommandEvent& event);
76
77 inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
78 inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
0e320a79 79
11e59d47
DW
80 // implementation only from now on
81 // -------------------------------
82
83 WXHWND *GetRadioButtons() const { return m_radioButtons; }
84 bool ContainsHWND(WXHWND hWnd) const;
85 void SendNotificationEvent();
86
87 // get the number of buttons per column/row
88 int GetNumVer() const;
89 int GetNumHor() const;
90
91#if WXWIN_COMPATIBILITY
92 wxRadioBox(wxWindow *parent, wxFunction func, const char *title,
93 int x = -1, int y = -1, int width = -1, int height = -1,
94 int n = 0, char **choices = NULL,
95 int majorDim = 0, long style = wxRA_HORIZONTAL, const char *name = wxRadioBoxNameStr);
96#endif // WXWIN_COMPATIBILITY
97
0e320a79 98protected:
cdf1e714
DW
99 void SubclassRadioButton(WXHWND hWndBtn);
100
54da4255 101 WXHWND * m_radioButtons;
54da4255 102 int m_majorDim ;
cdf1e714
DW
103 int * m_radioWidth; // for bitmaps
104 int * m_radioHeight;
105
54da4255
DW
106 int m_noItems;
107 int m_noRowsOrCols;
108 int m_selectedButton;
0e320a79 109
cdf1e714
DW
110 virtual void DoSetSize(int x, int y,
111 int width, int height,
112 int sizeFlags = wxSIZE_AUTO);
11e59d47
DW
113private:
114 virtual void SetLabel(const wxString& label)
115 { wxWindowBase::SetLabel(label); }
116 wxString GetLabel() const
117 { return(wxWindowBase::GetLabel()); }
0e320a79
DW
118};
119
120#endif
121 // _WX_RADIOBOX_H_