1/*
2 * Copyright 2001-2018 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		J��r��me Duval
7 *		Axel D��rfler
8 *		Jeremy Rand, jrand@magma.ca
9 *		John Scipione, jscipione@gmail.com
10 */
11#ifndef _DESKBAR_PRIVATE_H
12#define _DESKBAR_PRIVATE_H
13
14
15#ifndef kDeskbarSignature
16#	define kDeskbarSignature "application/x-vnd.Be-TSKB"
17#endif
18
19
20static const uint32 kMsgIsAlwaysOnTop = 'gtop';
21static const uint32 kMsgAlwaysOnTop = 'stop';
22static const uint32 kMsgIsAutoRaise = 'grse';
23static const uint32 kMsgAutoRaise = 'srse';
24static const uint32 kMsgIsAutoHide = 'ghid';
25static const uint32 kMsgAutoHide = 'shid';
26
27static const uint32 kMsgAddView = 'icon';
28static const uint32 kMsgAddAddOn = 'adon';
29static const uint32 kMsgHasItem = 'exst';
30static const uint32 kMsgGetItemInfo = 'info';
31static const uint32 kMsgCountItems = 'cwnt';
32static const uint32 kMsgMaxItemSize = 'mxsz';
33static const uint32 kMsgRemoveItem = 'remv';
34static const uint32 kMsgLocation = 'gloc';
35static const uint32 kMsgIsExpanded = 'gexp';
36static const uint32 kMsgSetLocation = 'sloc';
37static const uint32 kMsgExpand = 'sexp';
38
39
40#endif	/* _DESKBAR_PRIVATE_H */
41