Lines Matching defs:tab
1103 TabRounding = 4.0f; // Radius of upper corners of a tab. Set to 0.0f to have rectangular tabs.
2854 // Special handling for the dummy item after Begin() which represent the title bar or tab.
2904 // Process keyboard input at this point: TAB/Shift-TAB to tab out of the currently focused item.
9425 // Standalone tab bars (not associated to docking/windows functionality) currently hold no discernible strings.
9434 const ImGuiTabItem* tab = &tab_bar->Tabs[tab_n];
9435 ImGui::PushID(tab);
9436 if (ImGui::SmallButton("<")) { TabBarQueueChangeTabOrder(tab_bar, tab, -1); } ImGui::SameLine(0, 2);
9437 if (ImGui::SmallButton(">")) { TabBarQueueChangeTabOrder(tab_bar, tab, +1); } ImGui::SameLine();
9438 ImGui::Text("%02d%c Tab 0x%08X", tab_n, (tab->ID == tab_bar->SelectedTabId) ? '*' : ' ', tab->ID);