Display execution log as a tab instead of a modal window

This commit is contained in:
Christophe Dumez
2010-12-20 18:07:36 +00:00
parent c3b7aeadd7
commit 897d0be08e
12 changed files with 133 additions and 98 deletions

View File

@@ -600,6 +600,16 @@ public:
setValue(QString::fromUtf8("Preferences/Search/SearchEnabled"), enabled);
}
// Execution Log
bool isExecutionLogEnabled() const {
return value(QString::fromUtf8("Preferences/ExecutionLog/enabled"), false).toBool();
}
void setExecutionLogEnabled(bool b) {
setValue(QString::fromUtf8("Preferences/ExecutionLog/enabled"), b);
}
// Queueing system
bool isQueueingSystemEnabled() const {
return value("Preferences/Queueing/QueueingEnabled", false).toBool();