17 lines
563 B
C++
17 lines
563 B
C++
# include "widgets.h"
|
|
# define IMGUI_DEFINE_MATH_OPERATORS
|
|
# include <imgui_internal.h>
|
|
|
|
void ax::Widgets::Icon(const ImVec2& size, IconType type, bool filled, const ImVec4& color/* = ImVec4(1, 1, 1, 1)*/, const ImVec4& innerColor/* = ImVec4(0, 0, 0, 0)*/)
|
|
{
|
|
if (ImGui::IsRectVisible(size))
|
|
{
|
|
auto cursorPos = ImGui::GetCursorScreenPos();
|
|
auto drawList = ImGui::GetWindowDrawList();
|
|
ax::Drawing::DrawIcon(drawList, cursorPos, cursorPos + size, type, filled, ImColor(color), ImColor(innerColor));
|
|
}
|
|
|
|
ImGui::Dummy(size);
|
|
}
|
|
|