diff options
Diffstat (limited to 'src/gui')
-rwxr-xr-x | src/gui/core/Makefile.am | 1 | ||||
-rw-r--r-- | src/gui/core/global.c | 68 | ||||
-rw-r--r-- | src/gui/core/global.h | 40 | ||||
-rw-r--r-- | src/gui/status.c | 3 |
4 files changed, 111 insertions, 1 deletions
diff --git a/src/gui/core/Makefile.am b/src/gui/core/Makefile.am index 2000f58..75b342f 100755 --- a/src/gui/core/Makefile.am +++ b/src/gui/core/Makefile.am @@ -3,6 +3,7 @@ noinst_LTLIBRARIES = libguicore.la libguicore_la_SOURCES = \ core.h core.c \ + global.h global.c \ panels.h panels.c libguicore_la_LDFLAGS = $(LIBGTK_LIBS) $(LIBXML_LIBS) diff --git a/src/gui/core/global.c b/src/gui/core/global.c new file mode 100644 index 0000000..10db31a --- /dev/null +++ b/src/gui/core/global.c @@ -0,0 +1,68 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * global.c - conservation de variables globales à vocation graphique + * + * Copyright (C) 2016 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * OpenIDA is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * OpenIDA is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Foobar. If not, see <http://www.gnu.org/licenses/>. + */ + + +#include "global.h" + + + +/* Barre de statut principale */ +static GtkStatusStack *_status = NULL; + + + +/****************************************************************************** +* * +* Paramètres : status = barre de statut à tenir informée. * +* * +* Description : Note l'adresse de la barre de statut principale. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void set_global_status(GtkStatusStack *status) +{ + _status = status; + +} + + +/****************************************************************************** +* * +* Paramètres : - * +* * +* Description : Fournit l'adresse de la barre de statut principale. * +* * +* Retour : barre de statut à tenir informée. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GtkStatusStack *get_global_status(void) +{ + return _status; + +} diff --git a/src/gui/core/global.h b/src/gui/core/global.h new file mode 100644 index 0000000..dfd5cc2 --- /dev/null +++ b/src/gui/core/global.h @@ -0,0 +1,40 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * global.h - prototypes pour la conservation de variables globales à vocation graphique + * + * Copyright (C) 2016 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * OpenIDA is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * OpenIDA is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Foobar. If not, see <http://www.gnu.org/licenses/>. + */ + + +#ifndef _GUI_CORE_GLOBAL_H +#define _GUI_CORE_GLOBAL_H + + +#include "../../gtkext/gtkstatusstack.h" + + + +/* Note l'adresse de la barre de statut principale. */ +void set_global_status(GtkStatusStack *); + +/* Fournit l'adresse de la barre de statut principale. */ +GtkStatusStack *get_global_status(void); + + + +#endif /* _GUI_CORE_GLOBAL_H */ diff --git a/src/gui/status.c b/src/gui/status.c index f1171bd..0a3572a 100644 --- a/src/gui/status.c +++ b/src/gui/status.c @@ -34,6 +34,7 @@ #include "editem-int.h" +#include "core/global.h" #include "../common/extstr.h" #include "../gtkext/gtkbufferview.h" #include "../gtkext/gtkblockview.h" @@ -199,7 +200,7 @@ GEditorItem *g_status_info_new(GObject *ref) g_object_ref(ref); item->ref = ref; - g_object_set_data(ref, "statusbar", item->widget); + set_global_status(GTK_STATUS_STACK(item->widget)); return G_EDITOR_ITEM(result); |