+ UpdateTabCtrlHeight();
+}
+
+// SetTabCtrlHeight() is the highest-level override of the
+// tab height. A call to this function effectively enforces a
+// specified tab ctrl height, overriding all other considerations,
+// such as text or bitmap height. It overrides any call to
+// SetUniformBitmapSize(). Specifying a height of -1 reverts
+// any previous call and returns to the default behavior
+
+void wxAuiNotebook::SetTabCtrlHeight(int height)
+{
+ m_requested_tabctrl_height = height;
+
+ // if window is already initialized, recalculate the tab height
+ if (m_dummy_wnd)
+ {
+ UpdateTabCtrlHeight();
+ }