]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/notebook.cpp
Updated for new library and DLL names on MSW
[wxWidgets.git] / src / generic / notebook.cpp
index b1c74e6fb62bbc68d2a9c9c19bca586664796ad7..94170c605e294a1568e6184f081aa972df6804e6 100644 (file)
@@ -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
 // ----------------------------------------------------------------------------