feat: Integrate the interactive help option and add a help text for every view

This commit is contained in:
WerWolv
2025-11-30 16:42:01 +01:00
parent 989f7f7678
commit 9ae233a41c
46 changed files with 204 additions and 9 deletions

View File

@@ -379,4 +379,10 @@ namespace hex::plugin::builtin {
}
}
void ViewPatternData::drawHelpText() {
ImGuiExt::TextFormattedWrapped("This view displays the pattern tree generated by the previously executed pattern script. It only becomes active once a pattern has been successfully executed.");
ImGui::NewLine();
ImGuiExt::TextFormattedWrapped("Clicking on a pattern in the tree will select the corresponding bytes in the Hex Editor view and jump to its definition in the Pattern Editor view. Additionally you can edit the values of patterns by double clicking them which will automatically update the bytes in your loaded data source.");
}
}