xref: /haiku/src/servers/notification/Notifications.cpp (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
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