summaryrefslogtreecommitdiff
path: root/src/gtkext/graph/node-int.h
blob: b153255e573856464ea4963df9d3f808478a6b98 (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

/* OpenIDA - Outil d'analyse de fichiers binaires
 * node-int.h - prototypes pour la gestion élémentaire des blocs sous forme de noeuds
 *
 * Copyright (C) 2013 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_GRAPH_NODE_INT_H
#define _GTKEXT_GRAPH_NODE_INT_H


#include "node.h"



/* Fournit le rang du noeud dans le graphique. */
typedef unsigned int (* get_node_rank_fc) (const GGraphNode *);

/* Réinitialise la position d'un noeud d'encapsulation. */
typedef void (* node_reset_pos_fc) (GGraphNode *);

/* Définit les abscisses relatives du contenu d'un noeud. */
typedef void (* node_prepare_x_fc) (GGraphNode *, GGraphNode *);

/* Applique une position finale au noeud. */
typedef void (* node_apply_pos_fc) (GGraphNode *);

/* Altère la position du noeud d'encapsulation. */
typedef void (* node_set_pos_fc) (GGraphNode *, gint);

/* Parcourt tous les noeuds graphiques dans un ordre donné. */
typedef bool (* visit_flow_nodes_fc) (GGraphNode *, graph_node_visitor_cb, void *);

/* Recherche le noeud contenant un autre noeud. */
typedef GGraphNode * (* find_container_fc) (GGraphNode *, GGraphNode *);


/* Intermédiaire entre le noeud dot et la bribe de code (instance) */
struct _GGraphNode
{
    GObject parent;                         /* A laisser en premier        */

    get_node_rank_fc get_rank;              /* Premier rang d'appartenance */
    node_reset_pos_fc reset_pos;            /* Réinitialise l'emplacement  */
    node_prepare_x_fc prepare_x;            /* Préparation des abscisses   */
    node_apply_pos_fc apply_pos;            /* Applique une absisse finale */
    node_set_pos_fc set_pos;                /* Définit l'emplacement       */
    visit_flow_nodes_fc visit;              /* Visite des noeuds d'exécut° */
    find_container_fc contain;              /* Retrouve un conteneur       */

    GtkWidget *view;                        /* Morceau de code représenté  */
    char name[NODE_NAME_LEN];               /* Adresse sous forme humaine  */

    GtkAllocation alloc;                    /* Emplacement du bloc rattaché*/
    pending_position pending_pos;           /* Indication sur la position  */
    PendingPositionFlags pending_flag;      /* Cible le champ valide       */
    GGraphNode *pending_rel;                /* Eventuelle ref. relative    */



    gint pending_x;                         /* Décallage à appliquer #1    */ /* TODO : remme */
    gint pending_y;                         /* Décallage à appliquer #2    */ /* TODO : remme */

    bool direct_x;                          /* Position strictement vert.  */
    gint pending_left_margin;               /* Limite à ne pas dépasser #1 */
    gint pending_right_margin;              /* Limite à ne pas dépasser #2 */


};


/* Intermédiaire entre le noeud dot et la bribe de code (classe) */
struct _GGraphNodeClass
{
    GObjectClass parent;                    /* A laisser en premier        */

    double dpi_x;                           /* Résolution en abscisse      */
    double dpi_y;                           /* Résolution en ordonnée      */

};



#endif  /* _GTKEXT_GRAPH_NODE_INT_H */