X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtktoolpalette.h;h=8b05547c839990bdbe69777216923ee6df861309;hb=1074aa0c49f647ed4b2a969618051c59da5aad01;hp=39005e57fdfdd01e7f5238537ab0dab5f4867351;hpb=18b7ad418240f1d71a5a427fdfef63ed9fcff3e2;p=~andy%2Fgtk diff --git a/gtk/gtktoolpalette.h b/gtk/gtktoolpalette.h index 39005e57f..8b05547c8 100644 --- a/gtk/gtktoolpalette.h +++ b/gtk/gtktoolpalette.h @@ -12,20 +12,19 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * License along with this library. If not, see . * * Authors: * Mathias Hasselmann */ +#ifndef __GTK_TOOL_PALETTE_H__ +#define __GTK_TOOL_PALETTE_H__ + #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif -#ifndef __GTK_TOOL_PALETTE_H__ -#define __GTK_TOOL_PALETTE_H__ - #include #include #include @@ -72,17 +71,11 @@ struct _GtkToolPaletteClass { GtkContainerClass parent_class; - void (*set_scroll_adjustments) (GtkWidget *widget, - GtkAdjustment *hadjustment, - GtkAdjustment *vadjustment); - /* Padding for future expansion */ void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); void (*_gtk_reserved3) (void); void (*_gtk_reserved4) (void); - void (*_gtk_reserved5) (void); - void (*_gtk_reserved6) (void); }; GType gtk_tool_palette_get_type (void) G_GNUC_CONST; @@ -118,7 +111,7 @@ GtkToolbarStyle gtk_tool_palette_get_style (GtkToolPa GtkToolItem* gtk_tool_palette_get_drop_item (GtkToolPalette *palette, gint x, gint y); -GtkWidget* gtk_tool_palette_get_drop_group (GtkToolPalette *palette, +GtkToolItemGroup* gtk_tool_palette_get_drop_group (GtkToolPalette *palette, gint x, gint y); GtkWidget* gtk_tool_palette_get_drag_item (GtkToolPalette *palette, @@ -132,11 +125,14 @@ void gtk_tool_palette_add_drag_dest (GtkToolPa GtkToolPaletteDragTargets targets, GdkDragAction actions); + +GDK_DEPRECATED_IN_3_0_FOR(gtk_scrollable_get_hadjustment) GtkAdjustment* gtk_tool_palette_get_hadjustment (GtkToolPalette *palette); +GDK_DEPRECATED_IN_3_0_FOR(gtk_scrollable_get_vadjustment) GtkAdjustment* gtk_tool_palette_get_vadjustment (GtkToolPalette *palette); -G_CONST_RETURN GtkTargetEntry* gtk_tool_palette_get_drag_target_item (void) G_GNUC_CONST; -G_CONST_RETURN GtkTargetEntry* gtk_tool_palette_get_drag_target_group (void) G_GNUC_CONST; +const GtkTargetEntry* gtk_tool_palette_get_drag_target_item (void) G_GNUC_CONST; +const GtkTargetEntry* gtk_tool_palette_get_drag_target_group (void) G_GNUC_CONST; G_END_DECLS