summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkdockpanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtkext/gtkdockpanel.h')
-rw-r--r--src/gtkext/gtkdockpanel.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/gtkext/gtkdockpanel.h b/src/gtkext/gtkdockpanel.h
new file mode 100644
index 0000000..140f812
--- /dev/null
+++ b/src/gtkext/gtkdockpanel.h
@@ -0,0 +1,88 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * gtkdockpanel.h - prototypes pour la manipulation et l'affichage de panneaux dockables
+ *
+ * Copyright (C) 2008 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _GTKEXT_GTKDOCKPANEL_H
+#define _GTKEXT_GTKDOCKPANEL_H
+
+
+#include <gtk/gtk.h>
+
+
+#include "gtkdockitem.h"
+
+
+
+G_BEGIN_DECLS
+
+
+
+#define GTK_TYPE_DOCK_PANEL (gtk_dock_panel_get_type())
+#define GTK_DOCK_PANEL(obj) GTK_CHECK_CAST(obj, gtk_dock_panel_get_type (), GtkDockPanel)
+#define GTK_DOCK_PANEL_CLASS(klass) GTK_CHECK_CLASS_CAST(klass, gtk_dock_panel_get_type(), GtkDockPanelClass)
+#define GTK_IS_DOCK_PANEL(obj) GTK_CHECK_TYPE(obj, gtk_dock_panel_get_type())
+
+
+typedef struct _GtkDockPanel GtkDockPanel;
+typedef struct _GtkDockPanelClass GtkDockPanelClass;
+
+
+
+struct _GtkDockPanel
+{
+ GtkVBox vbox; /* Présence obligatoire en 1er */
+
+ GtkLabel *title; /* Title du support principal */
+
+ GtkNotebook *notebook; /* Support à onglets */
+ GList *ditems; /* Panneaux intégrés */
+
+ GtkWidget *dropwin; /* Destination des Drag'n Drop */
+
+};
+
+struct _GtkDockPanelClass
+{
+ GtkVBoxClass parent_class; /* Présence obligatoire en 1er */
+
+};
+
+
+/* Détermine le type du composant d'affichage des morceaux. */
+GtkType gtk_dock_panel_get_type(void);
+
+/* Crée un nouveau composant pour station dockable. */
+GtkWidget *gtk_dock_panel_new(void);
+
+/* Ajoute un paquet d'informations à la station dockable. */
+void gtk_dock_panel_add_item(GtkDockPanel *, GtkDockItem *);
+
+/* Supprime un paquet d'informations à la station dockable. */
+void gtk_dock_panel_remove_item(GtkDockPanel *, GtkDockItem *);
+
+
+
+G_END_DECLS
+
+
+
+#endif /* _GTKEXT_GTKDOCKPANEL_H */