15fd3bc6dSAxel Dörfler /* 25fd3bc6dSAxel Dörfler * Copyright 2001-2018 Haiku, Inc. All Rights Reserved. 35fd3bc6dSAxel Dörfler * Distributed under the terms of the MIT License. 45fd3bc6dSAxel Dörfler * 55fd3bc6dSAxel Dörfler * Authors: 65fd3bc6dSAxel Dörfler * Jérôme Duval 75fd3bc6dSAxel Dörfler * Axel Dörfler 85fd3bc6dSAxel Dörfler * Jeremy Rand, jrand@magma.ca 95fd3bc6dSAxel Dörfler * John Scipione, jscipione@gmail.com 105fd3bc6dSAxel Dörfler */ 115fd3bc6dSAxel Dörfler #ifndef _DESKBAR_PRIVATE_H 125fd3bc6dSAxel Dörfler #define _DESKBAR_PRIVATE_H 135fd3bc6dSAxel Dörfler 145fd3bc6dSAxel Dörfler 155fd3bc6dSAxel Dörfler #ifndef kDeskbarSignature 165fd3bc6dSAxel Dörfler # define kDeskbarSignature "application/x-vnd.Be-TSKB" 175fd3bc6dSAxel Dörfler #endif 185fd3bc6dSAxel Dörfler 195fd3bc6dSAxel Dörfler 205fd3bc6dSAxel Dörfler static const uint32 kMsgIsAlwaysOnTop = 'gtop'; 215fd3bc6dSAxel Dörfler static const uint32 kMsgAlwaysOnTop = 'stop'; 225fd3bc6dSAxel Dörfler static const uint32 kMsgIsAutoRaise = 'grse'; 235fd3bc6dSAxel Dörfler static const uint32 kMsgAutoRaise = 'srse'; 245fd3bc6dSAxel Dörfler static const uint32 kMsgIsAutoHide = 'ghid'; 255fd3bc6dSAxel Dörfler static const uint32 kMsgAutoHide = 'shid'; 265fd3bc6dSAxel Dörfler 275fd3bc6dSAxel Dörfler static const uint32 kMsgAddView = 'icon'; 285fd3bc6dSAxel Dörfler static const uint32 kMsgAddAddOn = 'adon'; 295fd3bc6dSAxel Dörfler static const uint32 kMsgHasItem = 'exst'; 305fd3bc6dSAxel Dörfler static const uint32 kMsgGetItemInfo = 'info'; 315fd3bc6dSAxel Dörfler static const uint32 kMsgCountItems = 'cwnt'; 32*efafab64SAxel Dörfler static const uint32 kMsgMaxItemSize = 'mxsz'; 335fd3bc6dSAxel Dörfler static const uint32 kMsgRemoveItem = 'remv'; 345fd3bc6dSAxel Dörfler static const uint32 kMsgLocation = 'gloc'; 355fd3bc6dSAxel Dörfler static const uint32 kMsgIsExpanded = 'gexp'; 365fd3bc6dSAxel Dörfler static const uint32 kMsgSetLocation = 'sloc'; 375fd3bc6dSAxel Dörfler static const uint32 kMsgExpand = 'sexp'; 385fd3bc6dSAxel Dörfler 395fd3bc6dSAxel Dörfler 405fd3bc6dSAxel Dörfler #endif /* _DESKBAR_PRIVATE_H */ 41