summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 27a71b0)
raw | patch | inline | side by side (parent: 27a71b0)
| author | ishmal <ishmal@users.sourceforge.net> | |
| Sat, 25 Mar 2006 00:32:59 +0000 (00:32 +0000) | ||
| committer | ishmal <ishmal@users.sourceforge.net> | |
| Sat, 25 Mar 2006 00:32:59 +0000 (00:32 +0000) |
| src/trace/trace.cpp | patch | blob | history | |
| src/trace/trace.h | patch | blob | history |
diff --git a/src/trace/trace.cpp b/src/trace/trace.cpp
index 5431b4416b2c40e74106db504224b9e6d1fc886c..b928ccba941514a9187ff090813823313c8598b7 100644 (file)
--- a/src/trace/trace.cpp
+++ b/src/trace/trace.cpp
//# T R A C E
//#########################################################################
+/**
+ * Whether we want to enable SIOX subimage selection
+ */
+void Tracer::enableSiox(bool enable)
+{
+ sioxEnabled = enable;
+}
+
/**
* Threaded method that does single bitmap--->path conversion
diff --git a/src/trace/trace.h b/src/trace/trace.h
index bf4a345a6952622c9f8fa3c32b0ca12bcc95dc2e..4a5622b17a8c1a5611c5f51305ce2d46c88ceeb2 100644 (file)
--- a/src/trace/trace.h
+++ b/src/trace/trace.h
{
engine = NULL;
selectedItem = NULL;
+ sioxEnabled = false;
}
*/
void abort();
+ /**
+ * Whether we want to enable SIOX subimage selection
+ */
+ void enableSiox(bool enable);
+
private:
SPItem *selectedItem;
+ bool sioxEnabled;
+
};//class Tracer