summaryrefslogtreecommitdiff
path: root/core/settings/launcher/tabconfig.h
authorsandman <sandman>2002-09-24 23:54:38 (UTC)
committer sandman <sandman>2002-09-24 23:54:38 (UTC)
commit64110f43896391053f662186228a4fad2280f717 (patch) (unidiff)
treeb2f94a61a8de8b95a29c88d513525e7478b1d8c9 /core/settings/launcher/tabconfig.h
parent5ae62a1def1d21c4827560607b208033d6054ed0 (diff)
downloadopie-64110f43896391053f662186228a4fad2280f717.zip
opie-64110f43896391053f662186228a4fad2280f717.tar.gz
opie-64110f43896391053f662186228a4fad2280f717.tar.bz2
beta version - not fully functional
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