Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SizeLayoutWidget.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
15sealed class SizeLayoutWidget: Widget
16{
17 proto external void EnableWidthOverride(bool enabled);
18 proto external void EnableHeightOverride(bool enabled);
19 proto external void EnableMinDesiredWidth(bool enabled);
20 proto external void EnableMinDesiredHeight(bool enabled);
21 proto external void EnableMaxDesiredWidth(bool enabled);
22 proto external void EnableMaxDesiredHeight(bool enabled);
23 proto external void EnableAspectRatio(bool enabled);
24 proto external void SetWidthOverride(float value);
25 proto external void SetHeightOverride(float value);
26 proto external void SetMinDesiredWidth(float value);
27 proto external void SetMinDesiredHeight(float value);
28 proto external void SetMaxDesiredWidth(float value);
29 proto external void SetMaxDesiredHeight(float value);
30 proto external void SetAspectRatio(float value);
31 proto external float GetWidthOverride();
32 proto external float GetHeightOverride();
33 proto external float GetMinDesiredWidth();
34 proto external float GetMinDesiredHeight();
35 proto external float GetMaxDesiredWidth();
36 proto external float GetMaxDesiredHeight();
37 proto external float GetAspectRatio();
38 proto external bool IsWidthOverride();
39 proto external bool IsHeightOverride();
40 proto external bool IsMinDesiredWidth();
41 proto external bool IsMinDesiredHeight();
42 proto external bool IsMaxDesiredWidth();
43 proto external bool IsMaxDesiredHeight();
44 proto external bool IsAspectRatio();
45 /*
46 Returns true if during the last update the child's widget had bigger desired width than this widget's width
47 Note: the child widget must not be set to Stretch otherwise it's desired size is ignored
48 */
49 proto external bool IsChildDesiredWidthClamped();
50 /*
51 Returns true if during the last update the child's widget had bigger desired height than this widget's height
52 Note: the child widget must not be set to Stretch otherwise it's desired size is ignored
53 */
54 proto external bool IsChildDesiredHeightClamped();
55}
56