40 #ifndef __SBNW_LAYOUT_ARROWHEAD_H_
41 #define __SBNW_LAYOUT_ARROWHEAD_H_
46 #include "graphfab/layout/point.h"
58 typedef int ArrowheadStyle;
63 virtual ~Arrowhead() {}
65 virtual unsigned long getNumVerts()
const = 0;
66 virtual Point getVert(
unsigned long n)
const = 0;
68 Point getTransformedVert(
unsigned long n)
const {
69 return tf_*getVert(n);
72 Affine2d getTransform()
const {
return tf_; }
74 void setTransform(
const Affine2d& tf,
bool recurse =
true) { tf_ = tf; }
76 Affine2d getInverseTransform()
const {
return itf_; }
78 void setInverseTransform(
const Affine2d& itf,
bool recurse =
true) { itf_ = itf; }
88 class PlainArrowhead :
public Arrowhead {
90 virtual unsigned long getNumVerts()
const {
94 virtual Point getVert(
unsigned long n)
const {
103 SBNW_THROW(InvalidParameterException,
"Index out of range",
"Arrowhead::getVert");
109 class SubstrateArrowhead :
public Arrowhead {
111 virtual unsigned long getNumVerts()
const;
113 virtual Point getVert(
unsigned long n)
const;
116 class ProductArrowhead :
public Arrowhead {
118 virtual unsigned long getNumVerts()
const;
120 virtual Point getVert(
unsigned long n)
const;
123 class ActivatorArrowhead :
public Arrowhead {
125 virtual unsigned long getNumVerts()
const;
127 virtual Point getVert(
unsigned long n)
const;
130 class InhibitorArrowhead :
public Arrowhead {
132 virtual unsigned long getNumVerts()
const;
134 virtual Point getVert(
unsigned long n)
const;
137 class ModifierArrowhead :
public Arrowhead {
139 virtual unsigned long getNumVerts()
const;
141 virtual Point getVert(
unsigned long n)
const;
144 class ArrowheadStyles {
146 static unsigned long count();
148 static bool isFilled(ArrowheadStyle style);
150 static unsigned long getNumVerts(ArrowheadStyle style);
152 static Point getVert(ArrowheadStyle style,
int n);
156 extern ArrowheadStyle sub_arrow_style_;
157 inline ArrowheadStyle ArrowheadStyleLookup(
const SubstrateArrowhead* ) {
158 return sub_arrow_style_;
161 extern ArrowheadStyle prod_arrow_style_;
162 inline ArrowheadStyle ArrowheadStyleLookup(
const ProductArrowhead* ) {
163 return prod_arrow_style_;
166 extern ArrowheadStyle act_arrow_style_;
167 inline ArrowheadStyle ArrowheadStyleLookup(
const ActivatorArrowhead* ) {
168 return act_arrow_style_;
171 extern ArrowheadStyle inh_arrow_style_;
172 inline ArrowheadStyle ArrowheadStyleLookup(
const InhibitorArrowhead* ) {
173 return inh_arrow_style_;
176 extern ArrowheadStyle mod_arrow_style_;
177 inline ArrowheadStyle ArrowheadStyleLookup(
const ModifierArrowhead* ) {
178 return mod_arrow_style_;
182 template<
typename ArrowheadT>
183 class ArrowheadStyleControl {
188 class ArrowheadStyleControl<SubstrateArrowhead> {
190 static void set(ArrowheadStyle val) {
192 sub_arrow_style_ = val;
195 static ArrowheadStyle
get() {
196 return sub_arrow_style_;
201 class ArrowheadStyleControl<ProductArrowhead> {
203 static void set(ArrowheadStyle val) {
205 prod_arrow_style_ = val;
208 static ArrowheadStyle
get() {
209 return prod_arrow_style_;
214 class ArrowheadStyleControl<ActivatorArrowhead> {
216 static void set(ArrowheadStyle val) {
218 act_arrow_style_ = val;
221 static ArrowheadStyle
get() {
222 return act_arrow_style_;
227 class ArrowheadStyleControl<InhibitorArrowhead> {
229 static void set(ArrowheadStyle val) {
231 inh_arrow_style_ = val;
234 static ArrowheadStyle
get() {
235 return inh_arrow_style_;
240 class ArrowheadStyleControl<ModifierArrowhead> {
242 static void set(ArrowheadStyle val) {
244 mod_arrow_style_ = val;
247 static ArrowheadStyle
get() {
248 return mod_arrow_style_;
Definition: SagittariusCommon.cpp:38