summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkdockpanel.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-09-13 23:11:24 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-09-13 23:11:24 (GMT)
commit1c4da24a1d4b96d58fee08e2be21198b22e7eef6 (patch)
treea0723bd1948395413fa5a7a37a9405567e32c015 /src/gtkext/gtkdockpanel.h
parent18134387d5cb025703af8e1d07e0152784e31efc (diff)
Improved the editor window refreshing when several binaries are loaded.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@114 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext/gtkdockpanel.h')
-rw-r--r--src/gtkext/gtkdockpanel.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gtkext/gtkdockpanel.h b/src/gtkext/gtkdockpanel.h
index 037ee26..2c0cda9 100644
--- a/src/gtkext/gtkdockpanel.h
+++ b/src/gtkext/gtkdockpanel.h
@@ -46,6 +46,8 @@ typedef struct _GtkDockPanel GtkDockPanel;
typedef struct _GtkDockPanelClass GtkDockPanelClass;
+#include <stdbool.h>
+
struct _GtkDockPanel
{
@@ -64,6 +66,10 @@ struct _GtkDockPanelClass
{
GtkVBoxClass parent_class; /* Présence obligatoire en 1er */
+ /* Signaux */
+
+ void (* switch_item) (GtkDockPanel *, GtkDockItem *);
+
};
@@ -79,9 +85,6 @@ GtkDockItem *gtk_dock_panel_item_from_name(GtkDockPanel *, const char *);
/* Ajoute un paquet d'informations à la station dockable. */
void gtk_dock_panel_add_item(GtkDockPanel *, GtkDockItem *);
-/* Remplace le panneau d'un membre actuellement affiché. */
-void gtk_dock_panel_replace_item_content(GtkDockPanel *, GtkDockItem *, GtkWidget *);
-
/* Supprime un paquet d'informations à la station dockable. */
void gtk_dock_panel_remove_item(GtkDockPanel *, GtkDockItem *);