1 /* 2 * Copyright 2010, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include <Notifications.h> 8 9 10 // Settings constants 11 const char* kSettingsDirectory = "system/notifications"; 12 const char* kFiltersSettings = "filters"; 13 const char* kGeneralSettings = "general"; 14 const char* kDisplaySettings = "display"; 15 16 // General settings 17 const char* kAutoStartName = "auto-start"; 18 const char* kTimeoutName = "timeout"; 19 20 // Display settings 21 const char* kWidthName = "width"; 22 const char* kIconSizeName = "icon size"; 23