#pragma implementation "radiobox.h"
#endif
+#ifdef __VMS
+#define XtDisplay XTDISPLAY
+#endif
+
+#include "wx/defs.h"
+
#include "wx/radiobox.h"
#include "wx/utils.h"
+#ifdef __VMS__
+#pragma message disable nosimpint
+#endif
#include <Xm/Label.h>
#include <Xm/LabelG.h>
#include <Xm/ToggleB.h>
#include <Xm/RowColumn.h>
#include <Xm/Form.h>
#include <Xm/Frame.h>
+#ifdef __VMS__
+#pragma message enable nosimpint
+#endif
-#include <wx/motif/private.h>
+#include "wx/motif/private.h"
void wxRadioBoxCallback (Widget w, XtPointer clientData,
XmToggleButtonCallbackStruct * cbs);
-#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
-#endif
// Radio box item
wxRadioBox::wxRadioBox()
m_radioButtonLabels = (wxString*) NULL;
m_backgroundColour = parent->GetBackgroundColour();
m_foregroundColour = parent->GetForegroundColour();
- m_windowFont = parent->GetFont();
+ m_font = parent->GetFont();
SetName(name);
SetValidator(val);
wxString label1(wxStripMenuCodes(title));
- XmString text = XmStringCreateSimple ((char*) (const char*) label1);
-
- Widget formWidget = XtVaCreateManagedWidget ((char*) (const char*) name,
+ Widget formWidget = XtVaCreateManagedWidget (name.c_str(),
xmFormWidgetClass, parentWidget,
XmNmarginHeight, 0,
XmNmarginWidth, 0,
m_formWidget = (WXWidget) formWidget;
- XmFontList fontList = (XmFontList) m_windowFont.GetFontList(1.0, XtDisplay(parentWidget));
+ XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, XtDisplay(parentWidget));
if (label1 != "")
{
- text = XmStringCreateSimple ((char*) (const char*) label1);
- Widget labelWidget = XtVaCreateManagedWidget ((char*) (const char*) label1,
+ wxXmString text(label1);
+ (void)XtVaCreateManagedWidget(label1.c_str(),
#if wxUSE_GADGETS
- style & wxCOLOURED ?
- xmLabelWidgetClass : xmLabelGadgetClass,
+ style & wxCOLOURED ? xmLabelWidgetClass
+ : xmLabelGadgetClass,
formWidget,
#else
xmLabelWidgetClass, formWidget,
#endif
XmNfontList, fontList,
- XmNlabelString, text,
+ XmNlabelString, text(),
NULL);
-
- XmStringFree (text);
}
Widget frameWidget = XtVaCreateManagedWidget ("frame",
Arg args[3];
- majorDim = (n + majorDim - 1) / majorDim;
+ m_majorDim = (n + m_majorDim - 1) / m_majorDim;
XtSetArg (args[0], XmNorientation, ((style & wxHORIZONTAL) == wxHORIZONTAL ?
XmHORIZONTAL : XmVERTICAL));
- XtSetArg (args[1], XmNnumColumns, majorDim);
+ XtSetArg (args[1], XmNnumColumns, m_majorDim);
Widget radioBoxWidget = XmCreateRadioBox (frameWidget, "radioBoxWidget", args, 2);
m_mainWidget = (WXWidget) radioBoxWidget;
XmNfontList, fontList,
NULL);
XtAddCallback ((Widget) m_radioButtons[i], XmNvalueChangedCallback, (XtCallbackProc) wxRadioBoxCallback,
- (XtCallbackProc) this);
-
+ (XtPointer) this);
}
SetSelection (0);
- m_windowFont = parent->GetFont();
+ m_font = parent->GetFont();
ChangeFont(FALSE);
// XtManageChild((Widget) m_formWidget);
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
{
wxWindow::ChangeFont(keepOriginalSize);
- XmFontList fontList = (XmFontList) m_windowFont.GetFontList(1.0, XtDisplay((Widget) GetTopWidget()));
+ XmFontList fontList = (XmFontList) m_font.GetFontList(1.0, XtDisplay((Widget) GetTopWidget()));
int i;
for (i = 0; i < m_noItems; i++)
}
}
+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)
{
wxRadioBox *item = (wxRadioBox *) clientData;
int sel = -1;
int i;
- for (i = 0; i < item->Number(); i++)
+ for (i = 0; i < item->GetCount(); i++)
if (item->GetRadioButtons() && ((Widget) (item->GetRadioButtons()[i]) == w))
sel = i;
item->SetSel(sel);