blob: 3c52bc25016337afd04b162cef4d6c4f37fab4ef (
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
|
#ifndef KAB3_GLOBAL_H
#define KAB3_GLOBAL_H
// keys of configuration file settings:
#define ConfigGeneral "General"
#define ConfigGeneral_RememberLastContact "RememberLastContact"
#define ConfigGeneral_ShowContactInHeader "ShowContactInHeader"
#define ConfigView "View"
#define ConfigView_View "ConfigView"
#define ConfigView_UseKDEDefaultFonts "UseKDEDefaultFonts"
#define ConfigView_DefaultBackgroundImage "DefaultBackgroundImage"
#define ConfigView_DefaultBackgroundColor "DefaultBackgroundColor"
#define ConfigView_UseDefaultBackground "UseDefaultBackground"
#define ConfigView_HeadlineBGColor "HeadlineBGColor"
#define ConfigView_UseHeadlineBGColor "UseHeadlineBGColor"
#define ConfigView_HeadlineTextColor "HeadlineTextColor"
#define ConfigView_HeadlineFont "HeadlineFont"
#define ConfigView_BodyFont "BodyFont"
#define ConfigView_DetailsFont "DetailsFont"
#endif
|