mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
302f08dd57
## Link to GitHub Issue, if one exists #0 ## Description of change When patcher URL returns an invalid response (as in, cannot be parsed as JSON), show an error message to user. Add a "copy text" button to copy the error message. Fix WarnTooltip so that can handle the case where description is an empty string for a patch - previously this was just showing as multiple lines of empty space and then the warning. ## Compiling It's fine except Docker build currently fails due to cmake version issue. ## Testing Tested valid / invalid datecodes and checked against responses.
96 lines
3.0 KiB
C++
96 lines
3.0 KiB
C++
#include "extensions.h"
|
|
#include <cmath>
|
|
|
|
#include "external/imgui/imgui.h"
|
|
|
|
|
|
namespace ImGui {
|
|
|
|
const auto fg = ImVec4(0.910f, 0.914f, 0.922f, 1.0f);
|
|
const auto bg = ImVec4(0.192f, 0.212f, 0.220f, 1.0f);
|
|
|
|
void HelpTooltip(const char* desc) {
|
|
ImGui::PushStyleColor(ImGuiCol_Border, bg);
|
|
ImGui::PushStyleColor(ImGuiCol_BorderShadow, bg);
|
|
ImGui::PushStyleColor(ImGuiCol_PopupBg, bg);
|
|
ImGui::PushStyleColor(ImGuiCol_Text, fg);
|
|
|
|
ImGui::BeginTooltip();
|
|
ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f);
|
|
ImGui::TextUnformatted(desc);
|
|
ImGui::PopTextWrapPos();
|
|
ImGui::EndTooltip();
|
|
|
|
ImGui::PopStyleColor(4);
|
|
}
|
|
|
|
void HelpMarker(const char* desc) {
|
|
ImGui::TextDisabled("(?)");
|
|
if (ImGui::IsItemHovered()) {
|
|
HelpTooltip(desc);
|
|
}
|
|
}
|
|
|
|
void WarnTooltip(const char* desc, const char* warn) {
|
|
ImGui::PushStyleColor(ImGuiCol_Border, bg);
|
|
ImGui::PushStyleColor(ImGuiCol_BorderShadow, bg);
|
|
ImGui::PushStyleColor(ImGuiCol_PopupBg, bg);
|
|
ImGui::PushStyleColor(ImGuiCol_Text, fg);
|
|
|
|
ImGui::BeginTooltip();
|
|
ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f);
|
|
if (desc && desc[0]) {
|
|
ImGui::TextUnformatted(desc);
|
|
ImGui::TextUnformatted("");
|
|
}
|
|
ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.f, 1.f, 0.f, 1.f));
|
|
if (warn && warn[0]) {
|
|
ImGui::TextUnformatted("WARNING:");
|
|
ImGui::TextUnformatted(warn);
|
|
}
|
|
ImGui::PopStyleColor();
|
|
ImGui::PopTextWrapPos();
|
|
ImGui::EndTooltip();
|
|
|
|
ImGui::PopStyleColor(4);
|
|
}
|
|
|
|
void WarnMarker(const char* desc, const char* warn) {
|
|
ImGui::PushStyleColor(ImGuiCol_TextDisabled, ImVec4(1.f, 1.f, 0.f, 1.f));
|
|
ImGui::TextDisabled("(!)");
|
|
ImGui::PopStyleColor();
|
|
if (ImGui::IsItemHovered()) {
|
|
WarnTooltip(desc, warn);
|
|
}
|
|
}
|
|
|
|
void DummyMarker() {
|
|
// dummy marker that is the same width as HelpMarker/WarnMarker.
|
|
ImGui::Dummy(ImVec2(22, 0));
|
|
}
|
|
|
|
void Knob(float fraction, float size, float thickness, float pos_x, float pos_y) {
|
|
|
|
// get values
|
|
auto radius = size * 0.5f;
|
|
auto pos = ImGui::GetCursorScreenPos();
|
|
if (pos_x >= 0) pos.x = pos_x;
|
|
if (pos_y >= 0) pos.y = pos_y;
|
|
auto center = ImVec2(pos.x + radius, pos.y + radius);
|
|
auto draw_list = ImGui::GetWindowDrawList();
|
|
|
|
// dummy for spacing knob with other content
|
|
if (pos_x < 0 && pos_y < 0) {
|
|
ImGui::Dummy(ImVec2(size, size));
|
|
}
|
|
|
|
// draw knob
|
|
auto angle = (fraction + 0.25f) * (3.141592f * 2);
|
|
draw_list->AddCircleFilled(center, radius, ImGui::GetColorU32(ImGuiCol_FrameBg), 16);
|
|
draw_list->AddLine(center,
|
|
ImVec2(center.x + cosf(angle) * radius, center.y + sinf(angle) * radius),
|
|
ImGui::GetColorU32(ImGuiCol_PlotHistogram),
|
|
thickness);
|
|
}
|
|
}
|