Coder Social home page Coder Social logo

Comments (3)

ocornut avatar ocornut commented on August 14, 2024 1

Oh actually the reason is that you used draw_list->PushClipRect(), this has no effect on GUI logic only draw list rendering.
It's a bit ill-defined what it would do in this case, I am not entirely sure would more correct to inherent ImDrawList's ClipRect in the child window.

If you instead use ImGui::PushClipRect() it does what you expect:

image

ImGui::PushStyleColor(ImGuiCol_WindowBg, IM_COL32(255, 0, 0, 255));
ImGui::Begin("Main Window");

ImDrawList* draw_list = ImGui::GetWindowDrawList();
ImVec2 min = { 5 + ImGui::GetWindowPos().x, 5 + ImGui::GetWindowPos().y };
ImVec2 max = { min.x + 100, min.y + 100 };
ImGui::PushClipRect(min, max, true);
ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(0, 255, 0, 200));
if (ImGui::BeginChild("Child Window 1", { 300,200 }, true) == true)
{
    ImVec2 p = ImGui::GetCursorScreenPos();
    ImGui::Text("abcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\n");
    ImGui::SetCursorScreenPos(p);

    ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(0, 0, 255, 200));
    ImGui::BeginChild("Child Window 2", ImVec2(300, 200), ImGuiChildFlags_Border);
    ImGui::Text("abcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\n");
    ImGui::PopStyleColor();

    ImGui::EndChild();
}
ImGui::PopStyleColor();
ImGui::EndChild();
ImGui::PopClipRect();

ImGui::End();
ImGui::PopStyleColor();

from imgui.

ocornut avatar ocornut commented on August 14, 2024

The screenshot shows that the first child window was cropped correctly, but the second child window is not cropped the same way as the first. Is that how it should be?

Actually, only the background of the first child window is cropped correctly, because as an optimized it is drawn in the drawlist of the parent window. In the following modified repro you can see the text in first child goes out.

image

ImGui::PushStyleColor(ImGuiCol_WindowBg, IM_COL32(255, 0, 0, 255));
ImGui::Begin("Main Window");

ImDrawList* draw_list = ImGui::GetWindowDrawList();
ImVec2 min = { 5 + ImGui::GetWindowPos().x, 5 + ImGui::GetWindowPos().y };
ImVec2 max = { min.x + 100, min.y + 100 };
draw_list->PushClipRect(min, max);
ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(0, 255, 0, 200));
if (ImGui::BeginChild("Child Window 1", { 300,200 }, true) == true)
{
    ImVec2 p = ImGui::GetCursorScreenPos();
    ImGui::Text("abcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\n");
    ImGui::SetCursorScreenPos(p);

    ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(0, 0, 255, 200));
    ImGui::BeginChild("Child Window 2", ImVec2(300, 200), ImGuiChildFlags_Border);
    ImGui::Text("abcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\nabcdefghij\n");
    ImGui::PopStyleColor();

    ImGui::EndChild();
}
ImGui::PopStyleColor();
draw_list->PopClipRect();

ImGui::EndChild();

ImGui::End();
ImGui::PopStyleColor();

from imgui.

ElectroidDes avatar ElectroidDes commented on August 14, 2024

Thank you very much, it worked.

from imgui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.