diff options
Diffstat (limited to 'src/gtkext/panel.h')
-rw-r--r-- | src/gtkext/panel.h | 30 |
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 */ |