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 20 static const uint32 kMsgIsAlwaysOnTop = 'gtop'; 21 static const uint32 kMsgAlwaysOnTop = 'stop'; 22 static const uint32 kMsgIsAutoRaise = 'grse'; 23 static const uint32 kMsgAutoRaise = 'srse'; 24 static const uint32 kMsgIsAutoHide = 'ghid'; 25 static const uint32 kMsgAutoHide = 'shid'; 26 27 static const uint32 kMsgAddView = 'icon'; 28 static const uint32 kMsgAddAddOn = 'adon'; 29 static const uint32 kMsgHasItem = 'exst'; 30 static const uint32 kMsgGetItemInfo = 'info'; 31 static const uint32 kMsgCountItems = 'cwnt'; 32 static const uint32 kMsgMaxItemSize = 'mxsz'; 33 static const uint32 kMsgRemoveItem = 'remv'; 34 static const uint32 kMsgLocation = 'gloc'; 35 static const uint32 kMsgIsExpanded = 'gexp'; 36 static const uint32 kMsgSetLocation = 'sloc'; 37 static const uint32 kMsgExpand = 'sexp'; 38 39 40 #endif /* _DESKBAR_PRIVATE_H */ 41