summaryrefslogtreecommitdiff
path: root/src/gui/core/panels.c
blob: 1b6f60401e0af9635884e948a9c1ddc53bd25c56 (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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172

/* Chrysalide - Outil d'analyse de fichiers binaires
 * panels.c - gestion d'ensemble de tous les panneaux pour l'éditeur
 *
 * Copyright (C) 2016-2019 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 this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


#include "panels.h"


#include <assert.h>
#include <malloc.h>


#include "items.h"
#include "../panel-int.h"
#include "../panels/bintree.h"
#include "../panels/bookmarks.h"
#include "../panels/errors.h"
#include "../panels/glance.h"
#include "../panels/history.h"
#include "../panels/log.h"
#include "../panels/regedit.h"
#include "../panels/strings.h"
#include "../panels/symbols.h"
#include "../panels/welcome.h"
#include "../../core/params.h"



/* Liste des panneaux disponibles */
static GType *_panels_list = NULL;
static size_t _panels_count = 0;



/******************************************************************************
*                                                                             *
*  Paramètres  : -                                                            *
*                                                                             *
*  Description : Charge les principaux panneaux de l'éditeur.                 *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void load_main_panels(void)
{
    GGenConfig *config;                     /* Configuration globale       */
    GPanelItem *panel;                      /* Panneau à précharger        */

    config = get_main_configuration();

    register_panel_item(G_TYPE_LOG_PANEL, config);

    /* Chargement du panneau de rapport au plus tôt */
    panel = g_panel_item_new(G_TYPE_LOG_PANEL, NULL);
    g_object_unref(G_OBJECT(panel));

    register_panel_item(G_TYPE_WELCOME_PANEL, config);
    register_panel_item(G_TYPE_REGEDIT_PANEL, config);
    register_panel_item(G_TYPE_SYMBOLS_PANEL, config);
    register_panel_item(G_TYPE_HISTORY_PANEL, config);
    register_panel_item(G_TYPE_STRINGS_PANEL, config);
    register_panel_item(G_TYPE_GLANCE_PANEL, config);
    register_panel_item(G_TYPE_BOOKMARKS_PANEL, config);
    register_panel_item(G_TYPE_BINTREE_PANEL, config);
    register_panel_item(G_TYPE_ERROR_PANEL, config);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : type   = type du composant à présenter à l'affichage.        *
*                config = configuration à compléter.                          *
*                                                                             *
*  Description : Enregistre un panneau comme partie intégrante de l'éditeur.  *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void register_panel_item(GType type, GGenConfig *config)
{
    GPanelItemClass *class;                 /* Classe associée au type     */
#ifndef NDEBUG
    bool status;                            /* Bilan de mise en place      */
#endif

    _panels_list = realloc(_panels_list, ++_panels_count * sizeof(GType));

    _panels_list[_panels_count - 1] = type;

    class = g_type_class_ref(type);

#ifndef NDEBUG
    status = gtk_panel_item_class_setup_configuration(class, config);
    assert(status);
#else
    gtk_panel_item_class_setup_configuration(class, config);
#endif

    g_type_class_unref(class);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : skip   = saute le panneau d'accueil lors du parcours ?       *
*                handle = routine à appeler pour chaque panneau.              *
*                data   = données fournies pour accompagner cet appel.        *
*                                                                             *
*  Description : Effectue le parcours de tous les panneaux chargés.           *
*                                                                             *
*  Retour      : true si le parcours a été total, false sinon.                *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool _browse_all_item_panels(bool skip, handle_panel_item_fc handle, void *data)
{
    bool result;                            /* Résultat à renvoyer         */
    GType type;                             /* Type de panneau à traiter   */
    size_t i;                               /* Boucle de parcours          */
    GPanelItemClass *class;                 /* Classe associée au type     */

    result = true;

    for (i = 0; i < _panels_count; i++)
    {
        type = _panels_list[i];

        if (skip && type == G_TYPE_WELCOME_PANEL)
            continue;

        class = g_type_class_ref(type);

        result = handle(class, data);

        g_type_class_unref(class);

        if (!result) break;

    }

    return result;

}