mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
19 lines
440 B
C#
19 lines
440 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiTabBarFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
Reorderable = 1,
|
||
|
AutoSelectNewTabs = 2,
|
||
|
TabListPopupButton = 4,
|
||
|
NoCloseWithMiddleMouseButton = 8,
|
||
|
NoTabListScrollingButtons = 16,
|
||
|
NoTooltip = 32,
|
||
|
FittingPolicyResizeDown = 64,
|
||
|
FittingPolicyScroll = 128,
|
||
|
FittingPolicyMask = 192,
|
||
|
FittingPolicyDefault = 64,
|
||
|
}
|
||
|
}
|