2 \section{\class{wxGridBagSizer
}}\label{wxgridbagsizer
}
4 A
\helpref{wxSizer
}{wxsizer
} that can lay out items in a virtual grid
5 like a
\helpref{wxFlexGridSizer
}{wxflexgridsizer
} but in this case
6 explicit positioning of the items is allowed using
7 \helpref{wxGBPosition
}{wxgbposition
}, and items can optionally span
8 more than one row and/or column using
\helpref{wxGBSpan
}{wxgbspan
}.
11 \wxheading{Derived from
}
13 \helpref{wxFlexGridSizer
}{wxflexgridsizer
}
15 \wxheading{Include files
}
20 \latexignore{\rtfignore{\wxheading{Members
}}}
23 \membersection{wxGridBagSizer::wxGridBagSizer
}\label{wxgridbagsizerwxgridbagsizer
}
25 \func{}{wxGridBagSizer
}{\param{int
}{vgap =
0},
\param{int
}{hgap =
0}}
27 Constructor, with optional parameters to specify the gap between the
31 \membersection{wxGridBagSizer::Add
}\label{wxgridbagsizeradd
}
33 \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
}}
35 \func{bool
}{Add
}{\param{wxSizer*
}{sizer
},
\param{const wxGBPosition\&
}{pos
},
\param{const wxGBSpan\&
}{span = wxDefaultSpan
},
\param{int
}{flag =
0},
\param{int
}{border =
0},
\param{wxObject*
}{userData = NULL
}}
37 \func{bool
}{Add
}{\param{int
}{width
},
\param{int
}{height
},
\param{const wxGBPosition\&
}{pos
},
\param{const wxGBSpan\&
}{span = wxDefaultSpan
},
\param{int
}{flag =
0},
\param{int
}{border =
0},
\param{wxObject*
}{userData = NULL
}}
39 \func{bool
}{Add
}{\param{wxGBSizerItem*
}{item
}}
41 The Add methods return true if the item was successfully placed at the
42 given position, false if something was already there.
47 \membersection{wxGridBagSizer::CalcMin
}\label{wxgridbagsizercalcmin
}
49 \func{wxSize
}{CalcMin
}{\void}
51 Called when the managed size of the sizer is needed or when layout
55 \membersection{wxGridBagSizer::CheckForIntersection
}\label{wxgridbagsizercheckforintersection
}
57 \func{bool
}{CheckForIntersection
}{\param{wxGBSizerItem*
}{item
},
\param{wxGBSizerItem*
}{excludeItem = NULL
}}
59 \func{bool
}{CheckForIntersection
}{\param{const wxGBPosition\&
}{pos
},
\param{const wxGBSpan\&
}{span
},
\param{wxGBSizerItem*
}{excludeItem = NULL
}}
61 Look at all items and see if any intersect (or would overlap) the given
62 item. Returns true if so, false if there would be no overlap. If an
63 excludeItem is given then it will not be checked for intersection, for
64 example it may be the item we are checking the position of.
68 \membersection{wxGridBagSizer::FindItem
}\label{wxgridbagsizerfinditem
}
70 \func{wxGBSizerItem*
}{FindItem
}{\param{wxWindow*
}{window
}}
72 \func{wxGBSizerItem*
}{FindItem
}{\param{wxSizer*
}{sizer
}}
74 Find the sizer item for the given window or subsizer, returns NULL if
75 not found. (non-recursive)
79 \membersection{wxGridBagSizer::FindItemAtPosition
}\label{wxgridbagsizerfinditematposition
}
81 \func{wxGBSizerItem*
}{FindItemAtPosition
}{\param{const wxGBPosition\&
}{pos
}}
83 Return the sizer item for the given grid cell, or NULL if there is no
84 item at that position. (non-recursive)
88 \membersection{wxGridBagSizer::FindItemWithData
}\label{wxgridbagsizerfinditemwithdata
}
90 \func{wxGBSizerItem*
}{FindItemWithData
}{\param{const wxObject*
}{userData
}}
92 Return the sizer item that has a matching user data (it only compares
93 pointer values) or NULL if not found. (non-recursive)
97 \membersection{wxGridBagSizer::GetEmptyCellSize
}\label{wxgridbagsizergetemptycellsize
}
99 \constfunc{wxSize
}{GetEmptyCellSize
}{\void}
101 Get the size used for cells in the grid with no item.
105 \membersection{wxGridBagSizer::GetItemPosition
}\label{wxgridbagsizergetitemposition
}
107 \func{wxGBPosition
}{GetItemPosition
}{\param{wxWindow*
}{window
}}
109 \func{wxGBPosition
}{GetItemPosition
}{\param{wxSizer*
}{sizer
}}
111 \func{wxGBPosition
}{GetItemPosition
}{\param{size
\_t }{index
}}
113 Get the grid position of the specified item.
117 \membersection{wxGridBagSizer::GetItemSpan
}\label{wxgridbagsizergetitemspan
}
119 \func{wxGBSpan
}{GetItemSpan
}{\param{wxWindow*
}{window
}}
121 \func{wxGBSpan
}{GetItemSpan
}{\param{wxSizer*
}{sizer
}}
123 \func{wxGBSpan
}{GetItemSpan
}{\param{size
\_t }{index
}}
125 Get the row/col spanning of the specified item
129 \membersection{wxGridBagSizer::RecalcSizes
}\label{wxgridbagsizerrecalcsizes
}
131 \func{void
}{RecalcSizes
}{\void}
133 Called when the managed size of the sizer is needed or when layout
137 \membersection{wxGridBagSizer::SetEmptyCellSize
}\label{wxgridbagsizersetemptycellsize
}
139 \func{void
}{SetEmptyCellSize
}{\param{const wxSize\&
}{sz
}}
141 Set the size used for cells in the grid with no item.
145 \membersection{wxGridBagSizer::SetItemPosition
}\label{wxgridbagsizersetitemposition
}
147 \func{bool
}{SetItemPosition
}{\param{wxWindow*
}{window
},
\param{const wxGBPosition\&
}{pos
}}
149 \func{bool
}{SetItemPosition
}{\param{wxSizer*
}{sizer
},
\param{const wxGBPosition\&
}{pos
}}
151 \func{bool
}{SetItemPosition
}{\param{size
\_t }{index
},
\param{const wxGBPosition\&
}{pos
}}
153 Set the grid position of the specified item. Returns true on success.
154 If the move is not allowed (because an item is already there) then
159 \membersection{wxGridBagSizer::SetItemSpan
}\label{wxgridbagsizersetitemspan
}
161 \func{bool
}{SetItemSpan
}{\param{wxWindow*
}{window
},
\param{const wxGBSpan\&
}{span
}}
163 \func{bool
}{SetItemSpan
}{\param{wxSizer*
}{sizer
},
\param{const wxGBSpan\&
}{span
}}
165 \func{bool
}{SetItemSpan
}{\param{size
\_t }{index
},
\param{const wxGBSpan\&
}{span
}}
167 Set the row/col spanning of the specified item. Returns true on
168 success. If the move is not allowed (because an item is already there)
169 then false is returned.