xref: /haiku/src/preferences/appearance/defs.h (revision 71452e98334eaac603bf542d159e24788a46bebb)
1 /*
2  * Copyright 2002-2006, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		DarkWyrm (darkwyrm@earthlink.net)
7  */
8 #ifndef DEFS_H_
9 #define DEFS_H_
10 
11 // If these paths are changed, ensure that they all end in a '/' character
12 /*
13 #define SETTINGS_DIR "/boot/home/config/settings/app_server/"
14 #define COLOR_SET_DIR "/boot/home/config/settings/color_sets/"
15 #define CURSOR_SET_DIR "/boot/home/config/settings/cursor_sets/"
16 #define DECORATORS_DIR "/boot/home/config/add-ons/decorators/"
17 #define COLOR_SETTINGS_NAME "system_colors"
18 */
19 
20 #define APPEARANCE_APP_SIGNATURE "application/x-vnd.Haiku-Appearance"
21 
22 #define APPLY_SETTINGS 'aply'
23 #define TRY_SETTINGS 'trys'
24 
25 #define ATTRIBUTE_CHOSEN 'atch'
26 #define UPDATE_COLOR 'upcl'
27 #define DECORATOR_CHOSEN 'dcch'
28 #define UPDATE_DECORATOR 'updc'
29 #define UPDATE_COLOR_SET 'upcs'
30 
31 #define SET_DECORATOR 'sdec'
32 #define GET_DECORATOR 'gdec'
33 
34 #define SET_UI_COLORS 'suic'
35 #define PREFS_CHOSEN 'prch'
36 
37 // user interface
38 const uint32 kBorderSpace = 10;
39 const uint32 kItemSpace = 7;
40 
41 #endif
42