summaryrefslogtreecommitdiff
path: root/src/gtkext/panel.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-07-14 17:58:45 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-07-14 17:58:45 (GMT)
commit9d0d5edf372a9f681bbfd0a3639ee8fc367ce96d (patch)
tree58493507927e69bb0fb9f337845fb010900f35e3 /src/gtkext/panel.h
parentbeb69108d4efcebc5a6d70d0de6bdc9ea8026960 (diff)
Setup basic features for framework GUI panels.
Diffstat (limited to 'src/gtkext/panel.h')
-rw-r--r--src/gtkext/panel.h30
1 files changed, 26 insertions, 4 deletions
diff --git a/src/gtkext/panel.h b/src/gtkext/panel.h
index de8d2bf..407cb06 100644
--- a/src/gtkext/panel.h
+++ b/src/gtkext/panel.h
@@ -2,7 +2,7 @@
/* Chrysalide - Outil d'analyse de fichiers binaires
* panel.h - prototypes pour la gestion des éléments réactifs spécifiques aux panneaux
*
- * Copyright (C) 2019 Cyrille Bagard
+ * Copyright (C) 2019-2024 Cyrille Bagard
*
* This file is part of Chrysalide.
*
@@ -22,10 +22,30 @@
*/
-#ifndef _GUI_PANELS_PANEL_H
-#define _GUI_PANELS_PANEL_H
+#ifndef _GTKEXT_PANEL_H
+#define _GTKEXT_PANEL_H
+#include <gtk/gtk.h>
+
+
+#include "../glibext/helpers.h"
+
+
+
+#define GTK_TYPE_TILED_PANEL (gtk_tiled_panel_get_type())
+
+DECLARE_GTYPE(GtkTiledPanel, gtk_tiled_panel, GTK, TILED_PANEL);
+
+
+
+
+
+
+
+
+#if 0
+
#include <stdbool.h>
#include <gtk/gtk.h>
@@ -108,5 +128,7 @@ bool g_panel_item_is_docked(const GPanelItem *);
void g_panel_item_undock(GPanelItem *);
+#endif
+
-#endif /* _GUI_PANELS_PANEL_H */
+#endif /* _GTKEXT_PANEL_H */