summaryrefslogtreecommitdiff
path: root/tikzit/src/data/nodestyle.h
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/data/nodestyle.h')
-rw-r--r--tikzit/src/data/nodestyle.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/tikzit/src/data/nodestyle.h b/tikzit/src/data/nodestyle.h
deleted file mode 100644
index 00d1b20..0000000
--- a/tikzit/src/data/nodestyle.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef NODESTYLE_H
-#define NODESTYLE_H
-
-#include <QColor>
-
-enum NodeShape {
- Square, UpTriangle, DownTriangle, Circle
-};
-
-class NodeStyle
-{
-public:
- NodeStyle();
- NodeStyle(QString nm, NodeShape sh, QColor fillCol);
- NodeStyle(QString nm, NodeShape sh, QColor fillCol, QColor strokeCol, int strokeThick);
- bool isNone();
- QString name;
- NodeShape shape;
- QColor fillColor;
- QColor strokeColor;
- int strokeThickness;
-};
-
-extern NodeStyle *noneStyle;
-
-#endif // NODESTYLE_H