X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/45f22d48cdd5f8cc57b9ddc6f48c7c953adbb940..a4fbdd76c156f235c319d13a5a4c6df99eee9517:/src/generic/notebook.cpp diff --git a/src/generic/notebook.cpp b/src/generic/notebook.cpp index b1c74e6fb6..94170c605e 100644 --- a/src/generic/notebook.cpp +++ b/src/generic/notebook.cpp @@ -214,6 +214,24 @@ bool wxNotebook::SetPageImage(int nPage, int nImage) return FALSE; } +// set the size (the same for all pages) +void wxNotebook::SetPageSize(const wxSize& size) +{ + // TODO +} + +// set the padding between tabs (in pixels) +void wxNotebook::SetPadding(const wxSize& padding) +{ + // TODO +} + +// set the size of the tabs for wxNB_FIXEDWIDTH controls +void wxNotebook::SetTabSize(const wxSize& sz) +{ + // TODO +} + // ---------------------------------------------------------------------------- // wxNotebook operations // ----------------------------------------------------------------------------