| 16 | { |
| 17 | public: |
| 18 | ContextMenu(std::string_view _layout) : |
| 19 | BaseLayout(_layout, nullptr) |
| 20 | { |
| 21 | assignWidget(mMenu, "_Main"); |
| 22 | mMenu->setVisible(false); |
| 23 | mMenu->eventMenuCtrlAccept += MyGUI::newDelegate(this, &ContextMenu::notifyMenuCtrlAccept); |
| 24 | } |
| 25 | |
| 26 | void setVisible(bool _value) |
| 27 | { |
nothing calls this directly
no test coverage detected