summaryrefslogtreecommitdiff
path: root/core/settings/launcher/tabconfig.h
Side-by-side diff
Diffstat (limited to 'core/settings/launcher/tabconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/launcher/tabconfig.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/core/settings/launcher/tabconfig.h b/core/settings/launcher/tabconfig.h
new file mode 100644
index 0000000..52ae81f
--- a/dev/null
+++ b/core/settings/launcher/tabconfig.h
@@ -0,0 +1,25 @@
+#ifndef __TABCONFIG_H__
+#define __TABCONFIG_H__
+
+struct TabConfig {
+ enum ViewMode {
+ Icon,
+ List
+ };
+ enum BackgroundType {
+ Ruled,
+ SolidColor,
+ Image
+ };
+
+ ViewMode m_view;
+ BackgroundType m_bg_type;
+ QString m_bg_image;
+ QString m_bg_color;
+ QString m_text_color;
+ QString m_font_family;
+ int m_font_size;
+ bool m_changed;
+};
+
+#endif