summaryrefslogtreecommitdiff
path: root/core/settings/launcher/tabconfig.h
authorsandman <sandman>2002-10-08 01:21:52 (UTC)
committer sandman <sandman>2002-10-08 01:21:52 (UTC)
commitc43b5d600a7d1dcaadcba2cb047a60313b37f2f2 (patch) (side-by-side diff)
treedbe1311d34631e7d933aa10b2d6a9dc8f97206ab /core/settings/launcher/tabconfig.h
parent5e450f24ca13923535754b33a1d1645709a8259d (diff)
downloadopie-c43b5d600a7d1dcaadcba2cb047a60313b37f2f2.zip
opie-c43b5d600a7d1dcaadcba2cb047a60313b37f2f2.tar.gz
opie-c43b5d600a7d1dcaadcba2cb047a60313b37f2f2.tar.bz2
- added an "All Tabs" tab entry, which will affect all tabs
- enabled "What's this" help mode -- many tooltips still missing
Diffstat (limited to 'core/settings/launcher/tabconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/launcher/tabconfig.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/settings/launcher/tabconfig.h b/core/settings/launcher/tabconfig.h
index 8b6b103..eebfd36 100644
--- a/core/settings/launcher/tabconfig.h
+++ b/core/settings/launcher/tabconfig.h
@@ -45,9 +45,22 @@ struct TabConfig {
QString m_text_color;
QString m_font_family;
int m_font_size;
int m_font_weight;
bool m_font_italic;
bool m_changed;
+
+ bool operator == ( const TabConfig &tc )
+ {
+ return ( m_view == tc. m_view ) &&
+ ( m_bg_type == tc. m_bg_type ) &&
+ ( m_bg_image == tc. m_bg_image ) &&
+ ( m_bg_color == tc. m_bg_color ) &&
+ ( m_text_color == tc. m_text_color ) &&
+ ( m_font_family == tc. m_font_family ) &&
+ ( m_font_size == tc. m_font_size ) &&
+ ( m_font_weight == tc. m_font_weight ) &&
+ ( m_font_italic == tc. m_font_italic );
+ }
};
#endif