| 15 | } |
| 16 | |
| 17 | ColourWindowCellView::ColourWindowCellView(MyGUI::Widget* _parent) : |
| 18 | wraps::BaseCellView<ColourWindowCellData*>("ColourWindowCellView.layout", _parent) |
| 19 | { |
| 20 | mMainWidget->setCoord(0, 0, _parent->getWidth(), _parent->getHeight()); |
| 21 | mMainWidget->setAlign(MyGUI::Align::Stretch); |
| 22 | |
| 23 | assignWidget(mText, "Text"); |
| 24 | assignWidget(mColour, "Colour"); |
| 25 | } |
| 26 | |
| 27 | void ColourWindowCellView::update(const MyGUI::IBDrawItemInfo& _info, ColourWindowCellData* _data) |
| 28 | { |
nothing calls this directly
no test coverage detected