// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "radiobut.h"
#endif
#ifdef __VMS__
#pragma message disable nosimpint
#endif
-#include <Xm/Label.h>
-#include <Xm/LabelG.h>
#include <Xm/ToggleB.h>
#include <Xm/ToggleBG.h>
-#include <Xm/RowColumn.h>
-#include <Xm/Form.h>
#ifdef __VMS__
#pragma message enable nosimpint
#endif
const wxValidator& validator,
const wxString& name)
{
- SetName(name);
- SetValidator(validator);
- m_backgroundColour = parent->GetBackgroundColour();
- m_foregroundColour = parent->GetForegroundColour();
- m_font = parent->GetFont();
-
- if (parent) parent->AddChild(this);
-
- if ( id == -1 )
- m_windowId = (int)NewControlId();
- else
- m_windowId = id;
-
- m_windowStyle = style ;
+ if( !CreateControl( parent, id, pos, size, style, validator, name ) )
+ return false;
Widget parentWidget = (Widget) parent->GetClientWidget();
XmNindicatorType, XmONE_OF_MANY, // diamond-shape
NULL);
- XtAddCallback (radioButtonWidget, XmNvalueChangedCallback, (XtCallbackProc) wxRadioButtonCallback,
- (XtPointer) this);
+ XtAddCallback (radioButtonWidget,
+ XmNvalueChangedCallback,
+ (XtCallbackProc)wxRadioButtonCallback,
+ (XtPointer)this);
m_mainWidget = (WXWidget) radioButtonWidget;
XtManageChild (radioButtonWidget);
- AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
+ AttachWidget (parent, m_mainWidget, (WXWidget) NULL,
+ pos.x, pos.y, size.x, size.y);
ChangeBackgroundColour();
ProcessCommand (event);
}
-void wxRadioButton::ChangeFont(bool keepOriginalSize)
-{
- wxWindow::ChangeFont(keepOriginalSize);
-}
-
void wxRadioButton::ChangeBackgroundColour()
{
wxWindow::ChangeBackgroundColour();
NULL);
}
-void wxRadioButton::ChangeForegroundColour()
-{
- wxWindow::ChangeForegroundColour();
-}
-
void wxRadioButtonCallback (Widget w, XtPointer clientData,
XmToggleButtonCallbackStruct * cbs)
{