#include </home/zeitlin/src/wx/github/interface/wx/laywin.h>
This event is sent by wxLayoutAlgorithm to calculate the amount of the remaining client area that the window should occupy.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros:
wxEVT_CALCULATE_LAYOUT
event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. Public Member Functions | |
wxCalculateLayoutEvent (wxWindowID id=0) | |
Constructor. | |
int | GetFlags () const |
Returns the flags associated with this event. | |
wxRect | GetRect () const |
Before the event handler is entered, returns the remaining parent client area that the window could occupy. | |
void | SetFlags (int flags) |
Sets the flags associated with this event. | |
void | SetRect (const wxRect &rect) |
Call this to specify the new remaining parent client area, after the space occupied by the window has been subtracted. |
wxCalculateLayoutEvent::wxCalculateLayoutEvent | ( | wxWindowID | id = 0 | ) |
Constructor.
int wxCalculateLayoutEvent::GetFlags | ( | ) | const |
Returns the flags associated with this event.
Not currently used.
wxRect wxCalculateLayoutEvent::GetRect | ( | ) | const |
Before the event handler is entered, returns the remaining parent client area that the window could occupy.
When the event handler returns, this should contain the remaining parent client rectangle, after the event handler has subtracted the area that its window occupies.
void wxCalculateLayoutEvent::SetFlags | ( | int | flags | ) |
Sets the flags associated with this event.
Not currently used.
void wxCalculateLayoutEvent::SetRect | ( | const wxRect & | rect | ) |
Call this to specify the new remaining parent client area, after the space occupied by the window has been subtracted.