#include "wx/sizer.h"
#include "wx/utils.h"
#include "wx/statbox.h"
+#include "wx/notebook.h"
//---------------------------------------------------------------------------
IMPLEMENT_ABSTRACT_CLASS(wxSizer, wxObject);
IMPLEMENT_ABSTRACT_CLASS(wxBoxSizer, wxSizer);
IMPLEMENT_ABSTRACT_CLASS(wxStaticBoxSizer, wxBoxSizer);
+#if wxUSE_NOTEBOOK
+IMPLEMENT_ABSTRACT_CLASS(wxNotebookSizer, wxSizer);
+#endif
//---------------------------------------------------------------------------
// wxSizerItem
m_children.Insert( new wxSizerItem( width, height, option, flag, border, userData ) );
}
+void wxSizer::Insert( int before, wxWindow *window, int option, int flag, int border, wxObject* userData )
+{
+ m_children.Insert( before, new wxSizerItem( window, option, flag, border, userData ) );
+}
+
+void wxSizer::Insert( int before, wxSizer *sizer, int option, int flag, int border, wxObject* userData )
+{
+ m_children.Insert( before, new wxSizerItem( sizer, option, flag, border, userData ) );
+}
+
+void wxSizer::Insert( int before, int width, int height, int option, int flag, int border, wxObject* userData )
+{
+ m_children.Insert( before, new wxSizerItem( width, height, option, flag, border, userData ) );
+}
+
bool wxSizer::Remove( wxWindow *window )
{
wxASSERT( window );
if (m_orient == wxVERTICAL)
{
- long height = size.y;
+ wxCoord height = size.y;
if (item->GetOption())
{
height = (delta * weight) + extra;
}
else
{
- long width = size.x;
+ wxCoord width = size.x;
if (item->GetOption())
{
width = (delta * weight) + extra;
wxSize wxBoxSizer::CalcMin()
{
if (m_children.GetCount() == 0)
- return wxSize(2,2);
+ return wxSize(10,10);
m_stretchable = 0;
m_minWidth = 0;
wxSize wxStaticBoxSizer::CalcMin()
{
- // this will have to be done platform by platform
+ // This will have to be done platform by platform
// as there is no way to guess the thickness of
- // a wxStaticBox border
+ // a wxStaticBox border.
+
int top_border = 15;
if (m_staticBox->GetLabel().IsEmpty()) top_border = 5;
int other_border = 5;
wxSize ret( wxBoxSizer::CalcMin() );
- ret.x += 2*top_border;
+ ret.x += 2*other_border;
ret.y += other_border + top_border;
return ret;
}
+
+//---------------------------------------------------------------------------
+// wxNotebookSizer
+//---------------------------------------------------------------------------
+
+#if wxUSE_NOTEBOOK
+
+wxNotebookSizer::wxNotebookSizer( wxNotebook *nb )
+{
+ wxASSERT_MSG( nb, wxT("wxNotebookSizer needs a notebook") );
+
+ m_notebook = nb;
+}
+
+void wxNotebookSizer::RecalcSizes()
+{
+ m_notebook->SetSize( m_position.x, m_position.y, m_size.x, m_size.y );
+}
+
+wxSize wxNotebookSizer::CalcMin()
+{
+ // This will have to be done platform by platform
+ // as there is no way to guess the thickness of
+ // the wxNotebook tabs and border.
+
+ int borderX = 5;
+ int borderY = 5;
+ if ((m_notebook->HasFlag(wxNB_RIGHT)) ||
+ (m_notebook->HasFlag(wxNB_LEFT)))
+ {
+ borderX += 70; // improvements later..
+ }
+ else
+ {
+ borderY += 35; // improvements later..
+ }
+
+ if (m_notebook->GetChildren().GetCount() == 0)
+ return wxSize(borderX + 10, borderY + 10);
+
+ int maxX = 0;
+ int maxY = 0;
+
+ wxWindowList::Node *node = m_notebook->GetChildren().GetFirst();
+ while (node)
+ {
+ wxWindow *item = node->GetData();
+ wxSizer *itemsizer = item->GetSizer();
+
+ if (itemsizer)
+ {
+ wxSize subsize( itemsizer->CalcMin() );
+
+ if (subsize.x > maxX) maxX = subsize.x;
+ if (subsize.y > maxY) maxY = subsize.y;
+ }
+
+ node = node->GetNext();
+ }
+
+ return wxSize( borderX + maxX, borderY + maxY );
+}
+
+#endif // wxUSE_NOTEBOOK