e9834f35e7
* Move the files shared between server and preflet to the server folder. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43159 a95241bf-73f2-0310-859d-f6bbb57e9c96
39 lines
954 B
C
39 lines
954 B
C
/*
|
|
* Copyright 2010, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _NOTIFICATIONS_H
|
|
#define _NOTIFICATIONS_H
|
|
|
|
#include <Mime.h>
|
|
|
|
#define kNotificationServerSignature "application/x-vnd.Haiku-notification_server"
|
|
|
|
// Messages
|
|
const uint32 kNotificationMessage = 'nssm';
|
|
|
|
// Settings constants
|
|
extern const char* kSettingsDirectory;
|
|
extern const char* kFiltersSettings;
|
|
extern const char* kGeneralSettings;
|
|
extern const char* kDisplaySettings;
|
|
|
|
// General settings
|
|
extern const char* kAutoStartName;
|
|
extern const char* kTimeoutName;
|
|
|
|
// General default settings
|
|
const float kDefaultAutoStart = false;
|
|
const int32 kDefaultTimeout = 10;
|
|
|
|
// Display settings
|
|
extern const char* kWidthName;
|
|
extern const char* kIconSizeName;
|
|
extern const char* kLayoutName;
|
|
|
|
// Display default settings
|
|
const float kDefaultWidth = 300.0f;
|
|
const icon_size kDefaultIconSize = B_LARGE_ICON;
|
|
|
|
#endif // _NOTIFICATIONS_H
|