| 286 | } |
| 287 | |
| 288 | Notebook::IndexType Notebook::GetPageCount() const { |
| 289 | return static_cast<IndexType>( m_children.size() ); |
| 290 | } |
| 291 | |
| 292 | const Widget::Ptr Notebook::GetTabLabel( Widget::Ptr child ) const { |
| 293 | auto page_number = GetPageOf( child ); |
no test coverage detected