1 #ifndef DEFS_H_ 2 #define DEFS_H_ 3 4 // If these paths are changed, ensure that they all end in a '/' character 5 /* 6 #define SETTINGS_DIR "/boot/home/config/settings/app_server/" 7 #define COLOR_SET_DIR "/boot/home/config/settings/color_sets/" 8 #define CURSOR_SET_DIR "/boot/home/config/settings/cursor_sets/" 9 #define DECORATORS_DIR "/boot/home/config/add-ons/decorators/" 10 #define COLOR_SETTINGS_NAME "system_colors" 11 */ 12 13 #define APPEARANCE_APP_SIGNATURE "application/x-vnd.obos-Appearance" 14 15 #define APPLY_SETTINGS 'aply' 16 #define REVERT_SETTINGS 'rvrt' 17 #define DEFAULT_SETTINGS 'dflt' 18 #define TRY_SETTINGS 'trys' 19 20 #define ATTRIBUTE_CHOSEN 'atch' 21 #define UPDATE_COLOR 'upcl' 22 #define DECORATOR_CHOSEN 'dcch' 23 #define UPDATE_DECORATOR 'updc' 24 #define UPDATE_COLOR_SET 'upcs' 25 26 #define SET_DECORATOR 'sdec' 27 #define GET_DECORATOR 'gdec' 28 29 #define SET_UI_COLORS 'suic' 30 #define PREFS_CHOSEN 'prch' 31 #endif 32