| 18 | { |
| 19 | public: |
| 20 | BasePanelViewCell(std::string_view _layout, MyGUI::Widget* _parent) : |
| 21 | BaseLayout(_layout, _parent) |
| 22 | { |
| 23 | mMainWidget->setPosition(0, 0); |
| 24 | |
| 25 | m_minHeight = mMainWidget->getHeight() - getClient()->getHeight(); |
| 26 | m_maxHeight = mMainWidget->getHeight(); |
| 27 | } |
| 28 | |
| 29 | void setCaption(const MyGUI::UString& _caption) |
| 30 | { |
nothing calls this directly
no test coverage detected