// Name: src/palmos/radiobut.cpp
// Purpose: wxRadioButton
// Author: William Osborne - minimal working wxPalmOS port
-// Modified by:
+// Modified by: Wlodzimierz ABX Skiba - native wxRadioButton implementation
// Created: 10/13/04
// RCS-ID: $Id$
-// Copyright: (c) William Osborne
+// Copyright: (c) William Osborne, Wlodzimierz Skiba
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/dcscreen.h"
#endif
-#include "wx/palmos/private.h"
-
// ============================================================================
// wxRadioButton implementation
// ============================================================================
const wxValidator& validator,
const wxString& name)
{
- return false;
+ wxControl::PalmCreateControl(pushButtonCtl, parent, id, label, pos, size);
+ return true;
}
// ----------------------------------------------------------------------------
void wxRadioButton::SetValue(bool value)
{
+ SetBoolValue(value);
}
bool wxRadioButton::GetValue() const
{
- return false;
+ return GetBoolValue();
}
// ----------------------------------------------------------------------------
{
}
-bool wxRadioButton::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
-{
- return false;
-}
-
// ----------------------------------------------------------------------------
// wxRadioButton geometry
// ----------------------------------------------------------------------------