summaryrefslogtreecommitdiff
path: root/gdk/gdktexturedownloader.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2023-02-14 07:00:39 +0100
committerBenjamin Otte <otte@redhat.com>2023-02-15 00:39:18 +0100
commit51ed1442a2b49893feae50e8a4c704c72c549759 (patch)
treec8ba80674d4a7b91667d09b398b3f34017466b2a /gdk/gdktexturedownloader.h
parent01ff6c1c22051cbc943b72bad8ecefbf6123dcc5 (diff)
downloadgtk+-51ed1442a2b49893feae50e8a4c704c72c549759.tar.gz
gdk: Add GdkTextureDownloader
It's the new object that allows more control about accessing texture data.
Diffstat (limited to 'gdk/gdktexturedownloader.h')
-rw-r--r--gdk/gdktexturedownloader.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/gdk/gdktexturedownloader.h b/gdk/gdktexturedownloader.h
new file mode 100644
index 0000000000..0bdb75b573
--- /dev/null
+++ b/gdk/gdktexturedownloader.h
@@ -0,0 +1,69 @@
+/* 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/>.
+ */
+
+#ifndef __GTK_TEXTURE_DOWNLOADER_H__
+#define __GTK_TEXTURE_DOWNLOADER_H__
+
+#if !defined (__GDK_H_INSIDE__) && !defined (GTK_COMPILATION)
+#error "Only <gdk/gdk.h> can be included directly."
+#endif
+
+
+#include <gdk/gdkversionmacros.h>
+#include <gdk/gdkenums.h>
+#include <gdk/gdktypes.h>
+
+G_BEGIN_DECLS
+
+#define GDK_TYPE_TEXTURE_DOWNLOADER (gdk_texture_downloader_get_type ())
+
+GDK_AVAILABLE_IN_4_10
+GType gdk_texture_downloader_get_type (void) G_GNUC_CONST;
+GDK_AVAILABLE_IN_4_10
+GdkTextureDownloader * gdk_texture_downloader_new (GdkTexture *texture);
+
+GDK_AVAILABLE_IN_4_10
+GdkTextureDownloader * gdk_texture_downloader_copy (const GdkTextureDownloader *self);
+GDK_AVAILABLE_IN_4_10
+void gdk_texture_downloader_free (GdkTextureDownloader *self);
+
+
+GDK_AVAILABLE_IN_4_10
+void gdk_texture_downloader_set_texture (GdkTextureDownloader *self,
+ GdkTexture *texture);
+GDK_AVAILABLE_IN_4_10
+GdkTexture * gdk_texture_downloader_get_texture (const GdkTextureDownloader *self);
+GDK_AVAILABLE_IN_4_10
+void gdk_texture_downloader_set_format (GdkTextureDownloader *self,
+ GdkMemoryFormat format);
+GDK_AVAILABLE_IN_4_10
+GdkMemoryFormat gdk_texture_downloader_get_format (const GdkTextureDownloader *self);
+
+
+GDK_AVAILABLE_IN_4_10
+void gdk_texture_downloader_download_into (const GdkTextureDownloader *self,
+ guchar *data,
+ gsize stride);
+GDK_AVAILABLE_IN_4_10
+GBytes * gdk_texture_downloader_download_bytes (const GdkTextureDownloader *self,
+ gsize *out_stride);
+
+G_DEFINE_AUTOPTR_CLEANUP_FUNC(GdkTextureDownloader, gdk_texture_downloader_free)
+
+G_END_DECLS
+
+#endif /* __GTK_TEXTURE_DOWNLOADER_H__ */