]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/private/win_gtk.h
Use C, not C++, comments in wx/gtk/chkconf.h.
[wxWidgets.git] / include / wx / gtk / private / win_gtk.h
index db1ddc06f0dfa3b94dd7ed1cd0e3047828ae27d3..b5d2a77875e0a346d2567b2b143a0a9373d51767 100644 (file)
@@ -1,5 +1,5 @@
 /* ///////////////////////////////////////////////////////////////////////////
-// Name:        win_gtk.h
+// Name:        wx/gtk/private/win_gtk.h
 // Purpose:     native GTK+ widget for wxWindow
 // Author:      Robert Roebling
 // Id:          $Id$
@@ -23,12 +23,13 @@ struct WXDLLIMPEXP_CORE wxPizza
 
     static GtkWidget* New(long windowStyle = 0);
     static GType type();
-    void move(GtkWidget* widget, int x, int y);
-    void put(GtkWidget* widget, int x, int y);
+    void move(GtkWidget* widget, int x, int y, int width, int height);
+    void put(GtkWidget* widget, int x, int y, int width, int height);
     void scroll(int dx, int dy);
     void get_border_widths(int& x, int& y);
 
     GtkFixed m_fixed;
+    GList* m_children;
     int m_scroll_x;
     int m_scroll_y;
     int m_border_style;