1 \section{\class{wxSashLayoutWindow
}}\label{wxsashlayoutwindow
}
3 wxSashLayoutWindow responds to OnCalculateLayout events generated
4 by
\helpref{wxLayoutAlgorithm
}{wxlayoutalgorithm
}. It allows the
5 application to use simple accessors to specify how the window should be
6 laid out, rather than having to respond to events. The fact that
7 the class derives from wxSashWindow allows sashes to be used if required,
8 to allow the windows to be user-resizable.
10 The documentation for
\helpref{wxLayoutAlgorithm
}{wxlayoutalgorithm
} explains
11 the purpose of this class in more detail.
13 \wxheading{Derived from
}
15 \helpref{wxSashWindow
}{wxsashwindow
}\\
16 \helpref{wxWindow
}{wxwindow
}\\
17 \helpref{wxEvtHandler
}{wxevthandler
}\\
18 \helpref{wxObject
}{wxobject
}
20 \wxheading{Include files
}
24 \wxheading{Window styles
}
26 See
\helpref{wxSashWindow
}{wxsashwindow
}.
28 \wxheading{Event handling
}
30 This class handles the EVT
\_QUERY\_LAYOUT\_INFO and EVT
\_CALCULATE\_LAYOUT events
31 for you. However, if you use sashes, see
\helpref{wxSashWindow
}{wxsashwindow
} for
32 relevant event information.
34 See also
\helpref{wxLayoutAlgorithm
}{wxlayoutalgorithm
} for information
35 about the layout events.
39 \helpref{wxLayoutAlgorithm
}{wxlayoutalgorithm
},
\helpref{wxSashWindow
}{wxsashwindow
},
\helpref{Event handling overview
}{eventhandlingoverview
}
41 \latexignore{\rtfignore{\wxheading{Members
}}}
43 \membersection{wxSashLayoutWindow::wxSashLayoutWindow
}
45 \func{}{wxSashLayoutWindow
}{\void}
49 \func{}{wxSashLayoutWindow
}{\param{wxSashLayoutWindow*
}{ parent
},
\param{wxSashLayoutWindowID
}{id
},
50 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
51 \param{const wxSize\&
}{size = wxDefaultSize
},
52 \param{long
}{style = wxCLIP
\_CHILDREN \pipe wxSW
\_3D},
53 \param{const wxString\&
}{name = "layoutWindow"
}}
55 Constructs a sash layout window, which can be a child of a frame, dialog or any other non-control window.
57 \wxheading{Parameters
}
59 \docparam{parent
}{Pointer to a parent window.
}
61 \docparam{id
}{Window identifier. If -
1, will automatically create an identifier.
}
63 \docparam{pos
}{Window position. wxDefaultPosition is (-
1, -
1) which indicates that wxSashLayoutWindows
64 should generate a default position for the window. If using the wxSashLayoutWindow class directly, supply
67 \docparam{size
}{Window size. wxDefaultSize is (-
1, -
1) which indicates that wxSashLayoutWindows
68 should generate a default size for the window.
}
70 \docparam{style
}{Window style. For window styles, please see
\helpref{wxSashLayoutWindow
}{wxsashlayoutwindow
}.
}
72 \docparam{name
}{Window name.
}
74 \membersection{wxSashLayoutWindow::
\destruct{wxSashLayoutWindow
}}
76 \func{}{\destruct{wxSashLayoutWindow
}}{\void}
80 \membersection{wxSashLayoutWindow::GetAlignment
}\label{wxsashlayoutwindowgetalignment
}
82 \constfunc{wxLayoutAlignment
}{GetAlignment
}{\void}
84 Returns the alignment of the window: one of wxLAYOUT
\_TOP, wxLAYOUT
\_LEFT, wxLAYOUT
\_RIGHT, wxLAYOUT
\_BOTTOM.
86 \membersection{wxSashLayoutWindow::GetOrientation
}\label{wxsashlayoutwindowgetorientation
}
88 \constfunc{wxLayoutOrientation
}{GetOrientation
}{\void}
90 Returns the orientation of the window: one of wxLAYOUT
\_HORIZONTAL, wxLAYOUT
\_VERTICAL.
92 \membersection{wxSashLayoutWindow::OnCalculateLayout
}\label{wxsashlayoutwindowoncalculatelayout
}
94 \func{void
}{OnCalculateLayout
}{\param{wxCalculateLayoutEvent\&
}{ event
}}
96 The default handler for the event that is generated by wxLayoutAlgorithm. The implementation
97 of this function calls wxCalculateLayoutEvent::SetRect to shrink the provided size according to
98 how much space this window takes up. For further details,
99 see
\helpref{wxLayoutAlgorithm
}{wxlayoutalgorithm
} and
\helpref{wxCalculateLayoutEvent
}{wxcalculatelayoutevent
}.
101 \membersection{wxSashLayoutWindow::OnQueryLayoutInfo
}\label{wxsashlayoutwindowonquerylayoutinfo
}
103 \func{void
}{OnQueryLayoutInfo
}{\param{wxQueryLayoutInfoEvent\&
}{ event
}}
105 The default handler for the event that is generated by OnCalculateLayout to get
106 size, alignment and orientation information for the window. The implementation
107 of this function uses member variables as set by accessors called by the application.
108 For further details, see
\helpref{wxLayoutAlgorithm
}{wxlayoutalgorithm
} and
\helpref{wxQueryLayoutInfoEvent
}{wxquerylayoutinfoevent
}.
110 \membersection{wxSashLayoutWindow::SetAlignment
}\label{wxsashlayoutwindowsetalignment
}
112 \func{void
}{SetAlignment
}{\param{wxLayoutAlignment
}{ alignment
}}
114 Sets the alignment of the window (which edge of the available parent client area the window
115 is attached to).
{\it alignment
} is one of wxLAYOUT
\_TOP, wxLAYOUT
\_LEFT, wxLAYOUT
\_RIGHT, wxLAYOUT
\_BOTTOM.
117 \membersection{wxSashLayoutWindow::SetDefaultSize
}\label{wxsashlayoutwindowsetdefaultsize
}
119 \func{void
}{SetDefaultSize
}{\param{const wxSize\&
}{size
}}
121 Sets the default dimensions of the window. The dimension other than the orientation will be fixed to this
122 value, and the orientation dimension will be ignored and the window stretched to fit the available space.
124 \membersection{wxSashLayoutWindow::SetOrientation
}\label{wxsashlayoutwindowsetorientation
}
126 \func{void
}{SetOrientation
}{\param{wxLayoutOrientation
}{ orientation
}}
128 Sets the orientation of the window (the direction the window will stretch in, to fill the available
129 parent client area).
{\it orientation
} is one of wxLAYOUT
\_HORIZONTAL, wxLAYOUT
\_VERTICAL.