projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
removed unnecessary return in a void function
[wxWidgets.git]
/
include
/
wx
/
gtk
/
checkbox.h
diff --git
a/include/wx/gtk/checkbox.h
b/include/wx/gtk/checkbox.h
index d3cb7dc59e1e05ab1c6c875f7ff4719fce34e164..c4639026ff131e77d54d3d88a3c66b93b1271263 100644
(file)
--- a/
include/wx/gtk/checkbox.h
+++ b/
include/wx/gtk/checkbox.h
@@
-4,21
+4,17
@@
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
-// Licence: wxWi
dget
s licence
+// Licence: wxWi
ndow
s licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __GTKCHECKBOXH__
#define __GTKCHECKBOXH__
/////////////////////////////////////////////////////////////////////////////
#ifndef __GTKCHECKBOXH__
#define __GTKCHECKBOXH__
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface
-#endif
-
// ----------------------------------------------------------------------------
// wxCheckBox
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// wxCheckBox
// ----------------------------------------------------------------------------
-class wxCheckBox : public wxCheckBoxBase
+class
WXDLLIMPEXP_CORE
wxCheckBox : public wxCheckBoxBase
{
public:
wxCheckBox();
{
public:
wxCheckBox();
@@
-47,14
+43,10
@@
public:
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
-
+
// implementation
// --------------
// implementation
// --------------
- void ApplyWidgetStyle();
- bool IsOwnGtkWindow( GdkWindow *window );
- void OnInternalIdle();
-
GtkWidget *m_widgetCheckbox;
GtkWidget *m_widgetLabel;
GtkWidget *m_widgetCheckbox;
GtkWidget *m_widgetLabel;
@@
-62,6
+54,11
@@
public:
protected:
virtual wxSize DoGetBestSize() const;
protected:
virtual wxSize DoGetBestSize() const;
+ virtual void DoApplyWidgetStyle(GtkRcStyle *style);
+ virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
+
+ void DoSet3StateValue(wxCheckBoxState state);
+ wxCheckBoxState DoGet3StateValue() const;
private:
DECLARE_DYNAMIC_CLASS(wxCheckBox)
private:
DECLARE_DYNAMIC_CLASS(wxCheckBox)