| 374 | |
| 375 | |
| 376 | class wxTreebookExt final : public wxTreebook |
| 377 | { |
| 378 | public: |
| 379 | wxTreebookExt( wxWindow *parent, |
| 380 | wxWindowID id, const TranslatableString &titlePrefix) |
| 381 | : wxTreebook( parent, id ) |
| 382 | , mTitlePrefix(titlePrefix) |
| 383 | {;}; |
| 384 | ~wxTreebookExt(){;}; |
| 385 | int ChangeSelection(size_t n) override; |
| 386 | int SetSelection(size_t n) override; |
| 387 | const TranslatableString mTitlePrefix; |
| 388 | }; |
| 389 | |
| 390 | |
| 391 | int wxTreebookExt::ChangeSelection(size_t n) { |