diff options
Diffstat (limited to 'src/gui/core')
-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 |
3 files changed, 109 insertions, 0 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 */ |