8318af01b9
* The BView API can probably be regarded as good enough; the implementation might need to be improved over time (also, some things as archivability aren't fully implemented yet). The ToolTip.h header should get public once finalized. * Added new B_MOUSE_IDLE message that is sent to a BView after a certain time has passed (BToolTipManager::ShowDelay()). * Added small test app (ToolTipTest) that shows what is already working. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32078 a95241bf-73f2-0310-859d-f6bbb57e9c96
31 lines
755 B
C
31 lines
755 B
C
/*
|
|
* Copyright 2008, Oliver Tappe, zooey@hirschkaefer.de.
|
|
* Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BINARY_COMPATIBILITY_GLOBAL_H_
|
|
#define _BINARY_COMPATIBILITY__GLOBAL_H_
|
|
|
|
|
|
// method codes
|
|
enum {
|
|
// app kit
|
|
|
|
// interface kit
|
|
PERFORM_CODE_MIN_SIZE = 1000,
|
|
PERFORM_CODE_MAX_SIZE = 1001,
|
|
PERFORM_CODE_PREFERRED_SIZE = 1002,
|
|
PERFORM_CODE_LAYOUT_ALIGNMENT = 1003,
|
|
PERFORM_CODE_HAS_HEIGHT_FOR_WIDTH = 1004,
|
|
PERFORM_CODE_GET_HEIGHT_FOR_WIDTH = 1005,
|
|
PERFORM_CODE_SET_LAYOUT = 1006,
|
|
PERFORM_CODE_INVALIDATE_LAYOUT = 1007,
|
|
PERFORM_CODE_DO_LAYOUT = 1008,
|
|
PERFORM_CODE_GET_TOOL_TIP_AT = 1009
|
|
|
|
// support kit
|
|
};
|
|
|
|
|
|
#endif // _BINARY_COMPATIBILITY__GLOBAL_H_
|