| 206 | } |
| 207 | |
| 208 | [[nodiscard]] const char* getClipboardText(ImGuiContext* /*ctx*/) |
| 209 | { |
| 210 | static std::string s_clipboardText; |
| 211 | |
| 212 | auto tmp = sf::Clipboard::getString().toUtf8(); |
| 213 | s_clipboardText.assign(tmp.begin(), tmp.end()); |
| 214 | return s_clipboardText.c_str(); |
| 215 | } |
| 216 | |
| 217 | // mouse cursors |
| 218 | void updateMouseCursor(sf::Window& window); |
nothing calls this directly
no outgoing calls
no test coverage detected