summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/HighlightAction.cpp')
-rw-r--r--Swift/Controllers/HighlightAction.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/Swift/Controllers/HighlightAction.cpp b/Swift/Controllers/HighlightAction.cpp
index 492d4d2..80d9d85 100644
--- a/Swift/Controllers/HighlightAction.cpp
+++ b/Swift/Controllers/HighlightAction.cpp
@@ -4,6 +4,12 @@
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
+/*
+ * Copyright (c) 2015 Isode Limited.
+ * All rights reserved.
+ * See the COPYING file for more information.
+ */
+
#include <Swift/Controllers/HighlightAction.h>
namespace Swift {
@@ -25,4 +31,32 @@ void HighlightAction::setPlaySound(bool playSound)
}
}
+bool operator ==(HighlightAction const& a, HighlightAction const& b) {
+ if (a.highlightAllText() != b.highlightAllText()) {
+ return false;
+ }
+
+ if (a.getTextColor() != b.getTextColor()) {
+ return false;
+ }
+
+ if (a.getTextBackground() != b.getTextBackground()) {
+ return false;
+ }
+
+ if (a.playSound() != b.playSound()) {
+ return false;
+ }
+
+ if (a.getSoundFile() != b.getSoundFile()) {
+ return false;
+ }
+
+ return true;
+}
+
+bool operator !=(HighlightAction const& a, HighlightAction const& b) {
+ return !(a == b);
+}
+
}