| 10 | { |
| 11 | |
| 12 | ToolTip::ToolTip() : |
| 13 | BaseLayout("ToolTip.layout") |
| 14 | { |
| 15 | assignWidget(mTextName, "text_Name"); |
| 16 | assignWidget(mTextCount, "text_Count"); |
| 17 | assignWidget(mTextDesc, "text_Desc"); |
| 18 | assignWidget(mImageInfo, "image_Info"); |
| 19 | |
| 20 | MyGUI::ISubWidgetText* text = mTextDesc->getSubWidgetText(); |
| 21 | const MyGUI::IntCoord& coord = text ? text->getCoord() : MyGUI::IntCoord(); |
| 22 | mOffsetHeight = mMainWidget->getHeight() - coord.height; |
| 23 | } |
| 24 | |
| 25 | void ToolTip::show(ItemData* _data) |
| 26 | { |
nothing calls this directly
no test coverage detected