// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling, Julian Smart
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __GTKCONTROLH__
// wxControl
//-----------------------------------------------------------------------------
+// C-linkage function pointer types for GetDefaultAttributesFromGTKWidget
+extern "C" {
+ typedef GtkWidget* (*wxGtkWidgetNew_t)(void);
+ typedef GtkWidget* (*wxGtkWidgetNewFromStr_t)(const gchar*);
+ typedef GtkWidget* (*wxGtkWidgetNewFromAdj_t)(GtkAdjustment*);
+}
+
class wxControl : public wxControlBase
{
public:
// char (the one immediately after '&') into m_chAccel (TODO not yet)
virtual void SetLabel( const wxString &label );
virtual wxString GetLabel() const;
-
+
virtual wxVisualAttributes GetDefaultAttributes() const;
protected:
bool useBase = false,
int state = -1);
static wxVisualAttributes
- GetDefaultAttributesFromGTKWidget(GtkWidget* (*widget_new)(void),
+ GetDefaultAttributesFromGTKWidget(wxGtkWidgetNew_t,
bool useBase = false,
int state = -1);
static wxVisualAttributes
- GetDefaultAttributesFromGTKWidget(GtkWidget* (*widget_new)(const gchar*),
+ GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromStr_t,
bool useBase = false,
int state = -1);
static wxVisualAttributes
- GetDefaultAttributesFromGTKWidget(GtkWidget* (*widget_new)(GtkAdjustment*),
+ GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromAdj_t,
bool useBase = false,
int state = -1);