summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkgraphview.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-01-23 01:05:58 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-01-23 01:05:58 (GMT)
commitd761eddfd4b5a27620aaa5e67a0e2e2bc5d55cb1 (patch)
treedc0d69813fef1b982c3a0fbdc25a00a6183b0852 /src/gtkext/gtkgraphview.h
parentd487ea54850c85ea22df22af3b21b57d9ad0fd2f (diff)
Added menus to change the current displayed view. Do not try the source view.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@228 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext/gtkgraphview.h')
-rw-r--r--src/gtkext/gtkgraphview.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gtkext/gtkgraphview.h b/src/gtkext/gtkgraphview.h
index 3706343..9e66fe8 100644
--- a/src/gtkext/gtkgraphview.h
+++ b/src/gtkext/gtkgraphview.h
@@ -2,7 +2,7 @@
/* OpenIDA - Outil d'analyse de fichiers binaires
* gtkgraphview.h - prototypes pour l'affichage de morceaux de code sous forme graphique
*
- * Copyright (C) 2009 Cyrille Bagard
+ * Copyright (C) 2009-2012 Cyrille Bagard
*
* This file is part of OpenIDA.
*
@@ -40,19 +40,18 @@
#define GTK_GRAPH_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_GRAPH_VIEW, GtkGraphViewClass))
-
+/* Composant d'affichage sous forme graphique (instance) */
typedef struct _GtkGraphView GtkGraphView;
-
+/* Composant d'affichage sous forme graphique (classe) */
typedef struct _GtkGraphViewClass GtkGraphViewClass;
-
/* Détermine le type du composant d'affichage en graphique. */
GType gtk_graph_view_get_type(void);
/* Crée un nouveau composant pour l'affichage en graphique. */
-GtkWidget* gtk_graph_view_new(void);
+GtkWidget *gtk_graph_view_new(void);
/* Place une vue sous forme de bloc dans le graphique. */
void gtk_graph_view_put(GtkGraphView *, GtkWidget *, gint, gint);