mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
|
using System;
|
||
|
using System.Numerics;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace ImGuiNET
|
||
|
{
|
||
|
public unsafe partial struct ImGuiTextRange
|
||
|
{
|
||
|
public byte* b;
|
||
|
public byte* e;
|
||
|
}
|
||
|
public unsafe partial struct ImGuiTextRangePtr
|
||
|
{
|
||
|
public ImGuiTextRange* NativePtr { get; }
|
||
|
public ImGuiTextRangePtr(ImGuiTextRange* nativePtr) => NativePtr = nativePtr;
|
||
|
public ImGuiTextRangePtr(IntPtr nativePtr) => NativePtr = (ImGuiTextRange*)nativePtr;
|
||
|
public static implicit operator ImGuiTextRangePtr(ImGuiTextRange* nativePtr) => new ImGuiTextRangePtr(nativePtr);
|
||
|
public static implicit operator ImGuiTextRange* (ImGuiTextRangePtr wrappedPtr) => wrappedPtr.NativePtr;
|
||
|
public static implicit operator ImGuiTextRangePtr(IntPtr nativePtr) => new ImGuiTextRangePtr(nativePtr);
|
||
|
public IntPtr b { get => (IntPtr)NativePtr->b; set => NativePtr->b = (byte*)value; }
|
||
|
public IntPtr e { get => (IntPtr)NativePtr->e; set => NativePtr->e = (byte*)value; }
|
||
|
public void Destroy()
|
||
|
{
|
||
|
ImGuiNative.ImGuiTextRange_destroy((ImGuiTextRange*)(NativePtr));
|
||
|
}
|
||
|
public bool empty()
|
||
|
{
|
||
|
byte ret = ImGuiNative.ImGuiTextRange_empty((ImGuiTextRange*)(NativePtr));
|
||
|
return ret != 0;
|
||
|
}
|
||
|
public void split(byte separator, out ImVector @out)
|
||
|
{
|
||
|
fixed (ImVector* native_out = &@out)
|
||
|
{
|
||
|
ImGuiNative.ImGuiTextRange_split((ImGuiTextRange*)(NativePtr), separator, native_out);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|