diff options
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 */ |