enum ImGui::ImGuiTabBarFlags
 
  Overview
Defined in:
types.crEnum Members
- 
        None = 0
- 
        Reorderable = 1
- 
        Allow manually dragging tabs to re-order them + New tabs are appended at the end of list 
- 
        AutoSelectNewTabs = 2
- 
        Automatically select new tabs when they appear 
- 
        TabListPopupButton = 4
- 
        Disable buttons to open the tab list popup 
- 
        NoCloseWithMiddleMouseButton = 8
- 
        Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You may handle this behavior manually on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false. 
- 
        NoTabListScrollingButtons = 16
- 
        Disable scrolling buttons (apply when fitting policy is ImGuiTabBarFlags_FittingPolicyScroll) 
- 
        NoTooltip = 32
- 
        Disable tooltips when hovering a tab 
- 
        FittingPolicyResizeDown = 64
- 
        Resize tabs when they don't fit 
- 
        FittingPolicyScroll = 128
- 
        Add scroll buttons when tabs don't fit 
- 
        FittingPolicyMask_ = 192
- 
        FittingPolicyDefault_ = 64
- 
        All = 255
Instance Method Summary
- #auto_select_new_tabs?
- #fitting_policy_default_?
- #fitting_policy_mask_?
- #fitting_policy_resize_down?
- #fitting_policy_scroll?
- #no_close_with_middle_mouse_button?
- #no_tab_list_scrolling_buttons?
- #no_tooltip?
- #none?
- #reorderable?
- #tab_list_popup_button?