mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
ENH:Optimized the overall Gizmo layout and Print Error font style
Change-Id: Icc26fdcec667dfd7018132d39af0bb450e4caff5
This commit is contained in:
parent
5cd7873a3c
commit
05dddcfd3c
7 changed files with 76 additions and 47 deletions
|
@ -6294,9 +6294,9 @@ bool ImGui::ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFl
|
||||||
RenderFrameBorder(bb.Min, bb.Max, rounding);
|
RenderFrameBorder(bb.Min, bb.Max, rounding);
|
||||||
else
|
else
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), rounding,NULL,2.0f); // Color button are often in need of some sort of border
|
window->DrawList->AddRect(bb.Min - ImVec2(3, 3), bb.Max + ImVec2(3, 3), GetColorU32(ImGuiCol_FrameBg), rounding * 2,NULL,4.0f);; // Color button are often in need of some sort of border
|
||||||
#else
|
#else
|
||||||
window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), rounding); // Color button are often in need of some sort of border
|
window->DrawList->AddRect(bb.Min - ImVec2(2, 2), bb.Max + ImVec2(2, 2), GetColorU32(ImGuiCol_FrameBg), rounding * 2,NULL,3.0f); // Color button are often in need of some sort of border
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -252,15 +252,22 @@ void GLGizmoFdmSupports::on_render_input_window(float x, float y, float bottom_l
|
||||||
|
|
||||||
if (i != 0) ImGui::SameLine((empty_button_width + m_imgui->scaled(1.75f)) * i + m_imgui->scaled(1.3f));
|
if (i != 0) ImGui::SameLine((empty_button_width + m_imgui->scaled(1.75f)) * i + m_imgui->scaled(1.3f));
|
||||||
|
|
||||||
if (m_current_tool == tool_icons[i]) {
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.81f, 0.81f, 0.81f, 1.0f)); // r, g, b, a
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(0.81f, 0.81f, 0.81f, 1.0f));
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(0.81f, 0.81f, 0.81f, 1.0f));
|
|
||||||
}
|
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
||||||
|
if (m_current_tool == tool_icons[i]) {
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.86f, 0.99f, 0.91f, 1.00f)); // r, g, b, a
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(0.86f, 0.99f, 0.91f, 1.00f));
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(0.86f, 0.99f, 0.91f, 1.00f));
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Border, ImVec4(0.00f, 0.68f, 0.26f, 1.00f));
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 1.0);
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 1.0);
|
||||||
|
}
|
||||||
bool btn_clicked = ImGui::Button(into_u8(btn_name).c_str());
|
bool btn_clicked = ImGui::Button(into_u8(btn_name).c_str());
|
||||||
|
if (m_current_tool == tool_icons[i])
|
||||||
|
{
|
||||||
|
ImGui::PopStyleColor(4);
|
||||||
|
ImGui::PopStyleVar(2);
|
||||||
|
}
|
||||||
ImGui::PopStyleVar(1);
|
ImGui::PopStyleVar(1);
|
||||||
if (m_current_tool == tool_icons[i])ImGui::PopStyleColor(3);
|
|
||||||
|
|
||||||
if (btn_clicked && m_current_tool != tool_icons[i]) {
|
if (btn_clicked && m_current_tool != tool_icons[i]) {
|
||||||
m_current_tool = tool_icons[i];
|
m_current_tool = tool_icons[i];
|
||||||
|
|
|
@ -328,16 +328,16 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott
|
||||||
|
|
||||||
// BBS
|
// BBS
|
||||||
ImGuiWrapper::push_toolbar_style(m_parent.get_scale());
|
ImGuiWrapper::push_toolbar_style(m_parent.get_scale());
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(8.0f, 16.0f));
|
|
||||||
GizmoImguiBegin(get_name(), ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar);
|
GizmoImguiBegin(get_name(), ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar);
|
||||||
|
|
||||||
// First calculate width of all the texts that are could possibly be shown. We will decide set the dialog width based on that:
|
// First calculate width of all the texts that are could possibly be shown. We will decide set the dialog width based on that:
|
||||||
const float clipping_slider_left = m_imgui->calc_text_size(m_desc.at("clipping_of_view")).x + m_imgui->scaled(1.f);
|
float space_size = m_imgui->get_style_scaling() * 8;
|
||||||
const float cursor_slider_left = m_imgui->calc_text_size(m_desc.at("cursor_size")).x + m_imgui->scaled(1.f);
|
const float clipping_slider_left = m_imgui->calc_text_size(m_desc.at("clipping_of_view")).x + m_imgui->scaled(1.5f);
|
||||||
|
const float cursor_slider_left = m_imgui->calc_text_size(m_desc.at("cursor_size")).x + m_imgui->scaled(1.5f);
|
||||||
const float smart_fill_slider_left = m_imgui->calc_text_size(m_desc.at("smart_fill_angle")).x + m_imgui->scaled(1.5f);
|
const float smart_fill_slider_left = m_imgui->calc_text_size(m_desc.at("smart_fill_angle")).x + m_imgui->scaled(1.5f);
|
||||||
const float edge_detect_slider_left = m_imgui->calc_text_size(m_desc.at("edge_detection")).x + m_imgui->scaled(1.f);
|
const float edge_detect_slider_left = m_imgui->calc_text_size(m_desc.at("edge_detection")).x + m_imgui->scaled(1.f);
|
||||||
const float gap_area_slider_left = m_imgui->calc_text_size(m_desc.at("gap_area")).x + m_imgui->scaled(1.5f);
|
const float gap_area_slider_left = m_imgui->calc_text_size(m_desc.at("gap_area")).x + m_imgui->scaled(1.5f) + space_size;
|
||||||
const float height_range_slider_left = m_imgui->calc_text_size(m_desc.at("height_range")).x + m_imgui->scaled(1.5f);
|
const float height_range_slider_left = m_imgui->calc_text_size(m_desc.at("height_range")).x + m_imgui->scaled(2.f);
|
||||||
|
|
||||||
const float remove_btn_width = m_imgui->calc_text_size(m_desc.at("remove_all")).x + m_imgui->scaled(1.f);
|
const float remove_btn_width = m_imgui->calc_text_size(m_desc.at("remove_all")).x + m_imgui->scaled(1.f);
|
||||||
const float filter_btn_width = m_imgui->calc_text_size(m_desc.at("perform")).x + m_imgui->scaled(1.f);
|
const float filter_btn_width = m_imgui->calc_text_size(m_desc.at("perform")).x + m_imgui->scaled(1.f);
|
||||||
|
@ -358,7 +358,7 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott
|
||||||
const float height_max_width = std::max(clipping_slider_left,height_range_slider_left);
|
const float height_max_width = std::max(clipping_slider_left,height_range_slider_left);
|
||||||
const float sliders_left_width = std::max(smart_fill_slider_left,
|
const float sliders_left_width = std::max(smart_fill_slider_left,
|
||||||
std::max(cursor_slider_left, std::max(edge_detect_slider_left, std::max(gap_area_slider_left, std::max(height_range_slider_left,
|
std::max(cursor_slider_left, std::max(edge_detect_slider_left, std::max(gap_area_slider_left, std::max(height_range_slider_left,
|
||||||
clipping_slider_left)))));
|
clipping_slider_left))))) + space_size;
|
||||||
const float slider_icon_width = m_imgui->get_slider_icon_size().x;
|
const float slider_icon_width = m_imgui->get_slider_icon_size().x;
|
||||||
float window_width = minimal_slider_width + sliders_left_width + slider_icon_width;
|
float window_width = minimal_slider_width + sliders_left_width + slider_icon_width;
|
||||||
const int max_filament_items_per_line = 8;
|
const int max_filament_items_per_line = 8;
|
||||||
|
@ -391,7 +391,7 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott
|
||||||
std::string item_text = std::to_string(extruder_idx + 1);
|
std::string item_text = std::to_string(extruder_idx + 1);
|
||||||
const ImVec2 label_size = ImGui::CalcTextSize(item_text.c_str(), NULL, true);
|
const ImVec2 label_size = ImGui::CalcTextSize(item_text.c_str(), NULL, true);
|
||||||
|
|
||||||
const ImVec2 button_size(max_label_size.x + m_imgui->scaled(0.5f), 0.f);
|
const ImVec2 button_size(max_label_size.x + m_imgui->scaled(0.6f),max_label_size.y + m_imgui->scaled(0.55f));
|
||||||
|
|
||||||
float button_offset = start_pos_x;
|
float button_offset = start_pos_x;
|
||||||
if (extruder_idx % max_filament_items_per_line != 0) {
|
if (extruder_idx % max_filament_items_per_line != 0) {
|
||||||
|
@ -403,13 +403,19 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott
|
||||||
ImGuiColorEditFlags flags = ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_NoTooltip;
|
ImGuiColorEditFlags flags = ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_NoTooltip;
|
||||||
if (m_selected_extruder_idx != extruder_idx) flags |= ImGuiColorEditFlags_NoBorder;
|
if (m_selected_extruder_idx != extruder_idx) flags |= ImGuiColorEditFlags_NoBorder;
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
ImGui::PushStyleColor(ImGuiCol_FrameBg, ImVec4(0.4f, 0.4f, 0.4f, 1.0f));
|
ImGui::PushStyleColor(ImGuiCol_FrameBg, ImVec4(0.00f, 0.68f, 0.26f, 1.00f));
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f);
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 3.0);
|
||||||
bool color_picked = ImGui::ColorButton(color_label.c_str(), color_vec, flags, button_size);
|
bool color_picked = ImGui::ColorButton(color_label.c_str(), color_vec, flags, button_size);
|
||||||
ImGui::PopStyleVar(1);
|
ImGui::PopStyleVar(2);
|
||||||
ImGui::PopStyleColor(1);
|
ImGui::PopStyleColor(1);
|
||||||
#else
|
#else
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_FrameBg, ImVec4(0.00f, 0.68f, 0.26f, 1.00f));
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 2.0);
|
||||||
bool color_picked = ImGui::ColorButton(color_label.c_str(), color_vec, flags, button_size);
|
bool color_picked = ImGui::ColorButton(color_label.c_str(), color_vec, flags, button_size);
|
||||||
|
ImGui::PopStyleVar(2);
|
||||||
|
ImGui::PopStyleColor(1);
|
||||||
#endif
|
#endif
|
||||||
color_button_high = ImGui::GetCursorPos().y - color_button - 2.0;
|
color_button_high = ImGui::GetCursorPos().y - color_button - 2.0;
|
||||||
if (color_picked) { m_selected_extruder_idx = extruder_idx; }
|
if (color_picked) { m_selected_extruder_idx = extruder_idx; }
|
||||||
|
@ -419,12 +425,14 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott
|
||||||
// draw filament id
|
// draw filament id
|
||||||
float gray = 0.299 * extruder_color[0] + 0.587 * extruder_color[1] + 0.114 * extruder_color[2];
|
float gray = 0.299 * extruder_color[0] + 0.587 * extruder_color[1] + 0.114 * extruder_color[2];
|
||||||
ImGui::SameLine(button_offset + (button_size.x - label_size.x) / 2.f);
|
ImGui::SameLine(button_offset + (button_size.x - label_size.x) / 2.f);
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, {10.0,15.0});
|
||||||
if (gray * 255.f < 80.f)
|
if (gray * 255.f < 80.f)
|
||||||
ImGui::TextColored(ImVec4(1.0f, 1.0f, 1.0f, 1.0f), item_text.c_str());
|
ImGui::TextColored(ImVec4(1.0f, 1.0f, 1.0f, 1.0f), item_text.c_str());
|
||||||
else
|
else
|
||||||
ImGui::TextColored(ImVec4(0.0f, 0.0f, 0.0f, 1.0f), item_text.c_str());
|
ImGui::TextColored(ImVec4(0.0f, 0.0f, 0.0f, 1.0f), item_text.c_str());
|
||||||
}
|
|
||||||
|
|
||||||
|
ImGui::PopStyleVar();
|
||||||
|
}
|
||||||
//ImGui::NewLine();
|
//ImGui::NewLine();
|
||||||
ImGui::Dummy(ImVec2(0.0f, ImGui::GetFontSize() * 0.1));
|
ImGui::Dummy(ImVec2(0.0f, ImGui::GetFontSize() * 0.1));
|
||||||
|
|
||||||
|
@ -433,20 +441,26 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott
|
||||||
std::array<wchar_t, 6> tool_icons = { ImGui::CircleButtonIcon,ImGui::SphereButtonIcon, ImGui::TriangleButtonIcon, ImGui::HeightRangeIcon, ImGui::FillButtonIcon, ImGui::GapFillIcon };
|
std::array<wchar_t, 6> tool_icons = { ImGui::CircleButtonIcon,ImGui::SphereButtonIcon, ImGui::TriangleButtonIcon, ImGui::HeightRangeIcon, ImGui::FillButtonIcon, ImGui::GapFillIcon };
|
||||||
std::array<wxString, 6> tool_tips = { _L("Circle"), _L("Sphere"), _L("Triangle"), _L("Height Range"), _L("Fill"), _L("Gap Fill") };
|
std::array<wxString, 6> tool_tips = { _L("Circle"), _L("Sphere"), _L("Triangle"), _L("Height Range"), _L("Fill"), _L("Gap Fill") };
|
||||||
for (int i = 0; i < tool_icons.size(); i++) {
|
for (int i = 0; i < tool_icons.size(); i++) {
|
||||||
std::string str_label = std::string("##");
|
std::string str_label = std::string("");
|
||||||
std::wstring btn_name = tool_icons[i] + boost::nowide::widen(str_label);
|
std::wstring btn_name = tool_icons[i] + boost::nowide::widen(str_label);
|
||||||
|
|
||||||
if (i != 0) ImGui::SameLine((empty_button_width + m_imgui->scaled(1.75f)) * i + m_imgui->scaled(0.5f));
|
if (i != 0) ImGui::SameLine((empty_button_width + m_imgui->scaled(1.75f)) * i + m_imgui->scaled(1.5f));
|
||||||
|
|
||||||
if (m_current_tool == tool_icons[i]) {
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.81f, 0.81f, 0.81f, 1.0f)); // r, g, b, a
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(0.81f, 0.81f, 0.81f, 1.0f));
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(0.81f, 0.81f, 0.81f, 1.0f));
|
|
||||||
}
|
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
||||||
|
if (m_current_tool == tool_icons[i]) {
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.86f, 0.99f, 0.91f, 1.00f)); // r, g, b, a
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(0.86f, 0.99f, 0.91f, 1.00f));
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(0.86f, 0.99f, 0.91f, 1.00f));
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Border, ImVec4(0.00f, 0.68f, 0.26f, 1.00f));
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 1.0);
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 1.0);
|
||||||
|
}
|
||||||
bool btn_clicked = ImGui::Button(into_u8(btn_name).c_str());
|
bool btn_clicked = ImGui::Button(into_u8(btn_name).c_str());
|
||||||
|
if (m_current_tool == tool_icons[i])
|
||||||
|
{
|
||||||
|
ImGui::PopStyleColor(4);
|
||||||
|
ImGui::PopStyleVar(2);
|
||||||
|
}
|
||||||
ImGui::PopStyleVar(1);
|
ImGui::PopStyleVar(1);
|
||||||
if (m_current_tool == tool_icons[i]) ImGui::PopStyleColor(3);
|
|
||||||
|
|
||||||
if (btn_clicked && m_current_tool != tool_icons[i]) {
|
if (btn_clicked && m_current_tool != tool_icons[i]) {
|
||||||
m_current_tool = tool_icons[i];
|
m_current_tool = tool_icons[i];
|
||||||
|
@ -639,7 +653,6 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott
|
||||||
GizmoImguiEnd();
|
GizmoImguiEnd();
|
||||||
|
|
||||||
// BBS
|
// BBS
|
||||||
ImGui::PopStyleVar(1);
|
|
||||||
ImGuiWrapper::pop_toolbar_style();
|
ImGuiWrapper::pop_toolbar_style();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -222,17 +222,22 @@ void GLGizmoSeam::on_render_input_window(float x, float y, float bottom_limit)
|
||||||
std::wstring btn_name = tool_icons[i] + boost::nowide::widen(str_label);
|
std::wstring btn_name = tool_icons[i] + boost::nowide::widen(str_label);
|
||||||
|
|
||||||
if (i != 0) ImGui::SameLine((empty_button_width + m_imgui->scaled(1.75f)) * i + m_imgui->scaled(1.3f));
|
if (i != 0) ImGui::SameLine((empty_button_width + m_imgui->scaled(1.75f)) * i + m_imgui->scaled(1.3f));
|
||||||
|
|
||||||
if (m_current_tool == tool_icons[i]) {
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.81f, 0.81f, 0.81f, 1.0f)); // r, g, b, a
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(0.81f, 0.81f, 0.81f, 1.0f));
|
|
||||||
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(0.81f, 0.81f, 0.81f, 1.0f));
|
|
||||||
}
|
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
||||||
|
if (m_current_tool == tool_icons[i]) {
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.86f, 0.99f, 0.91f, 1.00f)); // r, g, b, a
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(0.86f, 0.99f, 0.91f, 1.00f));
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(0.86f, 0.99f, 0.91f, 1.00f));
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Border, ImVec4(0.00f, 0.68f, 0.26f, 1.00f));
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 1.0);
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 1.0);
|
||||||
|
}
|
||||||
bool btn_clicked = ImGui::Button(into_u8(btn_name).c_str());
|
bool btn_clicked = ImGui::Button(into_u8(btn_name).c_str());
|
||||||
|
if (m_current_tool == tool_icons[i])
|
||||||
|
{
|
||||||
|
ImGui::PopStyleColor(4);
|
||||||
|
ImGui::PopStyleVar(2);
|
||||||
|
}
|
||||||
ImGui::PopStyleVar(1);
|
ImGui::PopStyleVar(1);
|
||||||
if (m_current_tool == tool_icons[i])ImGui::PopStyleColor(3);
|
|
||||||
|
|
||||||
if (btn_clicked && m_current_tool != tool_icons[i]) {
|
if (btn_clicked && m_current_tool != tool_icons[i]) {
|
||||||
m_current_tool = tool_icons[i];
|
m_current_tool = tool_icons[i];
|
||||||
for (auto& triangle_selector : m_triangle_selectors) {
|
for (auto& triangle_selector : m_triangle_selectors) {
|
||||||
|
|
|
@ -15,6 +15,11 @@
|
||||||
|
|
||||||
#include <GL/glew.h>
|
#include <GL/glew.h>
|
||||||
|
|
||||||
|
#ifndef IMGUI_DEFINE_MATH_OPERATORS
|
||||||
|
#define IMGUI_DEFINE_MATH_OPERATORS
|
||||||
|
#endif
|
||||||
|
#include <imgui/imgui_internal.h>
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
namespace GUI {
|
namespace GUI {
|
||||||
|
|
||||||
|
@ -63,10 +68,10 @@ void GLGizmoText::on_render_for_picking()
|
||||||
// TODO:
|
// TODO:
|
||||||
}
|
}
|
||||||
|
|
||||||
void GLGizmoText::push_combo_style()
|
void GLGizmoText::push_combo_style(const float scale)
|
||||||
{
|
{
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 1.0f);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 1.0f * scale);
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 1.0f);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 1.0f * scale);
|
||||||
ImGui::PushStyleColor(ImGuiCol_PopupBg, ImGuiWrapper::COL_WINDOW_BG);
|
ImGui::PushStyleColor(ImGuiCol_PopupBg, ImGuiWrapper::COL_WINDOW_BG);
|
||||||
ImGui::PushStyleColor(ImGuiCol_BorderActive, ImVec4(0.00f, 0.68f, 0.26f, 1.00f));
|
ImGui::PushStyleColor(ImGuiCol_BorderActive, ImVec4(0.00f, 0.68f, 0.26f, 1.00f));
|
||||||
ImGui::PushStyleColor(ImGuiCol_HeaderHovered, ImVec4(0.00f, 0.68f, 0.26f, 0.0f));
|
ImGui::PushStyleColor(ImGuiCol_HeaderHovered, ImVec4(0.00f, 0.68f, 0.26f, 0.0f));
|
||||||
|
@ -92,8 +97,9 @@ void GLGizmoText::on_render_input_window(float x, float y, float bottom_limit)
|
||||||
static float last_y = 0.0f;
|
static float last_y = 0.0f;
|
||||||
static float last_h = 0.0f;
|
static float last_h = 0.0f;
|
||||||
|
|
||||||
ImGuiWrapper::push_toolbar_style(m_parent.get_scale());
|
const float currt_scale = m_parent.get_scale();
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {4.0,5.0});
|
ImGuiWrapper::push_toolbar_style(currt_scale);
|
||||||
|
ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(4.0,5.0) * currt_scale);
|
||||||
GizmoImguiBegin("Text", ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar);
|
GizmoImguiBegin("Text", ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoTitleBar);
|
||||||
|
|
||||||
float space_size = m_imgui->get_style_scaling() * 8;
|
float space_size = m_imgui->get_style_scaling() * 8;
|
||||||
|
@ -134,10 +140,10 @@ void GLGizmoText::on_render_input_window(float x, float y, float bottom_limit)
|
||||||
m_imgui->text(_L("Font"));
|
m_imgui->text(_L("Font"));
|
||||||
ImGui::SameLine(caption_size);
|
ImGui::SameLine(caption_size);
|
||||||
ImGui::PushItemWidth(input_text_size + ImGui::GetFrameHeight() * 2);
|
ImGui::PushItemWidth(input_text_size + ImGui::GetFrameHeight() * 2);
|
||||||
push_combo_style();
|
push_combo_style(currt_scale);
|
||||||
if (ImGui::BBLBeginCombo("##Font", cstr_font_names[m_curr_font_idx], 0)) {
|
if (ImGui::BBLBeginCombo("##Font", cstr_font_names[m_curr_font_idx], 0)) {
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 0.0f);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 0.0f);
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(4.0f, 0.0f));
|
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(4.0f, 0.0f) * currt_scale);
|
||||||
for (int i = 0; i < m_avail_font_names.size(); i++) {
|
for (int i = 0; i < m_avail_font_names.size(); i++) {
|
||||||
const bool is_selected = (m_curr_font_idx == i);
|
const bool is_selected = (m_curr_font_idx == i);
|
||||||
if (ImGui::BBLSelectable(cstr_font_names[i], is_selected)) {
|
if (ImGui::BBLSelectable(cstr_font_names[i], is_selected)) {
|
||||||
|
@ -153,13 +159,11 @@ void GLGizmoText::on_render_input_window(float x, float y, float bottom_limit)
|
||||||
|
|
||||||
ImGui::AlignTextToFramePadding();
|
ImGui::AlignTextToFramePadding();
|
||||||
pop_combo_style();
|
pop_combo_style();
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0.0f, 0.0f));
|
|
||||||
m_imgui->text(_L("Size"));
|
m_imgui->text(_L("Size"));
|
||||||
ImGui::SameLine(caption_size);
|
ImGui::SameLine(caption_size);
|
||||||
ImGui::PushItemWidth(input_size);
|
ImGui::PushItemWidth(input_size);
|
||||||
ImGui::InputFloat("###font_size", &m_font_size, 0.0f, 0.0f, "%.2f");
|
ImGui::InputFloat("###font_size", &m_font_size, 0.0f, 0.0f, "%.2f");
|
||||||
if (m_font_size < 3.0f)m_font_size = 3.0f;
|
if (m_font_size < 3.0f)m_font_size = 3.0f;
|
||||||
ImGui::PopStyleVar(1);
|
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
|
|
||||||
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0);
|
||||||
|
|
|
@ -32,7 +32,7 @@ protected:
|
||||||
virtual bool on_is_activable() const override;
|
virtual bool on_is_activable() const override;
|
||||||
virtual void on_render() override;
|
virtual void on_render() override;
|
||||||
virtual void on_render_for_picking() override;
|
virtual void on_render_for_picking() override;
|
||||||
void push_combo_style();
|
void push_combo_style(const float scale);
|
||||||
void pop_combo_style();
|
void pop_combo_style();
|
||||||
virtual void on_set_state() override;
|
virtual void on_set_state() override;
|
||||||
virtual CommonGizmosDataID on_get_requirements() const override;
|
virtual CommonGizmosDataID on_get_requirements() const override;
|
||||||
|
|
|
@ -518,7 +518,7 @@ wxBoxSizer *StatusBasePanel::create_project_task_page(wxWindow *parent)
|
||||||
wxBoxSizer *text_sizer = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer *text_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
|
|
||||||
m_error_text = new wxStaticText2(m_panel_error_txt);
|
m_error_text = new wxStaticText2(m_panel_error_txt);
|
||||||
m_error_text->SetForegroundColour(PAGE_TITLE_FONT_COL);
|
m_error_text->SetForegroundColour(wxColour(255, 0, 0));
|
||||||
text_sizer->Add(m_error_text, 1, wxEXPAND|wxLEFT, FromDIP(17));
|
text_sizer->Add(m_error_text, 1, wxEXPAND|wxLEFT, FromDIP(17));
|
||||||
|
|
||||||
m_button_clean = new Button(m_panel_error_txt, _L("Clean"));
|
m_button_clean = new Button(m_panel_error_txt, _L("Clean"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue