summaryrefslogtreecommitdiff
path: root/src/data/style.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/style.cpp')
-rw-r--r--src/data/style.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/data/style.cpp b/src/data/style.cpp
index fe33ee0..af6a13f 100644
--- a/src/data/style.cpp
+++ b/src/data/style.cpp
@@ -67,6 +67,16 @@ QBrush Style::brush() const
else return QBrush(tikzit->colorByName(col));
}
+bool Style::hasFill() const
+{
+ return (propertyWithDefault("fill", "none") != "none");
+}
+
+bool Style::hasStroke() const
+{
+ return (propertyWithDefault("draw", "none") != "none");
+}
+
QString Style::shape(bool tikzitOverride) const
{
return propertyWithDefault("shape", "circle", tikzitOverride);