summaryrefslogtreecommitdiff
path: root/src/gui/status.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2013-06-02 13:01:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2013-06-02 13:01:31 (GMT)
commitc23e671df7621ad85f590eee14e6fa7c7e71a526 (patch)
tree4cc2220c58cb416bff9d5b929fdf7e2c34b123f2 /src/gui/status.c
parentd80df591b6104c98d21e1db5143610fb84e35941 (diff)
Saved some progress about edition views.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@348 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/status.c')
-rw-r--r--src/gui/status.c266
1 files changed, 266 insertions, 0 deletions
diff --git a/src/gui/status.c b/src/gui/status.c
new file mode 100644
index 0000000..16a3ff8
--- /dev/null
+++ b/src/gui/status.c
@@ -0,0 +1,266 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * status.c - affichage d'informations de statut dans la fenêtre principale
+ *
+ * Copyright (C) 2013 Cyrille Bagard
+ *
+ * This file is part of OpenIDA.
+ *
+ * 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+#include "status.h"
+
+
+#include <string.h>
+
+
+#include <i18n.h>
+
+
+#include "editem-int.h"
+#include "../common/extstr.h"
+#include "../gtkext/gtkbufferview.h"
+#include "../gtkext/gtkblockview.h"
+#include "../gtkext/gtkextstatusbar.h"
+
+
+
+/* Barre de statut de la fenêtre principale (instance) */
+struct _GStatusInfo
+{
+ GEditorItem parent; /* A laisser en premier */
+
+ GObject *caret_instance; /* Dernier émetteur de signaux */
+ guint msg_id; /* Identifiant du dernier msg. */
+
+};
+
+
+/* Barre de statut de la fenêtre principale (classe) */
+struct _GStatusInfoClass
+{
+ GEditorItemClass parent; /* A laisser en premier */
+
+};
+
+
+/* Initialise la classe de la barre de statut de l'éditeur. */
+static void g_status_info_class_init(GStatusInfoClass *);
+
+/* Initialise une instance de la barre de statut pour l'éditeur. */
+static void g_status_info_init(GStatusInfo *);
+
+/* Lance une actualisation du fait d'un changement de vue. */
+static void update_status_info_for_view(GStatusInfo *, GtkViewPanel *);
+
+/* Imprime la position du parcours courant dans le statut. */
+static void track_caret_address_on_buffer_views(GtkBufferView *, vmpa_t, GStatusInfo *);
+
+
+
+
+/* Indique le type défini pour la barre de statut de la fenêtre principale. */
+G_DEFINE_TYPE(GStatusInfo, g_status_info, G_TYPE_EDITOR_ITEM);
+
+
+/******************************************************************************
+* *
+* Paramètres : klass = classe à initialiser. *
+* *
+* Description : Initialise la classe de la barre de statut de l'éditeur. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void g_status_info_class_init(GStatusInfoClass *klass)
+{
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : bar = instance à initialiser. *
+* *
+* Description : Initialise une instance de la barre de statut pour l'éditeur.*
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void g_status_info_init(GStatusInfo *bar)
+{
+ GEditorItem *item; /* Autre version de l'élément */
+
+ item = G_EDITOR_ITEM(bar);
+
+ item->name = "status";
+
+ item->widget = gtk_extended_status_bar_new();
+ gtk_widget_show(item->widget);
+
+ item->update_view = (update_item_view_fc)update_status_info_for_view;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : ref = espace de référencement global. *
+* *
+* Description : Compose la barre de statut principale. *
+* *
+* Retour : Adresse de la structure mise en place. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+GEditorItem *g_status_info_new(GObject *ref)
+{
+ GStatusInfo *result; /* Structure à retourner */
+ GEditorItem *item; /* Autre version de l'élément */
+
+ result = g_object_new(G_TYPE_STATUS_INFO, NULL);
+
+ item = G_EDITOR_ITEM(result);
+
+ g_object_ref(ref);
+ item->ref = ref;
+
+ g_object_set_data(ref, "statusbar", item->widget);
+
+ return G_EDITOR_ITEM(result);
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : info = barre de statut à actualiser. *
+* view = nouveau panneau d'affichage actif. *
+* *
+* Description : Lance une actualisation du fait d'un changement de vue. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void update_status_info_for_view(GStatusInfo *info, GtkViewPanel *view)
+{
+ printf("new view :: %p\n", view);
+
+ //track_caret_address_on_buffer_views
+
+ if (info->caret_instance != NULL)
+ {
+ g_signal_handlers_disconnect_by_func(info->caret_instance,
+ G_CALLBACK(track_caret_address_on_buffer_views),
+ info);
+ g_object_unref(info->caret_instance);
+ }
+
+ if (GTK_IS_BLOCK_VIEW(view))
+ g_signal_connect(view, "caret-moved",
+ G_CALLBACK(track_caret_address_on_buffer_views),
+ info);
+
+ else
+ return;
+
+ info->caret_instance = G_OBJECT(view);
+ g_object_ref(info->caret_instance);
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : view = composant d'affichage parcouru. *
+* addr = nouvelle adresse du curseur courant. *
+* info = barre de statut présentant les informations. *
+* *
+* Description : Imprime la position du parcours courant dans le statut. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void track_caret_address_on_buffer_views(GtkBufferView *view, vmpa_t addr, GStatusInfo *info)
+{
+ GEditorItem *item; /* Autre version de l'élément */
+ char *msg; /* Message à transmettre */
+ char tmp[VMPA_MAX_SIZE]; /* Zone de conversion */
+ GLoadedBinary *binary; /* Binaire courant */
+ GExeFormat *format; /* Format associé au binaire */
+ vmpa_t rel; /* Adresse relative à un symb. */
+ const char *label; /* Désignation d'un symbole */
+
+ item = G_EDITOR_ITEM(info);
+
+ /* Adresse brute */
+
+ msg = strdup(_("Address "));
+
+ snprintf(tmp, VMPA_MAX_SIZE, VMPA_FMT_LONG, addr);
+ msg = stradd(msg, tmp);
+
+ /* Relation avec les symboles */
+
+ binary = G_LOADED_BINARY(g_object_get_data(item->ref, "current_binary"));
+ format = g_loaded_binary_get_format(binary);
+
+ rel = addr;
+
+ if (g_binary_format_resolve_relative_routine(G_BIN_FORMAT(format), &label, &rel))
+ {
+ msg = stradd(msg, _(" at "));
+ msg = stradd(msg, label);
+ msg = stradd(msg, _("+"));
+
+ snprintf(tmp, VMPA_MAX_SIZE, VMPA_FMT, rel);
+ msg = stradd(msg, tmp);
+
+ }
+
+ /* Impression */
+
+ if (info->msg_id > 0)
+ gtk_extended_status_bar_remove(GTK_EXT_STATUS_BAR(item->widget), info->msg_id);
+
+ info->msg_id = gtk_extended_status_bar_push(GTK_EXT_STATUS_BAR(item->widget), msg, FALSE);
+
+
+ printf("---- moved to 0x%08llx\n", addr);
+
+ printf(" MSG '%s'\n", msg);
+
+ //update_menu_project_for_project(bar->project, project, bar);
+
+
+ free(msg);
+
+}