diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-07-14 17:58:45 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-07-14 17:58:45 (GMT) |
commit | 9d0d5edf372a9f681bbfd0a3639ee8fc367ce96d (patch) | |
tree | 58493507927e69bb0fb9f337845fb010900f35e3 /src/gtkext/panel-int.h | |
parent | beb69108d4efcebc5a6d70d0de6bdc9ea8026960 (diff) |
Setup basic features for framework GUI panels.
Diffstat (limited to 'src/gtkext/panel-int.h')
-rw-r--r-- | src/gtkext/panel-int.h | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/src/gtkext/panel-int.h b/src/gtkext/panel-int.h index d54dc16..7699f73 100644 --- a/src/gtkext/panel-int.h +++ b/src/gtkext/panel-int.h @@ -2,7 +2,7 @@ /* Chrysalide - Outil d'analyse de fichiers binaires * panel-int.h - prototypes pour les définitions internes liées aux panneaux d'affichage * - * Copyright (C) 2019 Cyrille Bagard + * Copyright (C) 2019-2024 Cyrille Bagard * * This file is part of Chrysalide. * @@ -22,13 +22,37 @@ */ -#ifndef _GUI_PANELS_PANEL_INT_H -#define _GUI_PANELS_PANEL_INT_H +#ifndef _GTKEXT_PANEL_INT_H +#define _GTKEXT_PANEL_INT_H #include "panel.h" + +/* Elément réactif pour panneaux de l'éditeur (instance) */ +struct _GtkTiledPanel +{ + GtkWidget parent; /* A laisser en premier */ + +}; + +/* Elément réactif pour panneaux de l'éditeur (classe) */ +struct _GtkTiledPanelClass +{ + GtkWidgetClass parent; /* A laisser en premier */ + +}; + + + + + + + + +#if 0 + #include <gtk/gtk.h> @@ -134,5 +158,8 @@ void g_panel_item_switch_to_updating_mask(GPanelItem *); void g_panel_item_switch_to_updated_content(GPanelItem *); +#endif + + -#endif /* _GUI_PANELS_PANEL_INT_H */ +#endif /* _GTKEXT_PANEL_INT_H */ |