wx.SizeEvent

Inheritance diagram for wx.SizeEvent:



Description

A size event holds information about size change events.

The wx.EVT_SIZE handler function will be called when the window has been resized.

You may wish to use this for frames to resize their child windows as appropriate.

When a window is resized, usually only a small part of the window is damaged and you may only need to repaint that area. However, if your drawing depends on the size of the window, you may need to clear the DC explicitly and repaint the whole window. In which case, you may need to call wx.Window.Refresh to invalidate the entire window.

Note

Note that the size passed is of the whole window: call wx.Window.GetClientSize for the area which may be used by the application.

See also

wx.Size

Derived From

Event Handling

Event Name Description
wx.EVT_SIZE(func) Process a wx.wxEVT_SIZE event.

Properties Summary

Class API

Methods

__init__(sz=wx.DefaultSize, winid=0)

Construct a new wx.SizeEvent.

Parameters:


Returns:

wx.SizeEvent


GetRect()

Returns the entire rect of the window generating the size change event.


Returns:

wx.Rect


GetSize()

Returns the entire size of the window generating the size change event.


Returns:

wx.Size


SetRect(rect)

Parameters:


SetSize(size)

Parameters:


Properties

Rect
See GetRect and SetRect
Size
See GetSize and SetSize
m_rect
See GetRect and SetRect
m_size
See GetSize and SetSize