libSBNW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
layout.h
Go to the documentation of this file.
1 /*== SAGITTARIUS =====================================================================
2  * Copyright (c) 2012, Jesse K Medley
3  * All rights reserved.
4 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of The University of Washington nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 //== FILEDOC =========================================================================
29 
34 //== BEGINNING OF CODE ===============================================================
35 
36 #ifndef __SBNW_LAYOUT_H_
37 #define __SBNW_LAYOUT_H_
38 
39 //== INCLUDES ========================================================================
40 
42 #include "graphfab/sbml/autolayoutSBML.h"
43 #include "graphfab/diag/error.h"
44 
45 #include <stdint.h>
46 
47 //-- C methods --
48 
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52 
61 typedef struct {
63  void* n;
64 } gf_network;
65 
74 typedef struct {
76  void* n;
77 } gf_node;
78 
86 typedef struct {
88  void* r;
89 } gf_reaction;
90 
99 typedef struct {
101  void* c;
102 } gf_curve;
103 
111 typedef struct {
113  void* c;
115 
124 typedef struct {
126  void* canv;
127 } gf_canvas;
128 
138 typedef struct {
141  void* net;
143  void* canv;
145  char* cont;
146 
147  // sbml opts
148  int level;
149  int version;
150 } gf_layoutInfo;
151 
158 //DEPRECATED: rename to gf_point
159 typedef struct {
161  Real x;
162  Real y;
163 } CPoint;
164 
172 typedef struct {
177 } gf_point;
178 
187 typedef struct {
189  void* tf;
190 } gf_transform;
191 
201 typedef struct {
210 } gf_curveCP;
211 
219 typedef enum {
220  GF_ROLE_SUBSTRATE,
221  GF_ROLE_PRODUCT,
222  GF_ROLE_SIDESUBSTRATE,
223  GF_ROLE_SIDEPRODUCT,
224  GF_ROLE_MODIFIER,
225  GF_ROLE_ACTIVATOR,
226  GF_ROLE_INHIBITOR
227 } gf_specRole;
228 
233 _GraphfabExport void gf_freeLayoutInfo(gf_layoutInfo* l);
234 
239 _GraphfabExport void gf_freeLayoutInfoHierarch(gf_layoutInfo* l);
240 
247 _GraphfabExport void gf_freeModelAndLayout(gf_SBMLModel* mod, gf_layoutInfo* l);
248 
253 _GraphfabExport gf_SBMLModel gf_SBMLModel_new();
254 
260 _GraphfabExport gf_SBMLModel* gf_SBMLModel_newp();
261 
266 _GraphfabExport gf_layoutInfo gf_layoutInfo_new(uint64_t level, uint64_t version, uint64_t width, uint64_t height);
267 
273 _GraphfabExport gf_layoutInfo* gf_layoutInfo_newp(uint64_t level, uint64_t version, uint64_t width, uint64_t height);
274 
275 // -- Input --
276 
293 _GraphfabExport gf_layoutInfo* gf_processLayout(gf_SBMLModel* lo);
294 
304 _GraphfabExport gf_layoutInfo* gf_loadSBMLIntoLayoutEngine(const char* buf, gf_SBMLModel* r);
305 
306 // -- Configuration --
307 
315 _GraphfabExport void gf_setModelNamespace(gf_layoutInfo* l, unsigned long level, unsigned long version);
316 
323 _GraphfabExport const char* gf_getDefaultCompartmentId();
324 
331 _GraphfabExport void gf_setDefaultCompartmentId(const char* id);
332 
333 // -- Object API --
334 
335 // Network
336 
341 _GraphfabExport gf_network gf_getNetwork(gf_layoutInfo* l);
342 
349 _GraphfabExport gf_network* gf_getNetworkp(gf_layoutInfo* l);
350 
355 _GraphfabExport void gf_clearNetwork(gf_network* n);
356 
361 _GraphfabExport void gf_releaseNetwork(gf_network* n);
362 
369 _GraphfabExport char* gf_nw_getId(gf_network* n);
370 
378 _GraphfabExport void gf_nw_setId(gf_network* n, const char* id);
379 
384 _GraphfabExport uint64_t gf_nw_getNumNodes(const gf_network* n);
385 
393 _GraphfabExport uint64_t gf_nw_getNumUniqueNodes(const gf_network* n);
394 
399 _GraphfabExport uint64_t gf_nw_getNumRxns(const gf_network* n);
400 
405 _GraphfabExport uint64_t gf_nw_getNumComps(const gf_network* n);
406 
412 _GraphfabExport gf_node gf_nw_getNode(gf_network* n, uint64_t i);
413 
419 _GraphfabExport gf_node gf_nw_getUniqueNode(gf_network* n, uint64_t i);
420 
428 _GraphfabExport gf_node* gf_nw_getNodep(gf_network* n, uint64_t i);
429 
437 _GraphfabExport gf_node* gf_nw_getUniqueNodep(gf_network* n, uint64_t i);
438 
445 _GraphfabExport gf_node* gf_nw_getNodepFromId(gf_network* nw, const char* id);
446 
453 _GraphfabExport gf_reaction gf_nw_getRxn(gf_network* n, uint64_t i);
454 
461 _GraphfabExport gf_reaction* gf_nw_getRxnp(gf_network* n, uint64_t i);
462 
468 _GraphfabExport void gf_nw_removeRxn(gf_network* n, gf_reaction* r);
469 
475 _GraphfabExport gf_compartment gf_nw_getCompartment(gf_network* n, uint64_t i);
476 
483 _GraphfabExport gf_compartment* gf_nw_getCompartmentp(gf_network* n, uint64_t i);
484 
492 _GraphfabExport gf_compartment* gf_nw_findCompartmentById(gf_network* n, const char* id);
493 
500 _GraphfabExport void gf_nw_rebuildCurves(gf_network* n);
501 
506 _GraphfabExport void gf_nw_recenterJunctions(gf_network* n);
507 
514 _GraphfabExport gf_compartment gf_nw_newCompartment(gf_network* nw, const char* id, const char* name);
515 
523 _GraphfabExport gf_compartment* gf_nw_newCompartmentp(gf_network* nw, const char* id, const char* name);
524 
532 _GraphfabExport gf_node gf_nw_newNode(gf_network* nw, const char* id, const char* name, gf_compartment* compartment);
533 
539 _GraphfabExport gf_node gf_nw_aliasOf(gf_network* nw, gf_node* n);
540 
549 _GraphfabExport gf_node* gf_nw_newNodep(gf_network* nw, const char* id, const char* name, gf_compartment* compartment);
550 
559 _GraphfabExport gf_node* gf_nw_newAliasNodep(gf_network* nw, gf_node* source);
560 
565 _GraphfabExport int gf_nw_removeNode(gf_network* nw, gf_node* node);
566 
574 _GraphfabExport int gf_nw_connectNode(gf_network* nw, gf_node* node, gf_reaction* reaction, gf_specRole role);
575 
583 _GraphfabExport int gf_nw_connectNodeRoleStr(gf_network* nw, gf_node* n, gf_reaction* r, const char* role_str);
584 
592 _GraphfabExport int gf_nw_isNodeConnected(gf_network* nw, gf_node* node, gf_reaction* reaction);
593 
599 _GraphfabExport int gf_nw_isLayoutSpecified(gf_network* nw);
600 
606 _GraphfabExport int gf_nw_getNumInstances(gf_network* nw, gf_node* n);
607 
613 _GraphfabExport int gf_nw_getNumAliasInstances(gf_network* nw, gf_node* n);
614 
621 _GraphfabExport gf_node gf_nw_getInstance(gf_network* nw, gf_node* n, uint64_t i);
622 
629 _GraphfabExport gf_node* gf_nw_getInstancep(gf_network* nw, gf_node* n, uint64_t i);
630 
637 _GraphfabExport gf_node* gf_nw_getAliasInstancep(gf_network* nw, gf_node* n, uint64_t i);
638 
639 // Node
640 
646 _GraphfabExport void gf_node_setCompartment(gf_node* n, gf_compartment* c);
647 
652 _GraphfabExport void gf_clearNode(gf_node* n);
653 
658 _GraphfabExport void gf_releaseNode(const gf_node* n);
659 
664 _GraphfabExport int gf_node_isLocked(gf_node* n);
665 
670 _GraphfabExport void gf_node_lock(gf_node* n);
671 
676 _GraphfabExport void gf_node_unlock(gf_node* n);
677 
682 _GraphfabExport int gf_node_alias(gf_node* n, gf_network* m);
683 
695 _GraphfabExport int gf_node_make_alias(gf_node* n, gf_network* m);
696 
701 _GraphfabExport int gf_node_isAliased(gf_node* n);
702 
707 _GraphfabExport void gf_node_setIsAlias(gf_node* n, int isAlias);
708 
713 _GraphfabExport gf_point gf_node_getCentroid(gf_node* n);
714 
721 _GraphfabExport void gf_node_getCentroidXY(gf_node* n, double* x, double* y);
722 
727 _GraphfabExport void gf_node_setCentroid(gf_node* n, gf_point p);
728 
733 _GraphfabExport double gf_node_getWidth(gf_node* n);
734 
739 _GraphfabExport void gf_node_setWidth(gf_node* n, double width);
740 
745 _GraphfabExport double gf_node_getHeight(gf_node* n);
746 
751 _GraphfabExport void gf_node_setHeight(gf_node* n, double height);
752 
757 _GraphfabExport char* gf_node_getID(gf_node* n);
758 
763 _GraphfabExport void gf_node_setID(gf_node* n, const char* id);
764 
769 _GraphfabExport const char* gf_node_getName(gf_node* n);
770 
775 _GraphfabExport void gf_node_setName(gf_node* n, const char* name);
776 
784 _GraphfabExport int gf_node_getConnectedReactions(gf_node* n, gf_network* m, unsigned int* num, gf_reaction** rxns);
785 
793 _GraphfabExport int gf_node_getAttachedCurves(gf_node* n, gf_network* m, unsigned int* num, gf_curve** curves);
794 
800 _GraphfabExport int gf_node_isIdentical(gf_node* u, gf_node* v);
801 
807 _GraphfabExport int gf_nw_nodeHasCompartment(gf_network* nw, gf_node* x);
808 
816 
817 // Reaction
818 
823 _GraphfabExport void gf_releaseRxn(const gf_reaction* r);
824 
831 _GraphfabExport gf_reaction gf_nw_newReaction(gf_network* nw, const char* id, const char* name);
832 
840 _GraphfabExport gf_reaction* gf_nw_newReactionp(gf_network* nw, const char* id, const char* name);
841 
846 _GraphfabExport char* gf_reaction_getID(gf_reaction* r);
847 
852 _GraphfabExport gf_point gf_reaction_getCentroid(gf_reaction* r);
853 
858 _GraphfabExport void gf_reaction_setCentroid(gf_reaction* r, gf_point p);
859 
864 _GraphfabExport uint64_t gf_reaction_getNumSpec(const gf_reaction* r);
865 
870 _GraphfabExport int gf_reaction_hasSpec(const gf_reaction* r, const gf_node* n);
871 
876 _GraphfabExport gf_specRole gf_reaction_getSpecRole(const gf_reaction* r, uint64_t i);
877 
884 _GraphfabExport const char* gf_roleToStr(gf_specRole role);
885 
892 _GraphfabExport gf_specRole gf_strToRole(const char* str);
893 
898 _GraphfabExport uint64_t gf_reaction_specGeti(const gf_reaction* r, uint64_t i);
899 
904 _GraphfabExport uint64_t gf_reaction_getNumCurves(const gf_reaction* r);
905 
910 _GraphfabExport gf_curve gf_reaction_getCurve(const gf_reaction* r, uint64_t i);
911 
917 _GraphfabExport gf_curve* gf_reaction_getCurvep(const gf_reaction* r, uint64_t i);
918 
923 _GraphfabExport void gf_reaction_recenter(gf_reaction* r);
924 
929 _GraphfabExport void gf_reaction_recalcCurveCPs(gf_reaction* r);
930 
931 // Curve
932 
937 _GraphfabExport void gf_releaseCurve(const gf_curve* c);
938 
943 // _GraphfabExport char* gf_curve_getID(gf_curve* c);
944 
951 _GraphfabExport gf_specRole gf_curve_getRole(gf_curve* c);
952 
957 _GraphfabExport gf_curveCP gf_getCurveCPs(const gf_curve* c);
958 
963 _GraphfabExport int gf_curve_hasArrowhead(const gf_curve* c);
964 
965 
972 _GraphfabExport int gf_curve_getArrowheadVerts(const gf_curve* c, unsigned int* n, gf_point** v);
973 
974 // Comparment
975 
980 _GraphfabExport void gf_releaseCompartment(const gf_compartment* c);
981 
986 _GraphfabExport char* gf_compartment_getID(gf_compartment* c);
987 
993 
999 _GraphfabExport void gf_compartment_setMinCorner(gf_compartment* c, gf_point p);
1000 
1006 
1012 _GraphfabExport void gf_compartment_setMaxCorner(gf_compartment* c, gf_point p);
1013 
1018 _GraphfabExport double gf_compartment_getWidth(gf_compartment* c);
1019 
1024 _GraphfabExport double gf_compartment_getHeight(gf_compartment* c);
1025 
1030 _GraphfabExport uint64_t gf_compartment_getNumElt(gf_compartment* c);
1031 
1039 _GraphfabExport int gf_compartment_addNode(gf_compartment* c, gf_node* n);
1040 
1047 _GraphfabExport int gf_compartment_removeNode(gf_compartment* c, gf_node* n);
1048 
1055 _GraphfabExport int gf_compartment_containsNode(gf_compartment* c, gf_node* n);
1056 
1063 _GraphfabExport int gf_compartment_containsReaction(gf_compartment* c, gf_reaction* r);
1064 
1065 // Transform
1066 
1074 _GraphfabExport void gf_fit_to_window(gf_layoutInfo* l, double left, double top, double right, double bottom);
1075 
1086 _GraphfabExport gf_transform* gf_tf_fitToWindow(gf_layoutInfo* l, double left, double top, double right, double bottom);
1087 
1098 _GraphfabExport void gf_moveNetworkToFirstQuad(gf_layoutInfo* l, double x_disp, double y_disp);
1099 
1105 _GraphfabExport CPoint gf_tf_apply_to_point(gf_transform* tf, CPoint p);
1106 
1111 _GraphfabExport gf_point gf_tf_getScale(gf_transform* tf);
1112 
1119 _GraphfabExport gf_point gf_tf_getDisplacement(gf_transform* tf);
1120 
1128 _GraphfabExport gf_point gf_tf_getPostDisplacement(gf_transform* tf);
1129 
1134 _GraphfabExport void gf_dump_transform(gf_transform* tf);
1135 
1140 _GraphfabExport void gf_release_transform(gf_transform* tf);
1141 
1142 // Canvas
1143 
1148 _GraphfabExport gf_canvas gf_getCanvas(gf_layoutInfo* l);
1149 
1154 _GraphfabExport gf_canvas* gf_getCanvasp(gf_layoutInfo* l);
1155 
1160 _GraphfabExport void gf_clearCanvas(gf_canvas* c);
1161 
1166 _GraphfabExport void gf_releaseCanvas(gf_canvas* c);
1167 
1172 _GraphfabExport unsigned int gf_canvGetWidth(gf_canvas* c);
1173 
1178 _GraphfabExport unsigned int gf_canvGetHeight(gf_canvas* c);
1179 
1185 _GraphfabExport void gf_canvSetWidth(gf_canvas* c, unsigned long width);
1186 
1192 _GraphfabExport void gf_canvSetHeight(gf_canvas* c, unsigned long height);
1193 
1194 // -- Queries --
1195 
1202 _GraphfabExport void gf_getNodeCentroid(gf_layoutInfo* l, const char* id, CPoint* p);
1203 
1204 // -- Configuration
1205 
1214 _GraphfabExport int gf_lockNodeId(gf_layoutInfo* l, const char* id);
1215 
1224 _GraphfabExport int gf_unlockNodeId(gf_layoutInfo* l, const char* id);
1225 
1234 _GraphfabExport int gf_aliasNodeId(gf_layoutInfo* l, const char* id);
1235 
1241 _GraphfabExport void gf_aliasNodebyDegree(gf_layoutInfo* l, const int minDegree);
1242 
1243 // -- Processing --
1244 
1249 _GraphfabExport void gf_randomizeLayout(gf_layoutInfo* m);
1250 
1256 _GraphfabExport void gf_randomizeLayout2(gf_network* n, gf_canvas* c);
1257 
1266 _GraphfabExport void gf_randomizeLayout_fromExtents(gf_network* n, double left, double top, double right, double bottom);
1267 
1268 // -- Output --
1269 
1277 _GraphfabExport int gf_writeSBMLwithLayout(const char* filename, gf_SBMLModel* m, gf_layoutInfo* l);
1278 
1285 _GraphfabExport int gf_writeSBML(const char* filename, gf_SBMLModel* m);
1286 
1293 _GraphfabExport const char* gf_getSBMLwithLayoutStr(gf_SBMLModel* m, gf_layoutInfo* l);
1294 
1299 _GraphfabExport const char* gf_getCurrentLibraryVersion(void);
1300 
1305 _GraphfabExport void gf_free(void* x);
1306 
1312 _GraphfabExport gf_point gf_computeCubicBezierPoint(gf_curveCP* c, Real t);
1313 
1321 _GraphfabExport gf_point* gf_computeCubicBezierLineIntersec(gf_curveCP* c, gf_point* line_start, gf_point* line_end);
1322 
1328 _GraphfabExport int gf_arrowheadStyleGetNumVerts(int style);
1329 
1336 _GraphfabExport gf_point gf_arrowheadStyleGetVert(int style, int n);
1337 
1343 _GraphfabExport int gf_arrowheadStyleIsFilled(int style);
1344 
1349 _GraphfabExport unsigned long gf_arrowheadNumStyles();
1350 
1356 _GraphfabExport void gf_arrowheadSetStyle(gf_specRole role, int style);
1357 
1362 _GraphfabExport int gf_arrowheadGetStyle(gf_specRole role);
1363 
1364 #ifdef __cplusplus
1365 }//extern "C"
1366 #endif
1367 
1368 //-- C++ methods --
1369 #ifdef __cplusplus
1370 
1371 
1372 
1373 #endif
1374 
1375 #endif
_GraphfabExport uint64_t gf_compartment_getNumElt(gf_compartment *c)
Get the number of species in the compartment.
Definition: layout.cpp:1955
_GraphfabExport gf_network gf_getNetwork(gf_layoutInfo *l)
Get the network associated with the model.
Definition: layout.cpp:911
_GraphfabExport char * gf_compartment_getID(gf_compartment *c)
Get the id, user frees memory.
Definition: layout.cpp:1899
_GraphfabExport void gf_free(void *x)
Frees the memory block at x.
Definition: layout.cpp:2244
_GraphfabExport int gf_compartment_removeNode(gf_compartment *c, gf_node *n)
Remove a node from the compartment.
Definition: layout.cpp:1977
_GraphfabExport gf_transform * gf_tf_fitToWindow(gf_layoutInfo *l, double left, double top, double right, double bottom)
Fit to the specified window (do not apply transform)
Definition: layout.cpp:2045
_GraphfabExport void gf_node_lock(gf_node *n)
Lock the node.
Definition: layout.cpp:1424
_GraphfabExport int gf_node_isLocked(gf_node *n)
Is the node locked?
Definition: layout.cpp:1417
_GraphfabExport gf_point gf_tf_getScale(gf_transform *tf)
Get the scale of the transform.
Definition: layout.cpp:2087
_GraphfabExport uint64_t gf_nw_getNumUniqueNodes(const gf_network *n)
Get the number of unique nodes.
Definition: layout.cpp:957
_GraphfabExport CPoint gf_tf_apply_to_point(gf_transform *tf, CPoint p)
Apply transform to point.
Definition: layout.cpp:2080
_GraphfabExport uint64_t gf_nw_getNumRxns(const gf_network *n)
Get the number of reactions.
Definition: layout.cpp:964
_GraphfabExport double gf_compartment_getHeight(gf_compartment *c)
Get the height of the compartment.
Definition: layout.cpp:1948
_GraphfabExport gf_reaction gf_nw_newReaction(gf_network *nw, const char *id, const char *name)
Add a new reaction to the network.
Definition: layout.cpp:1607
_GraphfabExport void gf_randomizeLayout_fromExtents(gf_network *n, double left, double top, double right, double bottom)
Randomize node positions for a given network & extents.
Definition: layout.cpp:2230
_GraphfabExport int gf_nw_removeNode(gf_network *nw, gf_node *node)
Remove a node from the network.
Definition: layout.cpp:1228
_GraphfabExport gf_layoutInfo * gf_processLayout(gf_SBMLModel *lo)
Process the layout info from a document.
Definition: layout.cpp:142
_GraphfabExport void gf_clearNetwork(gf_network *n)
Clear the network - does not deallocate.
Definition: layout.cpp:925
_GraphfabExport unsigned int gf_canvGetWidth(gf_canvas *c)
Get the width of the canvas.
Definition: layout.cpp:2143
_GraphfabExport int gf_aliasNodeId(gf_layoutInfo *l, const char *id)
Create node aliases.
SAGITTARIUS_REAL Real
Make Real visible to C. Consider letting Real lie in top namespace.
Definition: SagittariusCommon.h:136
_GraphfabExport int gf_arrowheadGetStyle(gf_specRole role)
Get the style for the role type.
Definition: layout.cpp:2313
_GraphfabExport gf_specRole gf_reaction_getSpecRole(const gf_reaction *r, uint64_t i)
Get the role for spec i.
Definition: layout.cpp:1701
_GraphfabExport uint64_t gf_reaction_specGeti(const gf_reaction *r, uint64_t i)
Get the global index of a reactant/product/participant given its local index in a reaction...
Definition: layout.cpp:1747
_GraphfabExport void gf_dump_transform(gf_transform *tf)
Dump transform.
Definition: layout.cpp:2108
A point in 2D space.
Definition: layout.h:159
_GraphfabExport void gf_freeLayoutInfo(gf_layoutInfo *l)
Call to clean up an instance of gf_layoutInfo when it is no longer needed.
Definition: layout.cpp:54
_GraphfabExport void gf_node_setName(gf_node *n, const char *name)
Set the name of a node.
Definition: layout.cpp:1508
_GraphfabExport void gf_canvSetHeight(gf_canvas *c, unsigned long height)
Set the height of the canvas.
Definition: layout.cpp:2164
_GraphfabExport double gf_node_getWidth(gf_node *n)
Get the width of the node.
Definition: layout.cpp:1454
_GraphfabExport void gf_node_unlock(gf_node *n)
Unlock the node.
Definition: layout.cpp:1431
_GraphfabExport gf_node * gf_nw_getNodep(gf_network *n, uint64_t i)
Get the node at index i.
Definition: layout.cpp:994
_GraphfabExport const char * gf_roleToStr(gf_specRole role)
Convert role to string.
Definition: layout.cpp:1709
_GraphfabExport gf_layoutInfo * gf_layoutInfo_newp(uint64_t level, uint64_t version, uint64_t width, uint64_t height)
Create a new layout info object.
Definition: layout.cpp:136
_GraphfabExport uint64_t gf_nw_getNumNodes(const gf_network *n)
Get the number of nodes.
Definition: layout.cpp:950
_GraphfabExport void gf_node_getCentroidXY(gf_node *n, double *x, double *y)
Get the centroid of the node.
gf_point c1
Control 1.
Definition: layout.h:205
_GraphfabExport int gf_unlockNodeId(gf_layoutInfo *l, const char *id)
Unlock a node by id.
_GraphfabExport int gf_nw_connectNodeRoleStr(gf_network *nw, gf_node *n, gf_reaction *r, const char *role_str)
Connect a node to a reaction.
Definition: layout.cpp:1276
_GraphfabExport int gf_nw_isLayoutSpecified(gf_network *nw)
Did the SBML model include layout?
Definition: layout.cpp:1296
_GraphfabExport void gf_releaseCanvas(gf_canvas *c)
Release the canvas.
Definition: layout.cpp:2136
_GraphfabExport void gf_moveNetworkToFirstQuad(gf_layoutInfo *l, double x_disp, double y_disp)
Move the entire network to the first quadrant.
Definition: layout.cpp:2070
_GraphfabExport void gf_setModelNamespace(gf_layoutInfo *l, unsigned long level, unsigned long version)
Set the level and version of the SBML.
Definition: layout.cpp:892
_GraphfabExport gf_node gf_nw_getInstance(gf_network *nw, gf_node *n, uint64_t i)
Get the ith instance of an aliased node.
Definition: layout.cpp:1318
_GraphfabExport int gf_writeSBMLwithLayout(const char *filename, gf_SBMLModel *m, gf_layoutInfo *l)
Write an SBML file, including layout.
Definition: layout.cpp:2171
_GraphfabExport gf_point gf_arrowheadStyleGetVert(int style, int n)
Get the nth vertex of the arrow polygon.
Definition: layout.cpp:2276
_GraphfabExport const char * gf_getSBMLwithLayoutStr(gf_SBMLModel *m, gf_layoutInfo *l)
String version of writeSBMLwithLayout.
Definition: layout.cpp:2200
_GraphfabExport gf_compartment * gf_nw_getCompartmentp(gf_network *n, uint64_t i)
Get the compartment at index i.
Definition: layout.cpp:1068
_GraphfabExport int gf_writeSBML(const char *filename, gf_SBMLModel *m)
Write an SBML file (does not include layout.
Definition: layout.cpp:2190
_GraphfabExport gf_layoutInfo gf_layoutInfo_new(uint64_t level, uint64_t version, uint64_t width, uint64_t height)
Create a new layout info object.
Definition: layout.cpp:126
_GraphfabExport void gf_compartment_setMinCorner(gf_compartment *c, gf_point p)
Set the "upper left" corner.
Definition: layout.cpp:1920
_GraphfabExport int gf_curve_hasArrowhead(const gf_curve *c)
Returns true if the given curve should be drawn with an arrowhead.
Definition: layout.cpp:1860
_GraphfabExport uint64_t gf_reaction_getNumSpec(const gf_reaction *r)
Get the number of species in the reaction.
Definition: layout.cpp:1668
_GraphfabExport void gf_node_setIsAlias(gf_node *n, int isAlias)
Set whether the node is an alias node or not.
Definition: layout.cpp:1410
_GraphfabExport gf_compartment * gf_nw_findCompartmentById(gf_network *n, const char *id)
Find a compartment by id.
Definition: layout.cpp:1076
_GraphfabExport gf_reaction * gf_nw_newReactionp(gf_network *nw, const char *id, const char *name)
Add a new reaction to the network.
Definition: layout.cpp:1636
_GraphfabExport void gf_release_transform(gf_transform *tf)
Release transform.
Definition: layout.cpp:2114
_GraphfabExport int gf_node_getConnectedReactions(gf_node *n, gf_network *m, unsigned int *num, gf_reaction **rxns)
Get a list of all reactions connected to the node.
Definition: layout.cpp:1519
_GraphfabExport const char * gf_getCurrentLibraryVersion(void)
Returns the current version of the library.
Definition: layout.cpp:2240
_GraphfabExport int gf_node_isIdentical(gf_node *u, gf_node *v)
Tests whether two nodes are identical.
Definition: layout.cpp:1561
_GraphfabExport const char * gf_getDefaultCompartmentId()
Get the id of the default SBML compartment.
Definition: layout.cpp:897
_GraphfabExport int gf_node_alias(gf_node *n, gf_network *m)
Alias the node.
Definition: layout.cpp:1388
_GraphfabExport void gf_releaseNetwork(gf_network *n)
Release the network.
Definition: layout.cpp:929
_GraphfabExport void gf_clearNode(gf_node *n)
Clear the node - does not deallocate.
Definition: layout.cpp:1352
Error information.
_GraphfabExport void gf_releaseCurve(const gf_curve *c)
Release the curve.
Definition: layout.cpp:1798
_GraphfabExport void gf_arrowheadSetStyle(gf_specRole role, int style)
Set the arrowhead style for a specific role type.
Definition: layout.cpp:2288
_GraphfabExport void gf_node_setID(gf_node *n, const char *id)
Get the id, user frees memory.
Definition: layout.cpp:1486
_GraphfabExport gf_point gf_tf_getPostDisplacement(gf_transform *tf)
Get the displacement component of the transform.
Definition: layout.cpp:2100
_GraphfabExport void gf_node_setWidth(gf_node *n, double width)
Set the width of the node.
Definition: layout.cpp:1460
_GraphfabExport unsigned long gf_arrowheadNumStyles()
Get the number of arrowhead styles.
Definition: layout.cpp:2284
_GraphfabExport void gf_nw_rebuildCurves(gf_network *n)
Rebuild all curves in the network.
Definition: layout.cpp:1089
_GraphfabExport gf_compartment * gf_nw_nodeGetCompartment(gf_network *nw, gf_node *x)
Get the compartment which contains node x.
Definition: layout.cpp:1584
_GraphfabExport uint64_t gf_reaction_getNumCurves(const gf_reaction *r)
Get the number of curves in the reaction.
Definition: layout.cpp:1755
gf_point e
End.
Definition: layout.h:209
_GraphfabExport gf_node * gf_nw_getInstancep(gf_network *nw, gf_node *n, uint64_t i)
Get the ith instance of an aliased node.
Definition: layout.cpp:1332
_GraphfabExport int gf_node_getAttachedCurves(gf_node *n, gf_network *m, unsigned int *num, gf_curve **curves)
Get a list of all curves connected to the node.
Definition: layout.cpp:1540
_GraphfabExport int gf_lockNodeId(gf_layoutInfo *l, const char *id)
Lock a node by id.
_GraphfabExport void gf_freeModelAndLayout(gf_SBMLModel *mod, gf_layoutInfo *l)
Call to clean up an instance of gf_layoutInfo and gf_SBMLModel when they are no longer needed...
Definition: layout.cpp:76
_GraphfabExport gf_point gf_tf_getDisplacement(gf_transform *tf)
Get the displacement of the transform.
Definition: layout.cpp:2093
_GraphfabExport gf_curveCP gf_getCurveCPs(const gf_curve *c)
Get the CPs for the curve.
Definition: layout.cpp:1856
_GraphfabExport int gf_arrowheadStyleIsFilled(int style)
Is the given style filled?
Definition: layout.cpp:2280
_GraphfabExport gf_network * gf_getNetworkp(gf_layoutInfo *l)
Get the network associated with the model.
Definition: layout.cpp:918
_GraphfabExport gf_specRole gf_strToRole(const char *str)
Convert string to role.
Definition: layout.cpp:1724
_GraphfabExport int gf_nw_nodeHasCompartment(gf_network *nw, gf_node *x)
Return true if the node has a compartment assigned.
Definition: layout.cpp:1571
_GraphfabExport char * gf_reaction_getID(gf_reaction *r)
Get the id, user frees memory.
Definition: layout.cpp:1642
_GraphfabExport int gf_reaction_hasSpec(const gf_reaction *r, const gf_node *n)
Return true if the reaction has the given species.
Definition: layout.cpp:1676
_GraphfabExport gf_node * gf_nw_newNodep(gf_network *nw, const char *id, const char *name, gf_compartment *compartment)
Add a new node to the network.
Definition: layout.cpp:1208
_GraphfabExport int gf_node_make_alias(gf_node *n, gf_network *m)
Create aliases of a given node.
Definition: layout.cpp:1398
_GraphfabExport void gf_canvSetWidth(gf_canvas *c, unsigned long width)
Set the width of the canvas.
Definition: layout.cpp:2150
_GraphfabExport void gf_setDefaultCompartmentId(const char *id)
Set the id of the default SBML compartment.
Definition: layout.cpp:901
_GraphfabExport gf_curve gf_reaction_getCurve(const gf_reaction *r, uint64_t i)
Get the curve i.
Definition: layout.cpp:1767
_GraphfabExport void gf_nw_setId(gf_network *n, const char *id)
Set the id of the network (via the SBML model)
Definition: layout.cpp:943
Real x
x coordinate
Definition: layout.h:174
_GraphfabExport gf_node * gf_nw_getNodepFromId(gf_network *nw, const char *id)
Get the node with the given id.
Definition: layout.cpp:1010
_GraphfabExport gf_canvas * gf_getCanvasp(gf_layoutInfo *l)
Get the canvas associated with the model.
Definition: layout.cpp:2125
A 2D cubic Bezier curve.
Definition: layout.h:99
_GraphfabExport void gf_reaction_recalcCurveCPs(gf_reaction *r)
Recalculate the curve CPs, don't recenter.
Definition: layout.cpp:1791
_GraphfabExport gf_compartment * gf_nw_newCompartmentp(gf_network *nw, const char *id, const char *name)
Add a new compartment to the network.
Definition: layout.cpp:1130
First file included.
Real y
y coordinate
Definition: layout.h:176
_GraphfabExport void gf_reaction_setCentroid(gf_reaction *r, gf_point p)
Set the centroid of the reaction.
Definition: layout.cpp:1661
_GraphfabExport void gf_clearCanvas(gf_canvas *c)
Get the canvas associated with the model.
Definition: layout.cpp:2132
_GraphfabExport void gf_node_setCentroid(gf_node *n, gf_point p)
Set the centroid of the node.
Definition: layout.cpp:1446
_GraphfabExport void gf_releaseNode(const gf_node *n)
Release the node.
Definition: layout.cpp:1356
_GraphfabExport gf_node * gf_nw_getAliasInstancep(gf_network *nw, gf_node *n, uint64_t i)
Get the ith instance of an aliased node.
Definition: layout.cpp:1338
_GraphfabExport void gf_node_setCompartment(gf_node *n, gf_compartment *c)
Add a node to a compartment.
Definition: layout.cpp:1344
Type which holds layout info.
Definition: layout.h:138
_GraphfabExport void gf_compartment_setMaxCorner(gf_compartment *c, gf_point p)
Set the "lower right" corner.
Definition: layout.cpp:1934
_GraphfabExport char * gf_nw_getId(gf_network *n)
Get the id of the network (i.e. the SBML model)
Definition: layout.cpp:936
_GraphfabExport gf_SBMLModel gf_SBMLModel_new()
Create a new SBML model.
Definition: layout.cpp:114
_GraphfabExport void gf_reaction_recenter(gf_reaction *r)
Recenter reaction centroid.
Definition: layout.cpp:1784
_GraphfabExport int gf_compartment_containsReaction(gf_compartment *c, gf_reaction *r)
Return whether the compartment contains this node.
Definition: layout.cpp:2007
_GraphfabExport gf_SBMLModel * gf_SBMLModel_newp()
Create a new SBML model.
Definition: layout.cpp:120
_GraphfabExport int gf_nw_isNodeConnected(gf_network *nw, gf_node *node, gf_reaction *reaction)
Return whether the given node is connected to the given reaction.
Definition: layout.cpp:1283
_GraphfabExport gf_canvas gf_getCanvas(gf_layoutInfo *l)
Get the canvas associated with the model.
Definition: layout.cpp:2120
_GraphfabExport void gf_releaseRxn(const gf_reaction *r)
Release the reaction.
Definition: layout.cpp:1599
_GraphfabExport gf_layoutInfo * gf_loadSBMLIntoLayoutEngine(const char *buf, gf_SBMLModel *r)
[DEPRECATED] Load SBML document from memory buffer and process
Definition: layout.cpp:804
_GraphfabExport gf_reaction gf_nw_getRxn(gf_network *n, uint64_t i)
Get the node at index i.
Definition: layout.cpp:1027
_GraphfabExport gf_node * gf_nw_newAliasNodep(gf_network *nw, gf_node *source)
Create and add an alias node from a given source node.
Definition: layout.cpp:1215
_GraphfabExport const char * gf_node_getName(gf_node *n)
Get the name, client must free memory.
Definition: layout.cpp:1497
_GraphfabExport int gf_nw_getNumAliasInstances(gf_network *nw, gf_node *n)
Get the number of instances of the node.
Definition: layout.cpp:1314
_GraphfabExport double gf_compartment_getWidth(gf_compartment *c)
Get the width of the compartment.
Definition: layout.cpp:1941
_GraphfabExport gf_node gf_nw_newNode(gf_network *nw, const char *id, const char *name, gf_compartment *compartment)
Add a new node to the network.
Definition: layout.cpp:1136
_GraphfabExport void gf_nw_recenterJunctions(gf_network *n)
Recenter reaction junctions.
Definition: layout.cpp:1095
_GraphfabExport double gf_node_getHeight(gf_node *n)
Get the height of the node.
Definition: layout.cpp:1467
_GraphfabExport gf_compartment gf_nw_newCompartment(gf_network *nw, const char *id, const char *name)
Add a new compartment to the network.
Definition: layout.cpp:1101
A species in a model.
Definition: layout.h:74
_GraphfabExport gf_point gf_compartment_getMinCorner(gf_compartment *c)
Get the "upper left" corner.
Definition: layout.cpp:1913
_GraphfabExport int gf_compartment_containsNode(gf_compartment *c, gf_node *n)
Return whether the compartment contains this node.
Definition: layout.cpp:1992
_GraphfabExport uint64_t gf_nw_getNumComps(const gf_network *n)
Get the number of compartments.
Definition: layout.cpp:971
_GraphfabExport char * gf_node_getID(gf_node *n)
Get the id, user frees memory.
Definition: layout.cpp:1479
A point in 2D space.
Definition: layout.h:172
_GraphfabExport void gf_freeLayoutInfoHierarch(gf_layoutInfo *l)
Call to clean up an instance of gf_layoutInfo and all contained data structures.
Definition: layout.cpp:62
A compartment in a model.
Definition: layout.h:111
_GraphfabExport unsigned int gf_canvGetHeight(gf_canvas *c)
Get the height of the canvas.
Definition: layout.cpp:2157
A reaction network.
Definition: layout.h:61
_GraphfabExport int gf_nw_getNumInstances(gf_network *nw, gf_node *n)
Get the number of instances of the node.
Definition: layout.cpp:1305
_GraphfabExport gf_compartment gf_nw_getCompartment(gf_network *n, uint64_t i)
Get the compartment at index i.
Definition: layout.cpp:1060
A curve control points.
Definition: layout.h:201
_GraphfabExport gf_point gf_node_getCentroid(gf_node *n)
Get the centroid of the node.
Definition: layout.cpp:1438
_GraphfabExport gf_specRole gf_curve_getRole(gf_curve *c)
Get the id, user frees memory.
Definition: layout.cpp:1833
_GraphfabExport gf_node gf_nw_getUniqueNode(gf_network *n, uint64_t i)
Get the unique node at index i.
Definition: layout.cpp:986
C wrapper for SBMLDocument.
Definition: autolayoutSBML.h:49
_GraphfabExport gf_point * gf_computeCubicBezierLineIntersec(gf_curveCP *c, gf_point *line_start, gf_point *line_end)
Compute the intersection between a cubic Bezier and a line.
Definition: layout.cpp:2253
_GraphfabExport int gf_curve_getArrowheadVerts(const gf_curve *c, unsigned int *n, gf_point **v)
Get the vertices for the curve's arrowhead.
Definition: layout.cpp:1867
_GraphfabExport gf_point gf_reaction_getCentroid(gf_reaction *r)
Get the centroid of the reaction.
Definition: layout.cpp:1651
_GraphfabExport void gf_fit_to_window(gf_layoutInfo *l, double left, double top, double right, double bottom)
Fit to the specified window.
Definition: layout.cpp:2022
gf_specRole
Species role in a reaction.
Definition: layout.h:219
gf_point c2
Control 2.
Definition: layout.h:207
_GraphfabExport void gf_node_setHeight(gf_node *n, double height)
Set the height of the node.
Definition: layout.cpp:1473
A reaction in a model.
Definition: layout.h:86
_GraphfabExport int gf_compartment_addNode(gf_compartment *c, gf_node *n)
Add a node to the compartment.
Definition: layout.cpp:1962
_GraphfabExport void gf_aliasNodebyDegree(gf_layoutInfo *l, const int minDegree)
Create node aliases by node degree.
Definition: layout.cpp:287
A 2D affine transform.
Definition: layout.h:187
_GraphfabExport void gf_releaseCompartment(const gf_compartment *c)
Release a compartment object.
Definition: layout.cpp:1888
_GraphfabExport int gf_nw_connectNode(gf_network *nw, gf_node *node, gf_reaction *reaction, gf_specRole role)
Connect a node to a reaction.
Definition: layout.cpp:1251
_GraphfabExport gf_node * gf_nw_getUniqueNodep(gf_network *n, uint64_t i)
Get the node at index i.
Definition: layout.cpp:1002
_GraphfabExport gf_point gf_computeCubicBezierPoint(gf_curveCP *c, Real t)
Compute a point on the parametric curve.
Definition: layout.cpp:2248
_GraphfabExport gf_node gf_nw_getNode(gf_network *n, uint64_t i)
Get the node at index i.
Definition: layout.cpp:978
_GraphfabExport void gf_randomizeLayout(gf_layoutInfo *m)
Randomize node positions.
Definition: layout.cpp:2212
_GraphfabExport void gf_nw_removeRxn(gf_network *n, gf_reaction *r)
Remove the given reaction.
Definition: layout.cpp:1051
_GraphfabExport int gf_arrowheadStyleGetNumVerts(int style)
Get the number of vertices in the arrowhead polygon.
Definition: layout.cpp:2272
_GraphfabExport gf_curve * gf_reaction_getCurvep(const gf_reaction *r, uint64_t i)
Get the curve i.
Definition: layout.cpp:1777
gf_point s
Start.
Definition: layout.h:203
_GraphfabExport int gf_node_isAliased(gf_node *n)
Is the node aliased?
Definition: layout.cpp:1403
_GraphfabExport gf_point gf_compartment_getMaxCorner(gf_compartment *c)
Get the "lower right" corner.
Definition: layout.cpp:1927
Drawing canvas.
Definition: layout.h:124
_GraphfabExport void gf_randomizeLayout2(gf_network *n, gf_canvas *c)
Randomize node positions for a given network & canvas.
Definition: layout.cpp:2221
_GraphfabExport gf_reaction * gf_nw_getRxnp(gf_network *n, uint64_t i)
Get the node at index i.
Definition: layout.cpp:1039
_GraphfabExport void gf_getNodeCentroid(gf_layoutInfo *l, const char *id, CPoint *p)
Get the centroid of a node.
Definition: layout.cpp:228
_GraphfabExport gf_node gf_nw_aliasOf(gf_network *nw, gf_node *n)
Creates a new node that is the alias of a given node.
Definition: layout.cpp:1179