mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
* Update ImGuiComponents & ImGuiHelpers Took some helper functions created for `UiDebug2`, and incorporated them into `ImGuiComponents` / `ImGuiHelpers` instead - `IconButton()` (and its various overloads) now includes an optional size parameter - `IconButtonSelect()` has been added, allowing a row or grid of IconButtons to serve as a radio-like input - `HelpMarker()` now includes an optional color parameter - `ClickToCopyText()` now includes an optional color parameter, and includes the `FontAwesome.Copy` icon in the tooltip. - Implemented ImRaii in these files These changes are intended not to break any existing calls in plugins or within Dalamud itself. * Fix ambiguous overloads * UiDebug2 Updates - Fixed XY coordinate display - Added AtkValue table to AddonTree display - Restored old behaviour wherein the Addon display initially only shows the Root node and a collapsed node list - The above should also fix the Element Selector / Search behaviour, allowing it to scroll correctly to the searched node - Now displays field offsets for any node/component whose pointer exists in the addon struct - Tidied up node tree headers by removing memory addresses (they're still readable in the opened tree, of course)
53 lines
1.5 KiB
C#
53 lines
1.5 KiB
C#
using Dalamud.Interface.Utility.Raii;
|
|
|
|
using FFXIVClientStructs.FFXIV.Common.Math;
|
|
|
|
using ImGuiNET;
|
|
|
|
namespace Dalamud.Interface.Components;
|
|
|
|
/// <summary>
|
|
/// Class containing various methods providing ImGui components.
|
|
/// </summary>
|
|
public static partial class ImGuiComponents
|
|
{
|
|
/// <summary>
|
|
/// HelpMarker component to add a help icon with text on hover.
|
|
/// </summary>
|
|
/// <param name="helpText">The text to display on hover.</param>
|
|
public static void HelpMarker(string helpText) => HelpMarker(helpText, FontAwesomeIcon.InfoCircle);
|
|
|
|
/// <summary>
|
|
/// HelpMarker component to add a custom icon with text on hover.
|
|
/// </summary>
|
|
/// <param name="helpText">The text to display on hover.</param>
|
|
/// <param name="icon">The icon to use.</param>
|
|
/// <param name="color">The color of the icon.</param>
|
|
public static void HelpMarker(string helpText, FontAwesomeIcon icon, Vector4? color = null)
|
|
{
|
|
using var col = new ImRaii.Color();
|
|
|
|
if (color.HasValue)
|
|
{
|
|
col.Push(ImGuiCol.TextDisabled, color.Value);
|
|
}
|
|
|
|
ImGui.SameLine();
|
|
|
|
using (ImRaii.PushFont(UiBuilder.IconFont))
|
|
{
|
|
ImGui.TextDisabled(icon.ToIconString());
|
|
}
|
|
|
|
if (ImGui.IsItemHovered())
|
|
{
|
|
using (ImRaii.Tooltip())
|
|
{
|
|
using (ImRaii.TextWrapPos(ImGui.GetFontSize() * 35.0f))
|
|
{
|
|
ImGui.TextUnformatted(helpText);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|