|
|
@ -2130,7 +2130,8 @@ static void ShowExampleAppConstrainedResize(bool* p_open) |
|
|
|
static void ShowExampleAppFixedOverlay(bool* p_open) |
|
|
|
static void ShowExampleAppFixedOverlay(bool* p_open) |
|
|
|
{ |
|
|
|
{ |
|
|
|
ImGui::SetNextWindowPos(ImVec2(10,10)); |
|
|
|
ImGui::SetNextWindowPos(ImVec2(10,10)); |
|
|
|
if (!ImGui::Begin("Example: Fixed Overlay", p_open, ImVec2(0,0), 0.3f, ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoSavedSettings|ImGuiWindowFlags_NoFocusOnAppearing|ImGuiWindowFlags_NoNavFocus|ImGuiWindowFlags_NoNavInputs)) |
|
|
|
ImGui::PushStyleColor(ImGuiCol_WindowBg, ImVec4(0.0f, 0.0f, 0.0f, 0.3f)); |
|
|
|
|
|
|
|
if (!ImGui::Begin("Example: Fixed Overlay", p_open, ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoSavedSettings|ImGuiWindowFlags_NoFocusOnAppearing|ImGuiWindowFlags_NoNavFocus|ImGuiWindowFlags_NoNavInputs)) |
|
|
|
{ |
|
|
|
{ |
|
|
|
ImGui::End(); |
|
|
|
ImGui::End(); |
|
|
|
return; |
|
|
|
return; |
|
|
@ -2139,6 +2140,7 @@ static void ShowExampleAppFixedOverlay(bool* p_open) |
|
|
|
ImGui::Separator(); |
|
|
|
ImGui::Separator(); |
|
|
|
ImGui::Text("Mouse Position: (%.1f,%.1f)", ImGui::GetIO().MousePos.x, ImGui::GetIO().MousePos.y); |
|
|
|
ImGui::Text("Mouse Position: (%.1f,%.1f)", ImGui::GetIO().MousePos.x, ImGui::GetIO().MousePos.y); |
|
|
|
ImGui::End(); |
|
|
|
ImGui::End(); |
|
|
|
|
|
|
|
ImGui::PopStyleColor(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Demonstrate using "##" and "###" in identifiers to manipulate ID generation.
|
|
|
|
// Demonstrate using "##" and "###" in identifiers to manipulate ID generation.
|
|
|
|