summaryrefslogtreecommitdiffstats
path: root/src/gs-info-window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gs-info-window.h')
-rw-r--r--src/gs-info-window.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/gs-info-window.h b/src/gs-info-window.h
new file mode 100644
index 0000000..30c8f4f
--- /dev/null
+++ b/src/gs-info-window.h
@@ -0,0 +1,33 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ * vi:set noexpandtab tabstop=8 shiftwidth=8:
+ *
+ * Copyright (C) 2021 Purism SPC
+ *
+ * Author: Adrien Plazas <adrien.plazas@puri.sm>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#pragma once
+
+#include <glib.h>
+#include <glib-object.h>
+#include <gtk/gtk.h>
+#include <adwaita.h>
+
+G_BEGIN_DECLS
+
+#define GS_TYPE_INFO_WINDOW (gs_info_window_get_type ())
+
+G_DECLARE_DERIVABLE_TYPE (GsInfoWindow, gs_info_window, GS, INFO_WINDOW, AdwWindow)
+
+struct _GsInfoWindowClass
+{
+ AdwWindowClass parent_class;
+};
+
+GsInfoWindow *gs_info_window_new (void);
+
+void gs_info_window_set_child (GsInfoWindow *self,
+ GtkWidget *widget);
+G_END_DECLS