| 25 | MyStateTool() : StatePlugin( "My State Tool" ) {} |
| 26 | |
| 27 | virtual void drawDialog( ImGuiContext* ) override |
| 28 | { |
| 29 | if ( !ImGuiBeginWindow_( { .width = 200 * UI::scale() } ) ) |
| 30 | return; |
| 31 | UI::transparentTextWrapped( "Hello World!" ); |
| 32 | ImGui::EndCustomStatePlugin(); |
| 33 | } |
| 34 | }; |
| 35 | |
| 36 | MR_REGISTER_RIBBON_ITEM( MyTool ) |
nothing calls this directly
no test coverage detected