Spacing corrections
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25668 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3,11 +3,10 @@
|
||||
|
||||
A \helpref{wxSizer}{wxsizer} that can lay out items in a virtual grid
|
||||
like a \helpref{wxFlexGridSizer}{wxflexgridsizer} but in this case
|
||||
explicit positioning of the items is allowed using
|
||||
explicit positioning of the items is allowed using
|
||||
\helpref{wxGBPosition}{wxgbposition}, and items can optionally span
|
||||
more than one row and/or column using \helpref{wxGBSpan}{wxgbspan}.
|
||||
|
||||
|
||||
\wxheading{Derived from}
|
||||
|
||||
\helpref{wxFlexGridSizer}{wxflexgridsizer}\\
|
||||
@@ -15,15 +14,12 @@ more than one row and/or column using \helpref{wxGBSpan}{wxgbspan}.
|
||||
\helpref{wxSizer}{wxsizer}\\
|
||||
\helpref{wxObject}{wxobject}
|
||||
|
||||
|
||||
\wxheading{Include files}
|
||||
|
||||
<wx/gbsizer.h>
|
||||
|
||||
|
||||
\latexignore{\rtfignore{\wxheading{Members}}}
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::wxGridBagSizer}\label{wxgridbagsizerwxgridbagsizer}
|
||||
|
||||
\func{}{wxGridBagSizer}{\param{int }{vgap = 0}, \param{int }{hgap = 0}}
|
||||
@@ -31,7 +27,6 @@ more than one row and/or column using \helpref{wxGBSpan}{wxgbspan}.
|
||||
Constructor, with optional parameters to specify the gap between the
|
||||
rows and columns.
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::Add}\label{wxgridbagsizeradd}
|
||||
|
||||
\func{bool}{Add}{\param{wxWindow* }{window}, \param{const wxGBPosition\& }{pos}, \param{const wxGBSpan\& }{span = wxDefaultSpan}, \param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
|
||||
@@ -45,9 +40,6 @@ rows and columns.
|
||||
The Add methods return true if the item was successfully placed at the
|
||||
given position, false if something was already there.
|
||||
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::CalcMin}\label{wxgridbagsizercalcmin}
|
||||
|
||||
\func{wxSize}{CalcMin}{\void}
|
||||
@@ -55,7 +47,6 @@ given position, false if something was already there.
|
||||
Called when the managed size of the sizer is needed or when layout
|
||||
needs done.
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::CheckForIntersection}\label{wxgridbagsizercheckforintersection}
|
||||
|
||||
\func{bool}{CheckForIntersection}{\param{wxGBSizerItem* }{item}, \param{wxGBSizerItem* }{excludeItem = NULL}}
|
||||
@@ -63,12 +54,10 @@ needs done.
|
||||
\func{bool}{CheckForIntersection}{\param{const wxGBPosition\& }{pos}, \param{const wxGBSpan\& }{span}, \param{wxGBSizerItem* }{excludeItem = NULL}}
|
||||
|
||||
Look at all items and see if any intersect (or would overlap) the given
|
||||
item. Returns true if so, false if there would be no overlap. If an
|
||||
item. Returns true if so, false if there would be no overlap. If an
|
||||
excludeItem is given then it will not be checked for intersection, for
|
||||
example it may be the item we are checking the position of.
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::FindItem}\label{wxgridbagsizerfinditem}
|
||||
|
||||
\func{wxGBSizerItem*}{FindItem}{\param{wxWindow* }{window}}
|
||||
@@ -78,8 +67,6 @@ example it may be the item we are checking the position of.
|
||||
Find the sizer item for the given window or subsizer, returns NULL if
|
||||
not found. (non-recursive)
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::FindItemAtPoint}\label{wxgridbagsizerfinditematpoint}
|
||||
|
||||
\func{wxGBSizerItem*}{FindItemAtPoint}{\param{const wxPoint\& }{pt}}
|
||||
@@ -89,8 +76,6 @@ there is no item at that point. The (x,y) coordinates in pt correspond
|
||||
to the client coordinates of the window using the sizer for
|
||||
layout. (non-recursive)
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::FindItemAtPosition}\label{wxgridbagsizerfinditematposition}
|
||||
|
||||
\func{wxGBSizerItem*}{FindItemAtPosition}{\param{const wxGBPosition\& }{pos}}
|
||||
@@ -98,8 +83,6 @@ layout. (non-recursive)
|
||||
Return the sizer item for the given grid cell, or NULL if there is no
|
||||
item at that position. (non-recursive)
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::FindItemWithData}\label{wxgridbagsizerfinditemwithdata}
|
||||
|
||||
\func{wxGBSizerItem*}{FindItemWithData}{\param{const wxObject* }{userData}}
|
||||
@@ -107,25 +90,19 @@ item at that position. (non-recursive)
|
||||
Return the sizer item that has a matching user data (it only compares
|
||||
pointer values) or NULL if not found. (non-recursive)
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::GetCellSize}\label{wxgridbagsizergetcellsize}
|
||||
|
||||
\constfunc{wxSize}{GetCellSize}{\param{int }{row}, \param{int }{col}}
|
||||
|
||||
Get the size of the specified cell, including hgap and vgap. Only
|
||||
Get the size of the specified cell, including hgap and vgap. Only
|
||||
valid after a Layout.
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::GetEmptyCellSize}\label{wxgridbagsizergetemptycellsize}
|
||||
|
||||
\constfunc{wxSize}{GetEmptyCellSize}{\void}
|
||||
|
||||
Get the size used for cells in the grid with no item.
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::GetItemPosition}\label{wxgridbagsizergetitemposition}
|
||||
|
||||
\func{wxGBPosition}{GetItemPosition}{\param{wxWindow* }{window}}
|
||||
@@ -136,8 +113,6 @@ Get the size used for cells in the grid with no item.
|
||||
|
||||
Get the grid position of the specified item.
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::GetItemSpan}\label{wxgridbagsizergetitemspan}
|
||||
|
||||
\func{wxGBSpan}{GetItemSpan}{\param{wxWindow* }{window}}
|
||||
@@ -148,8 +123,6 @@ Get the grid position of the specified item.
|
||||
|
||||
Get the row/col spanning of the specified item
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::RecalcSizes}\label{wxgridbagsizerrecalcsizes}
|
||||
|
||||
\func{void}{RecalcSizes}{\void}
|
||||
@@ -157,15 +130,12 @@ Get the row/col spanning of the specified item
|
||||
Called when the managed size of the sizer is needed or when layout
|
||||
needs done.
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::SetEmptyCellSize}\label{wxgridbagsizersetemptycellsize}
|
||||
|
||||
\func{void}{SetEmptyCellSize}{\param{const wxSize\& }{sz}}
|
||||
|
||||
Set the size used for cells in the grid with no item.
|
||||
|
||||
|
||||
|
||||
\membersection{wxGridBagSizer::SetItemPosition}\label{wxgridbagsizersetitemposition}
|
||||
|
||||
\func{bool}{SetItemPosition}{\param{wxWindow* }{window}, \param{const wxGBPosition\& }{pos}}
|
||||
@@ -174,11 +144,9 @@ Set the size used for cells in the grid with no item.
|
||||
|
||||
\func{bool}{SetItemPosition}{\param{size\_t }{index}, \param{const wxGBPosition\& }{pos}}
|
||||
|
||||
Set the grid position of the specified item. Returns true on success.
|
||||
Set the grid position of the specified item. Returns true on success.
|
||||
If the move is not allowed (because an item is already there) then
|
||||
false is returned.
|
||||
|
||||
|
||||
false is returned.
|
||||
|
||||
\membersection{wxGridBagSizer::SetItemSpan}\label{wxgridbagsizersetitemspan}
|
||||
|
||||
@@ -189,8 +157,6 @@ false is returned.
|
||||
\func{bool}{SetItemSpan}{\param{size\_t }{index}, \param{const wxGBSpan\& }{span}}
|
||||
|
||||
Set the row/col spanning of the specified item. Returns true on
|
||||
success. If the move is not allowed (because an item is already there)
|
||||
success. If the move is not allowed (because an item is already there)
|
||||
then false is returned.
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user