projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix m_sizerPage memory leak for the wizards not using sizers (replaces patch 1708331...
[wxWidgets.git]
/
include
/
wx
/
palmos
/
radiobut.h
diff --git
a/include/wx/palmos/radiobut.h
b/include/wx/palmos/radiobut.h
index 90ffc63c18b57922acfaf41ffc3fa7893161fc23..25c36d35e8e525b61b93cdabb4f184559cd62f6d 100644
(file)
--- a/
include/wx/palmos/radiobut.h
+++ b/
include/wx/palmos/radiobut.h
@@
-12,10
+12,6
@@
#ifndef _WX_RADIOBUT_H_
#define _WX_RADIOBUT_H_
#ifndef _WX_RADIOBUT_H_
#define _WX_RADIOBUT_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "radiobut.h"
-#endif
-
class WXDLLEXPORT wxRadioButton: public wxControl
{
public:
class WXDLLEXPORT wxRadioButton: public wxControl
{
public:
@@
-51,9
+47,10
@@
public:
// implementation only from now on
virtual void Command(wxCommandEvent& event);
// implementation only from now on
virtual void Command(wxCommandEvent& event);
- virtual void ApplyParentThemeBackground(const wxColour& bg)
- { SetBackgroundColour(bg); }
+ void SetGroup(uint8_t group);
+ // send a notification event, return true if processed
+ bool SendClickEvent();
protected:
virtual wxSize DoGetBestSize() const;
protected:
virtual wxSize DoGetBestSize() const;
@@
-62,6
+59,10
@@
private:
// common part of all ctors
void Init();
// common part of all ctors
void Init();
+ uint8_t m_groupID;
+
+ // pushButtonCtl or checkboxCtl
+ int m_radioStyle;
DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton)
};
DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton)
};