1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* 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;
#include <stdbool.h>
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 */
/* Signaux */
void (* switch_item) (GtkDockPanel *, GDockItem *);
};
/* 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);
/* Retrouve un membre du panneau d'après son nom. */
GDockItem *gtk_dock_panel_item_from_name(GtkDockPanel *, const char *);
/* Ajoute un paquet d'informations à la station dockable. */
void gtk_dock_panel_add_item(GtkDockPanel *, GDockItem *);
/* Supprime un paquet d'informations à la station dockable. */
void gtk_dock_panel_remove_item(GtkDockPanel *, GDockItem *);
G_END_DECLS
#endif /* _GTKEXT_GTKDOCKPANEL_H */
|