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 REVERT_SETTINGS 'rvrt' 24 #define DEFAULT_SETTINGS 'dflt' 25 #define TRY_SETTINGS 'trys' 26 27 #define ATTRIBUTE_CHOSEN 'atch' 28 #define UPDATE_COLOR 'upcl' 29 #define DECORATOR_CHOSEN 'dcch' 30 #define UPDATE_DECORATOR 'updc' 31 #define UPDATE_COLOR_SET 'upcs' 32 33 #define SET_DECORATOR 'sdec' 34 #define GET_DECORATOR 'gdec' 35 36 #define SET_UI_COLORS 'suic' 37 #define PREFS_CHOSEN 'prch' 38 39 // user interface 40 const uint32 kBorderSpace = 10; 41 const uint32 kItemSpace = 7; 42 43 #endif 44