Table Of Contents

Previous topic

Window IDs Overview

Next topic

Window Styles Overview

This Page

phoenix_title Window Sizing Overview

It can sometimes be confusing to keep track of the various size-related attributes of a Window, how they relate to each other, and how they interact with sizers.

This document will attempt to clear the fog a little, and give some simple explanations of things.

Glossary

  • “Best Size”: the best size of a widget depends on what kind of widget it is, and usually also on the contents of the widget. For example a ListBox ‘s best size will be calculated based on how many items it has, up to a certain limit, or a Button ‘s best size will be calculated based on its label size, but normally won’t be smaller than the platform default button size (unless a style flag overrides that). There is a special method in the wxPython window classes called Window.DoGetBestSize that a class needs to override if it wants to calculate its own best size based on its content.
  • “Minimal Size”: the minimal size of a widget is a size that is normally explicitly set by the programmer either with the Window.SetMinSize method or with the Window.SetSizeHints method. Most controls will also set the minimal size to the size given in the control’s constructor if a non-default value is passed. Top-level windows such as Frame will not allow the user to resize the frame below the minimal size.
  • “Maximum Size”: just like for the minimal size, the maximum size is normally explicitly set by the programmer with the Window.SetMaxSize method or with Window.SetSizeHints. Top-level windows such as Frame will not allow the user to resize the frame above the maximum size.
  • “Size”: the size of a widget can be explicitly set or fetched with the Window.SetSize or Window.GetSize methods. This size value is the size that the widget is currently using on screen and is the way to change the size of something that is not being managed by a sizer.
  • “Client Size”: the client size represents the widget’s area inside of any borders belonging to the widget and is the area that can be drawn upon in a EVT_PAINT event. If a widget doesn’t have a border then its client size is the same as its size.
  • “Initial Size”: the initial size of a widget is the size given to the constructor of the widget, if any. As mentioned above most controls will also set this size value as the control’s minimal size. If the size passed to the constructor is the default DefaultSize, or if the size is not fully specified (such as wx.Size(150, -1)) then most controls will fill in the missing size components using the best size and will set the initial size of the control to the resulting size.
  • “Virtual Size”: the virtual size is the size of the potentially viewable area of the widget. The virtual size of a widget may be larger than its actual size and in this case scrollbars will appear to the let the user ‘explore’ the full contents of the widget. See Scrolled for more info.