|
| 1 | +#ifndef CPP_GRAPHTRACER_H |
| 2 | +#defineCPP_GRAPHTRACER_H |
| 3 | + |
| 4 | +#include"Tracer.h" |
| 5 | + |
| 6 | +classGraphTracer : Tracer { |
| 7 | +public: |
| 8 | +GraphTracer(string title =""); |
| 9 | + |
| 10 | + GraphTracerset(json array2d); |
| 11 | + |
| 12 | + GraphTracerset(); |
| 13 | + |
| 14 | + GraphTracerreset(); |
| 15 | + |
| 16 | + GraphTracerdelay(); |
| 17 | + |
| 18 | + GraphTracerdirected(json isDirected); |
| 19 | + |
| 20 | + GraphTracerdirected(); |
| 21 | + |
| 22 | + GraphTracerweighted(json isWeighted); |
| 23 | + |
| 24 | + GraphTracerweighted(); |
| 25 | + |
| 26 | + GraphTraceraddNode(json id, json weight, json x, json y, json visitedCount, json selectedCount); |
| 27 | + |
| 28 | + GraphTraceraddNode(json id, json weight, json x, json y, json visitedCount); |
| 29 | + |
| 30 | + GraphTraceraddNode(json id, json weight, json x, json y); |
| 31 | + |
| 32 | + GraphTraceraddNode(json id, json weight, json x); |
| 33 | + |
| 34 | + GraphTraceraddNode(json id, json weight); |
| 35 | + |
| 36 | + GraphTraceraddNode(json id); |
| 37 | + |
| 38 | + GraphTracerupdateNode(json id, json weight, json x, json y, json visitedCount, json selectedCount); |
| 39 | + |
| 40 | + GraphTracerupdateNode(json id, json weight, json x, json y, json visitedCount); |
| 41 | + |
| 42 | + GraphTracerupdateNode(json id, json weight, json x, json y); |
| 43 | + |
| 44 | + GraphTracerupdateNode(json id, json weight, json x); |
| 45 | + |
| 46 | + GraphTracerupdateNode(json id, json weight); |
| 47 | + |
| 48 | + GraphTracerupdateNode(json id); |
| 49 | + |
| 50 | + GraphTracerremoveNode(json id); |
| 51 | + |
| 52 | + GraphTraceraddEdge(json source, json target, json weight, json visitedCount, json selectedCount); |
| 53 | + |
| 54 | + GraphTraceraddEdge(json source, json target, json weight, json visitedCount); |
| 55 | + |
| 56 | + GraphTraceraddEdge(json source, json target, json weight); |
| 57 | + |
| 58 | + GraphTraceraddEdge(json source, json target); |
| 59 | + |
| 60 | + GraphTracerupdateEdge(json source, json target, json weight, json visitedCount, json selectedCount); |
| 61 | + |
| 62 | + GraphTracerupdateEdge(json source, json target, json weight, json visitedCount); |
| 63 | + |
| 64 | + GraphTracerupdateEdge(json source, json target, json weight); |
| 65 | + |
| 66 | + GraphTracerupdateEdge(json source, json target); |
| 67 | + |
| 68 | + GraphTracerremoveEdge(json source, json target); |
| 69 | + |
| 70 | + GraphTracerlayoutCircle(); |
| 71 | + |
| 72 | + GraphTracerlayoutTree(json root, json sorted); |
| 73 | + |
| 74 | + GraphTracerlayoutTree(json root); |
| 75 | + |
| 76 | + GraphTracerlayoutTree(); |
| 77 | + |
| 78 | + GraphTracerlayoutRandom(); |
| 79 | + |
| 80 | + GraphTracervisit(json target, json source, json weight); |
| 81 | + |
| 82 | + GraphTracervisit(json target, json source); |
| 83 | + |
| 84 | + GraphTracervisit(json target); |
| 85 | + |
| 86 | + GraphTracerleave(json target, json source, json weight); |
| 87 | + |
| 88 | + GraphTracerleave(json target, json source); |
| 89 | + |
| 90 | + GraphTracerleave(json target); |
| 91 | + |
| 92 | + GraphTracerselect(json target, json source); |
| 93 | + |
| 94 | + GraphTracerselect(json target); |
| 95 | + |
| 96 | + GraphTracerdeselect(json target, json source); |
| 97 | + |
| 98 | + GraphTracerdeselect(json target); |
| 99 | + |
| 100 | + GraphTracerlog(json logTracer); |
| 101 | +}; |
| 102 | + |
| 103 | +#endif |