Tip: pass a non-visible label (e.g. "##hello") then you can use the space to draw other text or image. But you need to make sure the ID is unique, e.g. enclose calls in PushID/PopID or use ##unique_id. With this scheme, ImGuiSelectableFlags_SpanAllColumns and ImGuiSelectableFlags_AllowOverlap are also frequently used flags. FIXME: Selectable() with (size.x == 0.0f) and (SelectableTextAlign.x > 0.0
| 7353 | // With this scheme, ImGuiSelectableFlags_SpanAllColumns and ImGuiSelectableFlags_AllowOverlap are also frequently used flags. |
| 7354 | // FIXME: Selectable() with (size.x == 0.0f) and (SelectableTextAlign.x > 0.0f) followed by SameLine() is currently not supported. |
| 7355 | bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) |
| 7356 | { |
| 7357 | ImGuiWindow* window = GetCurrentWindow(); |
| 7358 | if (window->SkipItems) |
| 7359 | return false; |
| 7360 | |
| 7361 | ImGuiContext& g = *GImGui; |
| 7362 | const ImGuiStyle& style = g.Style; |
| 7363 | |
| 7364 | // Submit label or explicit size to ItemSize(), whereas ItemAdd() will submit a larger/spanning rectangle. |
| 7365 | ImGuiID id = window->GetID(label); |
| 7366 | const char* label_end = FindRenderedTextEnd(label); |
| 7367 | ImVec2 label_size = CalcTextSize(label, label_end, false); |
| 7368 | ImVec2 size(size_arg.x != 0.0f ? size_arg.x : label_size.x, size_arg.y != 0.0f ? size_arg.y : label_size.y); |
| 7369 | ImVec2 pos = window->DC.CursorPos; |
| 7370 | pos.y += window->DC.CurrLineTextBaseOffset; |
| 7371 | ItemSize(size, 0.0f); |
| 7372 | |
| 7373 | // Fill horizontal space |
| 7374 | // We don't support (size < 0.0f) in Selectable() because the ItemSpacing extension would make explicitly right-aligned sizes not visibly match other widgets. |
| 7375 | const bool span_all_columns = (flags & ImGuiSelectableFlags_SpanAllColumns) != 0; |
| 7376 | const float min_x = span_all_columns ? window->ParentWorkRect.Min.x : pos.x; |
| 7377 | const float max_x = span_all_columns ? window->ParentWorkRect.Max.x : window->WorkRect.Max.x; |
| 7378 | if (size_arg.x == 0.0f || (flags & ImGuiSelectableFlags_SpanAvailWidth)) |
| 7379 | size.x = ImMax(label_size.x, max_x - min_x); |
| 7380 | |
| 7381 | // Selectables are meant to be tightly packed together with no click-gap, so we extend their box to cover spacing between selectable. |
| 7382 | // FIXME: Not part of layout so not included in clipper calculation, but ItemSize currently doesn't allow offsetting CursorPos. |
| 7383 | ImRect bb(min_x, pos.y, min_x + size.x, pos.y + size.y); |
| 7384 | if ((flags & ImGuiSelectableFlags_NoPadWithHalfSpacing) == 0) |
| 7385 | { |
| 7386 | const float spacing_x = span_all_columns ? 0.0f : style.ItemSpacing.x; |
| 7387 | const float spacing_y = style.ItemSpacing.y; |
| 7388 | const float spacing_L = IM_TRUNC(spacing_x * 0.50f); |
| 7389 | const float spacing_U = IM_TRUNC(spacing_y * 0.50f); |
| 7390 | bb.Min.x -= spacing_L; |
| 7391 | bb.Min.y -= spacing_U; |
| 7392 | bb.Max.x += (spacing_x - spacing_L); |
| 7393 | bb.Max.y += (spacing_y - spacing_U); |
| 7394 | } |
| 7395 | //if (g.IO.KeyCtrl) { GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(0, 255, 0, 255)); } |
| 7396 | |
| 7397 | const bool disabled_item = (flags & ImGuiSelectableFlags_Disabled) != 0; |
| 7398 | const ImGuiItemFlags extra_item_flags = disabled_item ? (ImGuiItemFlags)ImGuiItemFlags_Disabled : ImGuiItemFlags_None; |
| 7399 | bool is_visible; |
| 7400 | if (span_all_columns) |
| 7401 | { |
| 7402 | // Modify ClipRect for the ItemAdd(), faster than doing a PushColumnsBackground/PushTableBackgroundChannel for every Selectable.. |
| 7403 | const float backup_clip_rect_min_x = window->ClipRect.Min.x; |
| 7404 | const float backup_clip_rect_max_x = window->ClipRect.Max.x; |
| 7405 | window->ClipRect.Min.x = window->ParentWorkRect.Min.x; |
| 7406 | window->ClipRect.Max.x = window->ParentWorkRect.Max.x; |
| 7407 | is_visible = ItemAdd(bb, id, NULL, extra_item_flags); |
| 7408 | window->ClipRect.Min.x = backup_clip_rect_min_x; |
| 7409 | window->ClipRect.Max.x = backup_clip_rect_max_x; |
| 7410 | } |
| 7411 | else |
| 7412 | { |
nothing calls this directly
no test coverage detected