summaryrefslogtreecommitdiff
path: root/tikzit/src/data/nodestyle.cpp
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2017-02-28 14:46:39 +0100
committerAleks Kissinger <aleks0@gmail.com>2017-02-28 14:46:39 +0100
commitcb322a3acee9debf40c48ad1e3fb4458b0f51b7f (patch)
tree2cd3dc1060885152f0c706e0cf52bff0d8181d1e /tikzit/src/data/nodestyle.cpp
parente1756ba69dd626073e22fd0a4f4c5fda42c88829 (diff)
generic nodes
Diffstat (limited to 'tikzit/src/data/nodestyle.cpp')
-rw-r--r--tikzit/src/data/nodestyle.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/tikzit/src/data/nodestyle.cpp b/tikzit/src/data/nodestyle.cpp
new file mode 100644
index 0000000..109e2af
--- /dev/null
+++ b/tikzit/src/data/nodestyle.cpp
@@ -0,0 +1,30 @@
+#include "nodestyle.h"
+
+NodeStyle::NodeStyle()
+{
+ name = "none";
+ shape = NodeShape::Circle;
+ fillColor = Qt::white;
+ strokeColor = Qt::black;
+ strokeThickness = 1;
+}
+
+NodeStyle::NodeStyle(QString nm, NodeShape sh, QColor fillCol)
+{
+ name = nm;
+ shape = sh;
+ fillColor = fillCol;
+ strokeColor = Qt::black;
+ strokeThickness = 1;
+}
+
+NodeStyle::NodeStyle(QString nm, NodeShape sh, QColor fillCol, QColor strokeCol, int strokeThick)
+{
+ name = nm;
+ shape = sh;
+ fillColor = fillCol;
+ strokeColor = strokeCol;
+ strokeThickness = strokeThick;
+}
+
+bool NodeStyle::isNone() { return name == "none"; }