summaryrefslogtreecommitdiff
path: root/core/settings/launcher/tabconfig.h
Unidiff
Diffstat (limited to 'core/settings/launcher/tabconfig.h') (more/less context) (show whitespace changes)
-rw-r--r--core/settings/launcher/tabconfig.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/settings/launcher/tabconfig.h b/core/settings/launcher/tabconfig.h
index 84ba073..7844673 100644
--- a/core/settings/launcher/tabconfig.h
+++ b/core/settings/launcher/tabconfig.h
@@ -22,48 +22,49 @@
22    --        :-=` Free Software Foundation, Inc., 22    --        :-=` Free Software Foundation, Inc.,
23 59 Temple Place - Suite 330, 23 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. 24 Boston, MA 02111-1307, USA.
25 25
26*/ 26*/
27#ifndef __TABCONFIG_H__ 27#ifndef __TABCONFIG_H__
28#define __TABCONFIG_H__ 28#define __TABCONFIG_H__
29 29
30struct TabConfig { 30struct TabConfig {
31 enum ViewMode { 31 enum ViewMode {
32 Icon, 32 Icon,
33 List 33 List
34 }; 34 };
35 enum BackgroundType { 35 enum BackgroundType {
36 Ruled, 36 Ruled,
37 SolidColor, 37 SolidColor,
38 Image 38 Image
39 }; 39 };
40 40
41 ViewMode m_view; 41 ViewMode m_view;
42 BackgroundType m_bg_type; 42 BackgroundType m_bg_type;
43 QString m_last_directory; 43 QString m_last_directory;
44 QString m_bg_image; 44 QString m_bg_image;
45 QString m_bg_color; 45 QString m_bg_color;
46 int m_iconcolumns;
46 QString m_text_color; 47 QString m_text_color;
47 bool m_font_use; 48 bool m_font_use;
48 QString m_font_family; 49 QString m_font_family;
49 int m_font_size; 50 int m_font_size;
50 int m_font_weight; 51 int m_font_weight;
51 bool m_font_italic; 52 bool m_font_italic;
52 bool m_changed; 53 bool m_changed;
53 54
54 bool operator == ( const TabConfig &tc ) 55 bool operator == ( const TabConfig &tc )
55 { 56 {
56 return ( m_view == tc. m_view ) && 57 return ( m_view == tc. m_view ) &&
57 ( m_bg_type == tc. m_bg_type ) && 58 ( m_bg_type == tc. m_bg_type ) &&
58 ( m_bg_image == tc. m_bg_image ) && 59 ( m_bg_image == tc. m_bg_image ) &&
59 ( m_bg_color == tc. m_bg_color ) && 60 ( m_bg_color == tc. m_bg_color ) &&
60 ( m_text_color == tc. m_text_color ) && 61 ( m_text_color == tc. m_text_color ) &&
61 ( m_font_use == tc. m_font_use ) && 62 ( m_font_use == tc. m_font_use ) &&
62 ( m_font_use ? ( 63 ( m_font_use ? (
63 ( m_font_family == tc. m_font_family ) && 64 ( m_font_family == tc. m_font_family ) &&
64 ( m_font_size == tc. m_font_size ) && 65 ( m_font_size == tc. m_font_size ) &&
65 ( m_font_weight == tc. m_font_weight ) && 66 ( m_font_weight == tc. m_font_weight ) &&
66 ( m_font_italic == tc. m_font_italic ) 67 ( m_font_italic == tc. m_font_italic )
67 ) : true ); 68 ) : true );
68 69
69 } 70 }