xref: /haiku/headers/private/binary_compatibility/Global.h (revision 508f54795f39c3e7552d87c95aae9dd8ec6f505b)
1 /*
2  * Copyright 2008, Oliver Tappe, zooey@hirschkaefer.de.
3  * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
4  * Distributed under the terms of the MIT License.
5  */
6 #ifndef _BINARY_COMPATIBILITY_GLOBAL_H_
7 #define _BINARY_COMPATIBILITY__GLOBAL_H_
8 
9 
10 // method codes
11 enum {
12 	// app kit
13 
14 	// interface kit
15 	PERFORM_CODE_MIN_SIZE				= 1000,
16 	PERFORM_CODE_MAX_SIZE				= 1001,
17 	PERFORM_CODE_PREFERRED_SIZE			= 1002,
18 	PERFORM_CODE_LAYOUT_ALIGNMENT		= 1003,
19 	PERFORM_CODE_HAS_HEIGHT_FOR_WIDTH	= 1004,
20 	PERFORM_CODE_GET_HEIGHT_FOR_WIDTH	= 1005,
21 	PERFORM_CODE_SET_LAYOUT				= 1006,
22 	PERFORM_CODE_INVALIDATE_LAYOUT		= 1007,
23 	PERFORM_CODE_DO_LAYOUT				= 1008,
24 	PERFORM_CODE_GET_TOOL_TIP_AT		= 1009
25 
26 	// support kit
27 };
28 
29 
30 #endif // _BINARY_COMPATIBILITY__GLOBAL_H_
31