summaryrefslogtreecommitdiff
path: root/core/settings/launcher/tabconfig.h
blob: 52ae81f9e06357e5ea65ebeef93acd006615e408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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