summaryrefslogtreecommitdiff
path: root/core/settings/launcher/tabconfig.h
Unidiff
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 @@
1#ifndef __TABCONFIG_H__
2#define __TABCONFIG_H__
3
4struct TabConfig {
5 enum ViewMode {
6 Icon,
7 List
8 };
9 enum BackgroundType {
10 Ruled,
11 SolidColor,
12 Image
13 };
14
15 ViewMode m_view;
16 BackgroundType m_bg_type;
17 QString m_bg_image;
18 QString m_bg_color;
19 QString m_text_color;
20 QString m_font_family;
21 int m_font_size;
22 bool m_changed;
23};
24
25#endif