| 106 | } |
| 107 | |
| 108 | Notebook::IndexType Notebook::AppendPage( Widget::Ptr child, Widget::Ptr tab_label ) { |
| 109 | return InsertPage( child, tab_label, -1 ); |
| 110 | } |
| 111 | |
| 112 | Notebook::IndexType Notebook::PrependPage( Widget::Ptr child, Widget::Ptr tab_label ) { |
| 113 | return InsertPage( child, tab_label, 0 ); |