1 #ifndef DEFS_H_ 2 #define DEFS_H_ 3 4 #include <bluetooth/LocalDevice.h> 5 6 #define BLUETOOTH_APP_SIGNATURE "application/x-vnd.haiku-BluetoothPrefs" 7 8 #define APPLY_SETTINGS 'aply' 9 #define REVERT_SETTINGS 'rvrt' 10 #define DEFAULT_SETTINGS 'dflt' 11 #define TRY_SETTINGS 'trys' 12 13 #define ATTRIBUTE_CHOSEN 'atch' 14 #define UPDATE_COLOR 'upcl' 15 #define DECORATOR_CHOSEN 'dcch' 16 #define UPDATE_DECORATOR 'updc' 17 #define UPDATE_COLOR_SET 'upcs' 18 19 #define SET_VISIBLE 'sVis' 20 #define SET_DISCOVERABLE 'sDis' 21 22 #define SET_UI_COLORS 'suic' 23 #define PREFS_CHOSEN 'prch' 24 25 // user interface 26 const uint32 kBorderSpace = 10; 27 const uint32 kItemSpace = 7; 28 29 static const uint32 kMsgAddToRemoteList = 'aDdL'; 30 static const uint32 kMsgRefresh = 'rFLd'; 31 32 extern LocalDevice* ActiveLocalDevice; 33 34 #endif 35