summaryrefslogtreecommitdiff
path: root/src/panel
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-04-12 19:15:35 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-04-12 19:15:35 (GMT)
commit216a3d0121fabd678e50ea6b4fa2447ae9b921f0 (patch)
tree395fcd91b674ff5652e34b46207ba08cc9e7af68 /src/panel
parentedac614a164d9cac345d914f4320d71bdb16ab79 (diff)
Created a debugging layout and introduced a heavier use of GLib.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@58 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panel')
-rwxr-xr-xsrc/panel/Makefile.am5
-rw-r--r--src/panel/log.c7
-rw-r--r--src/panel/log.h1
-rw-r--r--src/panel/panels.c2
-rw-r--r--src/panel/panels.h1
-rw-r--r--src/panel/registers.c236
-rw-r--r--src/panel/registers.h47
7 files changed, 297 insertions, 2 deletions
diff --git a/src/panel/Makefile.am b/src/panel/Makefile.am
index 19079d5..a74cfa0 100755
--- a/src/panel/Makefile.am
+++ b/src/panel/Makefile.am
@@ -3,12 +3,13 @@ lib_LIBRARIES = libpanel.a
libpanel_a_SOURCES = \
log.h log.c \
- panels.h panels.c
+ panels.h panels.c \
+ registers.h registers.c
libpanel_a_CFLAGS = $(AM_CFLAGS)
-INCLUDES = $(LIBGTK_CFLAGS)
+INCLUDES = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CPPFLAGS =
diff --git a/src/panel/log.c b/src/panel/log.c
index f98953f..94bb8a4 100644
--- a/src/panel/log.c
+++ b/src/panel/log.c
@@ -147,6 +147,13 @@ void log_simple_message(LogMessageType type, const char *msg)
-1);
break;
+ case LMT_PROCESS:
+ gtk_tree_store_set(store, &iter,
+ LGC_PICTURE, "gtk-execute",
+ LGC_STRING, msg,
+ -1);
+ break;
+
}
}
diff --git a/src/panel/log.h b/src/panel/log.h
index 91e2c83..5ea95cc 100644
--- a/src/panel/log.h
+++ b/src/panel/log.h
@@ -35,6 +35,7 @@ typedef enum _LogMessageType
{
LMT_INFO, /* Information sur l'exécution */
LMT_BAD_BINARY, /* Binaire malformé */
+ LMT_PROCESS, /* Début de tâche quelconque */
LMT_COUNT
diff --git a/src/panel/panels.c b/src/panel/panels.c
index a127825..eae6ba3 100644
--- a/src/panel/panels.c
+++ b/src/panel/panels.c
@@ -26,6 +26,7 @@
#include "log.h"
+#include "registers.h"
@@ -48,6 +49,7 @@ static GtkWidget *panel_list[PNT_COUNT];
void init_panels(void)
{
panel_list[PNT_LOG] = build_log_panel();
+ panel_list[PNT_REGISTERS] = build_registers_panel();
}
diff --git a/src/panel/panels.h b/src/panel/panels.h
index 87ddfa6..e38f196 100644
--- a/src/panel/panels.h
+++ b/src/panel/panels.h
@@ -34,6 +34,7 @@
typedef enum _PanelType
{
PNT_LOG, /* Messages système */
+ PNT_REGISTERS, /* Registres d'architecture */
PNT_COUNT
diff --git a/src/panel/registers.c b/src/panel/registers.c
new file mode 100644
index 0000000..ce27a71
--- /dev/null
+++ b/src/panel/registers.c
@@ -0,0 +1,236 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * registers.c - panneau d'affichage des registres d'architecture
+ *
+ * Copyright (C) 2006-2007 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 "registers.h"
+
+
+#include "../easygtk.h"
+
+
+
+#define _(str) str
+
+
+
+
+
+/******************************************************************************
+* *
+* Paramètres : - *
+* *
+* Description : Construit le panneau d'affichage des registres. *
+* *
+* Retour : Adresse du panneau mis en place. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+GtkWidget *build_registers_panel(void)
+{
+ GtkWidget *result; /* Panneau à retourner */
+
+
+ GtkWidget *vbox1;
+ GtkWidget *label1;
+ GtkWidget *table1;
+ GtkWidget *label3;
+ GtkWidget *label4;
+ GtkWidget *label5;
+ GtkWidget *label6;
+ GtkWidget *label7;
+ GtkWidget *label8;
+ GtkWidget *label9;
+ GtkWidget *label10;
+ GtkWidget *label11;
+ GtkWidget *label12;
+ GtkWidget *label13;
+ GtkWidget *label14;
+ GtkWidget *label15;
+ GtkWidget *label16;
+ GtkWidget *entry1;
+ GtkWidget *entry2;
+ GtkWidget *entry3;
+ GtkWidget *entry4;
+ GtkWidget *entry6;
+ GtkWidget *entry5;
+ GtkWidget *entry7;
+ GtkWidget *label2;
+
+ GtkWidget *label; /* Etiquette textuelle */
+ GtkWidget *alignment; /* Décallage de contenu */
+ GtkWidget *entry; /* Zone de saisie */
+
+
+
+ result = gtk_scrolled_window_new(NULL, NULL);
+ gtk_widget_show(result);
+
+ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(result), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
+ gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(result), GTK_SHADOW_IN);
+
+
+
+
+ vbox1 = gtk_vbox_new (FALSE, 0);
+ gtk_widget_show (vbox1);
+ gtk_container_add (GTK_CONTAINER (result), vbox1);
+
+ label1 = gtk_label_new (_("Registers:"));
+ gtk_widget_show (label1);
+ gtk_box_pack_start (GTK_BOX (vbox1), label1, FALSE, FALSE, 0);
+ gtk_misc_set_alignment (GTK_MISC (label1), 0, 0.5);
+
+
+ alignment = qck_create_padded_alignment(0, 0, 8, 0);
+ gtk_box_pack_start(GTK_BOX(vbox1), alignment, FALSE, TRUE, 0);
+
+ table1 = gtk_table_new(7, 3, FALSE);
+ gtk_widget_show(table1);
+ gtk_container_add(GTK_CONTAINER(alignment), table1);
+
+ label = qck_create_label(NULL, NULL, "eax: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "eax", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 0, 1, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "ebx: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 1, 2, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "ebx", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 1, 2, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "ecx: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 2, 3, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "ecx", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 2, 3, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "edx: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 3, 4, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "edx", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 3, 4, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "esi: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 4, 5, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "esi", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 4, 5, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "edi: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 5, 6, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "edi", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 5, 6, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "ebp: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 6, 7, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "ebp", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 6, 7, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "esp: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 7, 8, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "esp", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 7, 8, GTK_FILL, 0, 0, 0);
+
+ label = qck_create_label(NULL, NULL, "eip: ");
+ gtk_table_attach(GTK_TABLE(table1), label, 0, 1, 8, 9, GTK_FILL, 0, 0, 0);
+
+ entry = qck_create_entry(G_OBJECT(result), "eip", NULL);
+ gtk_entry_set_width_chars(GTK_ENTRY(entry), 8);
+ gtk_table_attach(GTK_TABLE(table1), entry, 1, 2, 8, 9, GTK_FILL, 0, 0, 0);
+
+
+
+
+ label2 = gtk_label_new (_("Segments:"));
+ gtk_widget_show (label2);
+ gtk_box_pack_start (GTK_BOX (vbox1), label2, FALSE, FALSE, 0);
+ gtk_misc_set_alignment (GTK_MISC (label2), 0, 0.5);
+
+
+
+
+ return result;
+
+}
+
+
+
+
+
+
+/******************************************************************************
+* *
+* Paramètres : panel = panneau contenant les champs utiles. *
+* values = liste des registres avec leur valeur. *
+* count = taille de cette liste. *
+* *
+* Description : Met à jour l'affichage des valeurs de registre. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void refresh_registers_panel_with_registers(GtkWidget *panel, register_value *values, size_t count)
+{
+ GObject *ref; /* Espace de référencement */
+ size_t i; /* Boucle de parcours */
+ GtkEntry *entry; /* Zone de texte */
+ char buffer[32];
+
+ ref = G_OBJECT(panel);
+
+ for (i = 0; i < count; i++)
+ {
+ entry = GTK_ENTRY(g_object_get_data(ref, values[i].name));
+ if (entry == NULL) continue;
+
+ snprintf(buffer, 32, "%08llx", values[i].value);
+
+ gtk_entry_set_text(entry, buffer);
+
+
+
+
+
+ }
+
+
+
+}
diff --git a/src/panel/registers.h b/src/panel/registers.h
new file mode 100644
index 0000000..7110414
--- /dev/null
+++ b/src/panel/registers.h
@@ -0,0 +1,47 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * registers.h - prototypes pour le panneau d'affichage des registres d'architecture
+ *
+ * Copyright (C) 2006-2007 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
+ */
+
+
+#ifndef _PANEL_REGISTERS_H
+#define _PANEL_REGISTERS_H
+
+
+#include <gtk/gtk.h>
+
+
+#include "../debug/debuggers.h"
+
+
+
+/* Construit le panneau d'affichage des registres. */
+GtkWidget *build_registers_panel(void);
+
+
+
+/* Met à jour l'affichage des valeurs de registre. */
+void refresh_registers_panel_with_registers(GtkWidget *, register_value *, size_t);
+
+
+
+
+#endif /* _PANEL_REGISTERS_H */