blob: d9dbbd5453dac918b20a0b1d6114532667ec272d (
plain)
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
|
/* Chrysalide - Outil d'analyse de fichiers binaires
* gtkdockable-int.h - définitions internes propres aux éléments acceptés dans les composants de rassemblement
*
* Copyright (C) 2015-2017 Cyrille Bagard
*
* This file is part of Chrysalide.
*
* Chrysalide 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.
*
* Chrysalide 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 Chrysalide. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _GTK_DOCKABLE_INT_H
#define _GTK_DOCKABLE_INT_H
#include "gtkdockable.h"
#include <regex.h>
/* Fournit le nom court du composant encapsulable. */
typedef const char * (* get_dockable_name_fc) (const GtkDockable *);
/* Fournit le nom court du composant encapsulable. */
typedef const char * (* get_dockable_desc_fc) (const GtkDockable *);
/* Fournit le composant principal à encapsuler au besoin. */
typedef GtkWidget * (* get_dockable_widget_fc) (const GtkDockable *);
/* Démarre l'actualisation du filtrage des paramètres. */
typedef void (* update_filtered_data_fc) (GtkDockable *, const regex_t *);
/* Elément accepté dans les rassemblements (interface) */
struct _GtkDockableIface
{
GTypeInterface base_iface; /* A laisser en premier */
bool can_search; /* Contenu fouillable ? */
bool can_be_closed; /* Fermeture possible ? */
get_dockable_name_fc get_name; /* Nom pour titre */
get_dockable_desc_fc get_desc; /* Description humaine */
get_dockable_widget_fc get_widget; /* Composant à représenter */
update_filtered_data_fc update_filtered;/* Mise à jour du filtrage */
};
/* Redéfinition */
typedef GtkDockableIface GtkDockableInterface;
#endif /* _GTK_DOCKABLE_INT_H */
|