blob: dffaa95d09de54fe958cfafc554d72de538a348a (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#ifndef Config_H
#define Config_H
#include <qstringlist.h>
class KConfig;
namespace Filelight
{
enum MapScheme { Rainbow, HighContrast, KDE, FileDensity, ModTime };
class Config
{
static KConfig& kconfig();
public:
static void read();
static void write();
//keep everything positive, avoid using DON'T, NOT or NO
static bool scanAcrossMounts;
static bool scanRemoteMounts;
static bool scanRemovableMedia;
static bool varyLabelFontSizes;
static bool showSmallFiles;
static uint contrast;
static uint antiAliasFactor;
static uint minFontPitch;
static uint defaultRingDepth;
static MapScheme scheme;
static QStringList skipList;
};
}
using Filelight::Config;
#endif
|