summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Maudsley <richard.maudsley@isode.com>2014-07-16 13:47:27 (GMT)
committerSwift Review <review@swift.im>2014-07-29 09:48:04 (GMT)
commit4ab20a452e0af56c7ee210f863aeae31450954cc (patch)
treebe0a3777eb7bd814e4c6b9660a77dbb8fafb90d3 /Swift/Controllers/HighlightManager.cpp
parent9c5c731845881996f45b32ea6de12e0647f4634d (diff)
downloadswift-4ab20a452e0af56c7ee210f863aeae31450954cc.zip
swift-4ab20a452e0af56c7ee210f863aeae31450954cc.tar.bz2
Add ability to reorder highlight rules list.
Test-Information: Add several highlight rules. Verify that the up and down buttons reorder the items in the list. Change-Id: I6272799e2b2767ddfa01068c2ffcd1fb4651e11d
Diffstat (limited to 'Swift/Controllers/HighlightManager.cpp')
-rw-r--r--Swift/Controllers/HighlightManager.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Swift/Controllers/HighlightManager.cpp b/Swift/Controllers/HighlightManager.cpp
index eac562f..ca0567e 100644
--- a/Swift/Controllers/HighlightManager.cpp
+++ b/Swift/Controllers/HighlightManager.cpp
@@ -103,6 +103,14 @@ void HighlightManager::removeRule(int index)
rules_->list_.erase(rules_->list_.begin() + index);
}
+void HighlightManager::swapRules(const size_t first, const size_t second) {
+ assert(first < rules_->getSize());
+ assert(second < rules_->getSize());
+ const HighlightRule swap = rules_->getRule(first);
+ rules_->setRule(first, rules_->getRule(second));
+ rules_->setRule(second, swap);
+}
+
void HighlightManager::storeSettings()
{
storingSettings_ = true; // don't reload settings while saving