efafab643c
* Adds max width and height arguments to instantiate_deskbar_(item|entry). * Old applications just stay with a 16x16 scaled icon, though. * All used apps within the repository are converted to the new call besides the input_server input method icon (that will need further API changes in the input_server). Change-Id: I29cc439396917be2c24135888459d31364997dff Reviewed-on: https://review.haiku-os.org/656 Reviewed-by: waddlesplash <waddlesplash@gmail.com>
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/*
|
|
* Copyright 2001-2018 Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Jérôme Duval
|
|
* Axel Dörfler
|
|
* Jeremy Rand, jrand@magma.ca
|
|
* John Scipione, jscipione@gmail.com
|
|
*/
|
|
#ifndef _DESKBAR_PRIVATE_H
|
|
#define _DESKBAR_PRIVATE_H
|
|
|
|
|
|
#ifndef kDeskbarSignature
|
|
# define kDeskbarSignature "application/x-vnd.Be-TSKB"
|
|
#endif
|
|
|
|
|
|
static const uint32 kMsgIsAlwaysOnTop = 'gtop';
|
|
static const uint32 kMsgAlwaysOnTop = 'stop';
|
|
static const uint32 kMsgIsAutoRaise = 'grse';
|
|
static const uint32 kMsgAutoRaise = 'srse';
|
|
static const uint32 kMsgIsAutoHide = 'ghid';
|
|
static const uint32 kMsgAutoHide = 'shid';
|
|
|
|
static const uint32 kMsgAddView = 'icon';
|
|
static const uint32 kMsgAddAddOn = 'adon';
|
|
static const uint32 kMsgHasItem = 'exst';
|
|
static const uint32 kMsgGetItemInfo = 'info';
|
|
static const uint32 kMsgCountItems = 'cwnt';
|
|
static const uint32 kMsgMaxItemSize = 'mxsz';
|
|
static const uint32 kMsgRemoveItem = 'remv';
|
|
static const uint32 kMsgLocation = 'gloc';
|
|
static const uint32 kMsgIsExpanded = 'gexp';
|
|
static const uint32 kMsgSetLocation = 'sloc';
|
|
static const uint32 kMsgExpand = 'sexp';
|
|
|
|
|
|
#endif /* _DESKBAR_PRIVATE_H */
|