mirror of
https://review.haiku-os.org/haiku
synced 2025-02-14 09:40:04 +01:00
23 lines
544 B
C++
23 lines
544 B
C++
|
/*
|
||
|
* Copyright 2010, Haiku, Inc. All Rights Reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include <Notifications.h>
|
||
|
|
||
|
|
||
|
// Settings constants
|
||
|
const char* kSettingsDirectory = "system/notifications";
|
||
|
const char* kFiltersSettings = "filters";
|
||
|
const char* kGeneralSettings = "general";
|
||
|
const char* kDisplaySettings = "display";
|
||
|
|
||
|
// General settings
|
||
|
const char* kAutoStartName = "auto-start";
|
||
|
const char* kTimeoutName = "timeout";
|
||
|
|
||
|
// Display settings
|
||
|
const char* kWidthName = "width";
|
||
|
const char* kIconSizeName = "icon size";
|