1/*
2 * Copyright 2017 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef NOTIFICATIONS_CONSTANTS_H
6#define NOTIFICATIONS_CONSTANTS_H
7
8
9// interface messages
10const uint32 kDefaults = '_DFT';
11const uint32 kRevert = '_RVT';
12const uint32 kApply = '_APY';
13const uint32 kApplyWithExample = '_APE';
14const uint32 kApplicationSelected = '_ASL';
15const uint32 kAddApplication = '_AAP';
16const uint32 kAddApplicationRef = '_AAR';
17const uint32 kRemoveApplication = '_RAP';
18const uint32 kMuteChanged = '_MCH';
19
20// user interface
21const float kEdgePadding = 5.0;
22const float kCLVTitlePadding = 8.0;
23
24
25#endif	/* NOTIFICATIONS_CONSTANTS_H */
26