wx/gtk/region.h \
wx/gtk/tooltip.h \
wx/gtk/toplevel.h \
- wx/gtk/win_gtk.h \
wx/gtk/window.h
@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@LOWLEVEL_HDR = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_LOWLEVEL_HDR)
@COND_TOOLKIT_MAC@LOWLEVEL_HDR =
wx/gtk/region.h
wx/gtk/tooltip.h
wx/gtk/toplevel.h
- wx/gtk/win_gtk.h
wx/gtk/window.h
</set>
<set var="GTK_SRC" hints="files">
--- /dev/null
+/* ///////////////////////////////////////////////////////////////////////////
+// Name: win_gtk.h
+// Purpose: native GTK+ widget for wxWindow
+// Author: Robert Roebling
+// Id: $Id$
+// Copyright: (c) 1998 Robert Roebling
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////// */
+
+#ifndef _WX_GTK_PIZZA_H_
+#define _WX_GTK_PIZZA_H_
+
+#include <gtk/gtkfixed.h>
+
+#define WX_PIZZA(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, wxPizza::type(), wxPizza)
+#define WX_IS_PIZZA(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, wxPizza::type())
+
+struct WXDLLIMPEXP_CORE wxPizza
+{
+ // borders styles which can be used with wxPizza
+ enum { BORDER_STYLES =
+ wxBORDER_SIMPLE | wxBORDER_RAISED | wxBORDER_SUNKEN | wxBORDER_THEME };
+
+ static GtkWidget* New(long windowStyle = 0);
+ static GType type();
+ void move(GtkWidget* widget, int x, int y);
+ void scroll(int dx, int dy);
+ void get_border_widths(int& x, int& y);
+
+ GtkFixed m_fixed;
+ GdkWindow* m_backing_window;
+ int m_scroll_x;
+ int m_scroll_y;
+ int m_border_style;
+ bool m_is_scrollable;
+};
+
+#endif // _WX_GTK_PIZZA_H_
+++ /dev/null
-/* ///////////////////////////////////////////////////////////////////////////
-// Name: win_gtk.h
-// Purpose: native GTK+ widget for wxWindow
-// Author: Robert Roebling
-// Id: $Id$
-// Copyright: (c) 1998 Robert Roebling
-// Licence: wxWindows licence
-/////////////////////////////////////////////////////////////////////////// */
-
-#ifndef _WX_GTK_PIZZA_H_
-#define _WX_GTK_PIZZA_H_
-
-#include <gtk/gtkfixed.h>
-
-#define WX_PIZZA(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, wxPizza::type(), wxPizza)
-#define WX_IS_PIZZA(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, wxPizza::type())
-
-struct WXDLLIMPEXP_CORE wxPizza
-{
- // borders styles which can be used with wxPizza
- enum { BORDER_STYLES =
- wxBORDER_SIMPLE | wxBORDER_RAISED | wxBORDER_SUNKEN | wxBORDER_THEME };
-
- static GtkWidget* New(long windowStyle = 0);
- static GType type();
- void move(GtkWidget* widget, int x, int y);
- void scroll(int dx, int dy);
- void get_border_widths(int& x, int& y);
-
- GtkFixed m_fixed;
- GdkWindow* m_backing_window;
- int m_scroll_x;
- int m_scroll_y;
- int m_border_style;
- bool m_is_scrollable;
-};
-
-#endif // _WX_GTK_PIZZA_H_
#include <gtk/gtk.h>
-#include "wx/gtk/win_gtk.h"
+#include "wx/gtk/private/win_gtk.h"
//-----------------------------------------------------------------------------
// "button_press"
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
-#include "wx/gtk/win_gtk.h"
+#include "wx/gtk/private/win_gtk.h"
#include "wx/unix/utilsx11.h"
#endif
#include "wx/platform.h"
-#include "wx/gtk/win_gtk.h"
+#include "wx/gtk/private/win_gtk.h"
#ifdef __cplusplus
extern "C" {
///////////////////////////////////////////////////////////////////////////////
#include "wx/defs.h"
-#include "wx/gtk/win_gtk.h"
+#include "wx/gtk/private/win_gtk.h"
/*
wxPizza is a custom GTK+ widget derived from GtkFixed. A custom widget
#include <ctype.h>
#include "wx/gtk/private.h"
-#include "wx/gtk/win_gtk.h"
+#include "wx/gtk/private/win_gtk.h"
#include <gdk/gdkkeysyms.h>
#include <gdk/gdkx.h>