Get item from specified position
| 82 | |
| 83 | //! Get item from specified position |
| 84 | BasePanelViewItem* getItem(size_t _index) |
| 85 | { |
| 86 | MYGUI_ASSERT_RANGE(_index, mItems.size(), "BasePanelView::getItem"); |
| 87 | return mItems[_index]; |
| 88 | } |
| 89 | |
| 90 | //! Search item, returns the position of the first occurrence in list or ITEM_NONE if item not found |
| 91 | size_t findItem(BasePanelViewItem* _item) |