forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGUIUtility.bindings.cs
More file actions
97 lines (74 loc) · 4.37 KB
/
Copy pathGUIUtility.bindings.cs
File metadata and controls
97 lines (74 loc) · 4.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine.Bindings;
namespace UnityEngine
{
// Utility class for making new GUI controls.
[NativeHeader("Modules/IMGUI/GUIUtility.h"),
NativeHeader("Runtime/Input/InputManager.h"),
NativeHeader("Runtime/Utilities/CopyPaste.h"),
NativeHeader("Runtime/Camera/RenderLayers/GUITexture.h")]
public partial class GUIUtility
{
// Check to see if there's a modal IMGUI window that's currently open
public static extern bool hasModalWindow { get; }
[NativeProperty("GetGUIState().m_PixelsPerPoint", true, TargetType.Field)]
internal static extern float pixelsPerPoint {[VisibleToOtherModules("UnityEngine.UIElementsModule")] get; }
[NativeProperty("GetGUIState().m_OnGUIDepth", true, TargetType.Field)]
internal static extern int guiDepth {[VisibleToOtherModules("UnityEngine.UIElementsModule")] get; }
[NativeProperty("GetGUIState().m_CanvasGUIState.m_IsMouseUsed", true, TargetType.Field)]
internal static extern bool mouseUsed { get; set; }
[StaticAccessor("GetInputManager()", StaticAccessorType.Dot)]
internal static extern bool textFieldInput { get; set; }
internal static extern bool manualTex2SRGBEnabled
{
[FreeFunction("GUITexture::IsManualTex2SRGBEnabled")] get;
[FreeFunction("GUITexture::SetManualTex2SRGBEnabled")] set;
}
// Get access to the system-wide pasteboard.
public static extern string systemCopyBuffer
{
[FreeFunction("GetCopyBuffer")] get;
[FreeFunction("SetCopyBuffer")] set;
}
[StaticAccessor("GetGUIState()", StaticAccessorType.Dot)]
public static extern int GetControlID(int hint, FocusType focusType, Rect rect);
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern void BeginContainerFromOwner(ScriptableObject owner);
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern void BeginContainer(ObjectGUIState objectGUIState);
[NativeMethod("EndContainer")]
internal static extern void Internal_EndContainer();
[FreeFunction("GetSpecificGUIState(0).m_EternalGUIState->GetNextUniqueID")]
internal static extern int GetPermanentControlID();
[StaticAccessor("GetUndoManager()", StaticAccessorType.Dot)]
internal static extern void UpdateUndoName();
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern int CheckForTabEvent(Event evt);
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern void SetKeyboardControlToFirstControlId();
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern void SetKeyboardControlToLastControlId();
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern bool HasFocusableControls();
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern Rect Internal_AlignRectToDevice(Rect rect, Matrix4x4 transform);
// This is used in sensitive alignment-related operations. Avoid calling this method if you can.
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern Vector3 Internal_MultiplyPoint(Vector3 point, Matrix4x4 transform);
// This is used in sensitive alignment-related operations. Avoid calling this method if you can.
[VisibleToOtherModules("UnityEngine.UIElementsModule")]
internal static extern float Internal_Roundf(float f);
internal static extern bool GetChanged();
internal static extern void SetChanged(bool changed);
internal static extern void SetDidGUIWindowsEatLastEvent(bool value);
private static extern int Internal_GetHotControl();
private static extern int Internal_GetKeyboardControl();
private static extern void Internal_SetHotControl(int value);
private static extern void Internal_SetKeyboardControl(int value);
private static extern System.Object Internal_GetDefaultSkin(int skinMode);
private static extern Object Internal_GetBuiltinSkin(int skin);
private static extern void Internal_ExitGUI();
}
}