/* GTK - The GIMP Toolkit * Copyright (C) 2023 Benjamin Otte * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 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, see . */ #pragma once #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif #include #include #include #include G_BEGIN_DECLS #define GTK_TYPE_SCROLL_INFO (gtk_scroll_info_get_type ()) GDK_AVAILABLE_IN_4_12 GType gtk_scroll_info_get_type (void) G_GNUC_CONST; GDK_AVAILABLE_IN_4_12 GtkScrollInfo * gtk_scroll_info_new (void); GDK_AVAILABLE_IN_4_12 GtkScrollInfo * gtk_scroll_info_ref (GtkScrollInfo *self); GDK_AVAILABLE_IN_4_12 void gtk_scroll_info_unref (GtkScrollInfo *self); GDK_AVAILABLE_IN_4_12 void gtk_scroll_info_set_enable_horizontal (GtkScrollInfo *self, gboolean horizontal); GDK_AVAILABLE_IN_4_12 gboolean gtk_scroll_info_get_enable_horizontal (GtkScrollInfo *self); GDK_AVAILABLE_IN_4_12 void gtk_scroll_info_set_enable_vertical (GtkScrollInfo *self, gboolean vertical); GDK_AVAILABLE_IN_4_12 gboolean gtk_scroll_info_get_enable_vertical (GtkScrollInfo *self); G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkScrollInfo, gtk_scroll_info_unref) G_END_DECLS