.\" This is a wxWidgets manpage page generated from the XML docs .TH wxQueryLayoutInfoEvent 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxQueryLayoutInfoEvent \- Used to query layout information .SH DESCRIPTION This event is sent when wxLayoutAlgorithm wishes to get the size, orientation and alignment of a window. More precisely, the event is sent by the OnCalculateLayout handler which is itself invoked by wxLayoutAlgorithm. .SH "PARENTS" wxEvent wxObject .SH "INCLUDE FILES" wx/laywin.h .SH MEMBERS .SS wxQueryLayoutInfoEvent (wxWindowID id = 0) Constructor. .SS void GetAlignment () Specifies the alignment of the window (which side of the remaining parent client area the window sticks to). One of wxLAYOUT_TOP, wxLAYOUT_LEFT, wxLAYOUT_RIGHT, wxLAYOUT_BOTTOM. .SS int GetFlags () Returns the flags associated with this event. Not currently used. .SS wxLayoutOrientation GetOrientation () Returns the orientation that the event handler specified to the event object. May be one of wxLAYOUT_HORIZONTAL, wxLAYOUT_VERTICAL. .SS int GetRequestedLength () Returns the requested length of the window in the direction of the window orientation. This information is not yet used. .SS wxSize GetSize () Returns the size that the event handler specified to the event object as being the requested size of the window. .SS void SetAlignment (wxLayoutAlignment alignment) Call this to specify the alignment of the window (which side of the remaining parent client area the window sticks to). May be one of wxLAYOUT_TOP, wxLAYOUT_LEFT, wxLAYOUT_RIGHT, wxLAYOUT_BOTTOM. .SS void SetFlags (int flags) Sets the flags associated with this event. Not currently used. .SS void SetOrientation (wxLayoutOrientation orientation) Call this to specify the orientation of the window. May be one of wxLAYOUT_HORIZONTAL, wxLAYOUT_VERTICAL. .SS void SetRequestedLength (int length) Sets the requested length of the window in the direction of the window orientation. This information is not yet used. .SS void SetSize (const wxSize& size) Call this to let the calling code know what the size of the window is. .SH EVENTS .SS EVT_QUERY_LAYOUT_INFO(func) Process a wxEVT_QUERY_LAYOUT_INFO event, to get size, orientation and alignment from a window. .SH "SEE ALSO" wxEvent wxObject wxCalculateLayoutEvent , wxSashLayoutWindow , wxLayoutAlgorithm . .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.