/////////////////////////////////////////////////////////////////////////////
-// Name: palmos/radiobut.cpp
+// Name: src/palmos/radiobut.cpp
// Purpose: wxRadioButton
-// Author: William Osborne
-// Modified by:
+// Author: William Osborne - minimal working wxPalmOS port
+// Modified by: Wlodzimierz ABX Skiba - native wxRadioButton implementation
// Created: 10/13/04
-// RCS-ID: $Id:
-// Copyright: (c) William Osborne
+// RCS-ID: $Id$
+// Copyright: (c) William Osborne, Wlodzimierz Skiba
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/dcscreen.h"
#endif
-#include "wx/palmos/private.h"
-
// ============================================================================
// wxRadioButton implementation
// ============================================================================
wxFLAGS_MEMBER(wxBORDER_RAISED)
wxFLAGS_MEMBER(wxBORDER_STATIC)
wxFLAGS_MEMBER(wxBORDER_NONE)
-
+
// old style border flags
wxFLAGS_MEMBER(wxSIMPLE_BORDER)
wxFLAGS_MEMBER(wxSUNKEN_BORDER)
wxBEGIN_HANDLERS_TABLE(wxRadioButton)
wxEND_HANDLERS_TABLE()
-wxCONSTRUCTOR_6( wxRadioButton , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
+wxCONSTRUCTOR_6( wxRadioButton , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
#else
IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
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
// ----------------------------------------------------------------------------