size.x = rwidth;
}
}
-
+
// This is what GetPosition() returns. Since we calculate
// borders afterwards, GetPosition() will be the left/top
// corner of the surrounding border.
void wxSizer::Fit( wxWindow *window )
{
- window->SetSize( GetMinWindowSize( window ) );
+ wxSize size;
+ if (window->IsTopLevel())
+ size = FitSize( window );
+ else
+ size = GetMinWindowSize( window );
+
+ window->SetSize( size );
}
void wxSizer::Layout()
void wxSizer::SetSizeHints( wxWindow *window )
{
- wxSize size( GetMinWindowSize( window ) );
+ wxSize size = FitSize( window );
window->SetSizeHints( size.x, size.y );
}
+wxSize wxSizer::GetMaxWindowSize( wxWindow *WXUNUSED(window) )
+{
+ wxSize sizeMax = wxGetDisplaySize();
+ // make the max size a bit smaller than the screen, a window which takes
+ // the entire screen doesn't look very nice neither
+ sizeMax.x *= 9;
+ sizeMax.x /= 10;
+
+ sizeMax.y *= 9;
+ sizeMax.y /= 10;
+
+ return sizeMax;
+}
+
wxSize wxSizer::GetMinWindowSize( wxWindow *window )
{
wxSize minSize( GetMinSize() );
minSize.y+size.y-client_size.y );
}
+// Return a window size that will fit within the screens dimensions
+wxSize wxSizer::FitSize( wxWindow *window )
+{
+ wxSize size = GetMinWindowSize( window );
+ wxSize sizeMax = GetMaxWindowSize( window );
+
+ if ( size.x > sizeMax.x )
+ size.x = sizeMax.x;
+ if ( size.y > sizeMax.y )
+ size.y = sizeMax.y;
+
+ return size;
+}
+
void wxSizer::SetDimension( int x, int y, int width, int height )
{
m_position.x = x;
wxSizerItem *item = (wxSizerItem*) node->Data();
m_stretchable += item->GetOption();
-
+
wxSize size( item->CalcMin() );
if (m_orient == wxHORIZONTAL)
m_fixedWidth = wxMax( m_fixedWidth, size.x );
}
else
- {
+ {
m_fixedWidth += size.x;
m_fixedHeight = wxMax( m_fixedHeight, size.y );
}
else
#endif // __WXGTK__
*borderTop = 15;
-
+ (void)box;
*borderOther = 5;
}