// Checkbox item (single checkbox)
class WXDLLEXPORT wxBitmap;
-class WXDLLEXPORT wxCheckBox: public wxControl
+class WXDLLEXPORT wxCheckBox: public wxCheckBoxBase
{
DECLARE_DYNAMIC_CLASS(wxCheckBox)
virtual void Append(const wxString& item);
virtual void Append(const wxString& item, void *clientData);
virtual void Set(int n, const wxString* choices, void **clientData = NULL);
+ void Set(const wxArrayString& items, void **clientData = NULL)
+ { DoSetItems(items, clientData); }
virtual int FindString(const wxString& s) const ;
virtual void Clear();
virtual void SetSelection(int n, bool select = TRUE);
virtual void SetFirstItem(const wxString& s) ;
virtual void InsertItems(int nItems, const wxString items[], int pos);
-
+ void InsertItems(const wxArrayString& items, int pos)
+ { DoInsertItems(items, pos); }
+
virtual wxString GetStringSelection() const ;
virtual bool SetStringSelection(const wxString& s, bool flag = TRUE);
virtual int Number() const ;
// List box item
class WXDLLEXPORT wxBitmap ;
-class WXDLLEXPORT wxRadioBox : public wxControl
+class WXDLLEXPORT wxRadioBox : public wxControl, public wxRadioBoxBase
{
DECLARE_DYNAMIC_CLASS(wxRadioBox)
int FindString(const wxString& s) const;
void SetSelection(int N);
int GetSelection() const;
- wxString GetString(int N) const;
- void SetLabel(const wxString& label) { wxControl::SetLabel(label); };
- void SetLabel(int item, const wxString& label) ;
- wxString GetLabel(int item) const;
- wxString GetLabel() const { return wxControl::GetLabel(); };
+ void SetString(int item, const wxString& label) ;
+ wxString GetString(int item) const;
virtual bool Enable(bool enable = TRUE);
void Enable(int item, bool enable);
void Show(int item, bool show) ;
virtual int GetCount() const { return m_noItems; } ;
void Command(wxCommandEvent& event);
+ int GetColumnCount() const;
+ int GetRowCount() const;
+
int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
m_labelWidget = (WXWidget) 0;
}
-wxString wxRadioBox::GetLabel(int item) const
-{
- if (item < 0 || item >= m_noItems)
- return wxEmptyString;
-
- Widget widget = (Widget) m_radioButtons[item];
- XmString text;
- char *s;
- XtVaGetValues (widget,
- XmNlabelString, &text,
- NULL);
-
- if (XmStringGetLtoR (text, XmSTRING_DEFAULT_CHARSET, &s))
- {
- // Should we free 'text'???
- XmStringFree(text);
- wxString str(s);
- XtFree (s);
- return str;
- }
- else
- {
- XmStringFree(text);
- return wxEmptyString;
- }
-}
-
-void wxRadioBox::SetLabel(int item, const wxString& label)
+void wxRadioBox::SetString(int item, const wxString& label)
{
if (item < 0 || item >= m_noItems)
return;
// Please note that this is all we can do: removing the label
// if switching to unshow state. However, when switching
- // to the on state, it's the prog. resp. to call SetLabel(item,...)
+ // to the on state, it's the prog. resp. to call SetString(item,...)
// after this call!!
if (!show)
- wxRadioBox::SetLabel (n, " ");
+ wxRadioBox::SetString (n, " ");
}
// For single selection items only
}
}
+static int CalcOtherDim( int items, int dim )
+{
+ return items / dim + ( items % dim ? 1 : 0 );
+}
+
+int wxRadioBox::GetRowCount() const
+{
+ return m_windowStyle & wxRA_SPECIFY_ROWS ? m_noRowsOrCols
+ : CalcOtherDim( GetCount(), m_noRowsOrCols );
+}
+
+int wxRadioBox::GetColumnCount() const
+{
+ return m_windowStyle & wxRA_SPECIFY_COLS ? m_noRowsOrCols
+ : CalcOtherDim( GetCount(), m_noRowsOrCols );
+}
+
void wxRadioBoxCallback (Widget w, XtPointer clientData,
XmToggleButtonCallbackStruct * cbs)
{