diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-04-06 11:09:00 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-04-06 11:09:00 (GMT) |
commit | 944225261e872785366d1df5377f59ea917a2195 (patch) | |
tree | fb6d2c12e22f368808bfb92557d647b1e5688a8a /src/gtkext/graph/node-int.h | |
parent | e108e192582aa1dbe020dfbc09bee5e6ab2cc534 (diff) |
Done some refactoring in order to make the code more GObject-friendly.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@506 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext/graph/node-int.h')
-rw-r--r-- | src/gtkext/graph/node-int.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gtkext/graph/node-int.h b/src/gtkext/graph/node-int.h index 18b6b20..2572fce 100644 --- a/src/gtkext/graph/node-int.h +++ b/src/gtkext/graph/node-int.h @@ -56,14 +56,6 @@ 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 */ - GtkAllocation alloc; /* Emplacement du bloc rattaché*/ pending_position pending_pos; /* Indication sur la position */ PendingPositionFlags pending_flag; /* Cible le champ valide */ @@ -81,6 +73,14 @@ struct _GGraphNodeClass { GObjectClass 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 */ + }; |