| 95 | } |
| 96 | |
| 97 | void WidgetsWindow::notifySelectWidgetType(MyGUI::Widget* _sender) |
| 98 | { |
| 99 | SkinInfo data = getCellData(_sender); |
| 100 | |
| 101 | if (getCellSelected(_sender)) |
| 102 | WidgetCreatorManager::getInstance().resetCreatorInfo(); |
| 103 | else |
| 104 | WidgetCreatorManager::getInstance().setCreatorInfo(data.widget_type, data.widget_skin); |
| 105 | } |
| 106 | |
| 107 | void WidgetsWindow::notifyToolTip(MyGUI::Widget* _sender, const MyGUI::ToolTipInfo& _info) |
| 108 | { |
nothing calls this directly
no test coverage detected