mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-04 09:40:19 +00:00
105be5a457
This struct carries information about scrolling a scrollable, so that individual scrollables can share this struct for their scrolling APIs. For now, there's not much information here, we're still trying to cook up an API that works well.
62 lines
2.2 KiB
C
62 lines
2.2 KiB
C
/* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
#endif
|
|
|
|
|
|
#include <gdk/gdk.h>
|
|
#include <gtk/gtkenums.h>
|
|
#include <gtk/gtktypes.h>
|
|
|
|
#include <graphene.h>
|
|
|
|
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
|
|
|