summaryrefslogtreecommitdiff
path: root/tikzit/src/data/nodestyle.cpp
diff options
context:
space:
mode:
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"; }