projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Don't link with media lib with USE_MEDIA==0.
[wxWidgets.git]
/
src
/
palmos
/
checkbox.cpp
diff --git
a/src/palmos/checkbox.cpp
b/src/palmos/checkbox.cpp
index 77f06f5409afb04451ae43f5807a6a398dcc32d2..75e98f33bed2378961b0df8b8b100c6128dafcf3 100644
(file)
--- a/
src/palmos/checkbox.cpp
+++ b/
src/palmos/checkbox.cpp
@@
-17,10
+17,6
@@
// headers
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "checkbox.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
@@
-37,6
+33,8
@@
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#endif
+#include <Control.h>
+
// ============================================================================
// implementation
// ============================================================================
// ============================================================================
// implementation
// ============================================================================
@@
-106,8
+104,10
@@
bool wxCheckBox::Create(wxWindow *parent,
const wxValidator& validator,
const wxString& name)
{
const wxValidator& validator,
const wxString& name)
{
- wxControl::PalmCreateControl(checkboxCtl, parent, id, label, pos, size);
- return true;
+ if(!wxControl::Create(parent, id, pos, size, style, validator, name))
+ return false;
+
+ return wxControl::PalmCreateControl(checkboxCtl, label, pos, size);
}
wxSize wxCheckBox::DoGetBestSize() const
}
wxSize wxCheckBox::DoGetBestSize() const
@@
-117,11
+117,20
@@
wxSize wxCheckBox::DoGetBestSize() const
void wxCheckBox::SetValue(bool val)
{
void wxCheckBox::SetValue(bool val)
{
+ SetBoolValue(val);
}
bool wxCheckBox::GetValue() const
{
}
bool wxCheckBox::GetValue() const
{
- return false;
+ return GetBoolValue();
+}
+
+bool wxCheckBox::SendClickEvent()
+{
+ wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, GetId());
+ event.SetInt(GetValue());
+ event.SetEventObject(this);
+ return ProcessCommand(event);
}
void wxCheckBox::Command(wxCommandEvent& event)
}
void wxCheckBox::Command(wxCommandEvent& event)