Files
haiku-beta6/headers/private/binary_compatibility/Interface.h
T

61 lines
1.0 KiB
C
Raw Normal View History

2008-10-15 09:29:06 +00:00
/*
* Copyright 2008, Oliver Tappe, [email protected].
* Copyright 2008, Ingo Weinhold, [email protected].
* Distributed under the terms of the MIT License.
*/
#ifndef _BINARY_COMPATIBILITY_INTERFACE_H_
#define _BINARY_COMPATIBILITY_INTERFACE_H_
#include <binary_compatibility/Global.h>
struct perform_data_min_size {
BSize return_value;
};
struct perform_data_max_size {
BSize return_value;
};
struct perform_data_preferred_size {
BSize return_value;
};
struct perform_data_layout_alignment {
BAlignment return_value;
};
struct perform_data_has_height_for_width {
bool return_value;
};
struct perform_data_get_height_for_width {
float width;
float min;
float max;
float preferred;
};
struct perform_data_set_layout {
BLayout* layout;
};
struct perform_data_layout_invalidated {
2008-10-15 09:29:06 +00:00
bool descendants;
};
struct perform_data_get_tool_tip_at {
BPoint point;
BToolTip** tool_tip;
bool return_value;
};
2008-10-15 09:29:06 +00:00
2013-12-22 02:18:39 +01:00
struct perform_data_set_icon {
const BBitmap* icon;
uint32 flags;
};
2008-10-15 09:29:06 +00:00
#endif /* _BINARY_COMPATIBILITY_INTERFACE_H_ */