]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkdrawingarea.h
Draw no trough for color scales
[~andy/gtk] / gtk / gtkdrawingarea.h
index 61c2a5333afacb12ec0ea705a89a2f4f7069d8c2..20365831b2e401b95a4deca6d3cc977fc2c7166d 100644 (file)
  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
  * file for a list of people on the GTK+ Team.  See the ChangeLog
  * files for a list of changes.  These files are distributed with
- * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
-#if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
+#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
 #error "Only <gtk/gtk.h> can be included directly."
 #endif
 
@@ -32,7 +32,6 @@
 #define __GTK_DRAWING_AREA_H__
 
 
-#include <gdk/gdk.h>
 #include <gtk/gtkwidget.h>
 
 
@@ -53,7 +52,8 @@ struct _GtkDrawingArea
 {
   GtkWidget widget;
 
-  gpointer draw_data;
+  /*< private >*/
+  gpointer dummy;
 };
 
 struct _GtkDrawingAreaClass
@@ -68,15 +68,8 @@ struct _GtkDrawingAreaClass
 };
 
 
-GType      gtk_drawing_area_get_type   (void) G_GNUC_CONST;
-GtkWidget* gtk_drawing_area_new        (void);
-
-#ifndef GTK_DISABLE_DEPRECATED
-void       gtk_drawing_area_size       (GtkDrawingArea      *darea,
-                                       gint                 width,
-                                       gint                 height);
-#endif /* GTK_DISABLE_DEPRECATED */
-
+GType      gtk_drawing_area_get_type (void) G_GNUC_CONST;
+GtkWidget* gtk_drawing_area_new      (void);
 
 G_END_DECLS