1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxHtmlContainerCell documentation
4 %% Author: wxWidgets Team
6 %% Created: 21/Mar/99 22:45:23
8 %% Copyright: (c) wxWidgets Team
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxHtmlContainerCell
}}\label{wxhtmlcontainercell
}
14 The wxHtmlContainerCell class is an implementation of a cell that may
15 contain more cells in it. It is heavily used in the wxHTML layout algorithm.
17 \wxheading{Derived from
}
19 \helpref{wxHtmlCell
}{wxhtmlcell
}
21 \wxheading{Include files
}
27 \helpref{wxHtml
}{librarieslist
}
31 \helpref{Cells Overview
}{cells
}
33 \latexignore{\rtfignore{\wxheading{Members
}}}
35 \membersection{wxHtmlContainerCell::wxHtmlContainerCell
}\label{wxhtmlcontainercellwxhtmlcontainercell
}
37 \func{}{wxHtmlContainerCell
}{\param{wxHtmlContainerCell
}{*parent
}}
39 Constructor.
{\it parent
} is pointer to parent container or NULL.
42 \membersection{wxHtmlContainerCell::GetAlignHor
}\label{wxhtmlcontainercellgetalignhor
}
44 \constfunc{int
}{GetAlignHor
}{\void}
46 Returns container's horizontal alignment.
48 \membersection{wxHtmlContainerCell::GetAlignVer
}\label{wxhtmlcontainercellgetalignver
}
50 \constfunc{int
}{GetAlignVer
}{\void}
52 Returns container's vertical alignment.
54 \membersection{wxHtmlContainerCell::GetBackgroundColour
}\label{wxhtmlcontainercellgetbackgroundcolour
}
56 \func{wxColour
}{GetBackgroundColour
}{\void}
58 Returns the background colour of the container or
{\tt wxNullColour
} if no background
61 \membersection{wxHtmlContainerCell::GetIndent
}\label{wxhtmlcontainercellgetindent
}
63 \constfunc{int
}{GetIndent
}{\param{int
}{ind
}}
65 Returns the indentation.
{\it ind
} is one of the
{\bf wxHTML
\_INDENT\_*
} constants.
67 {\bf Note:
} You must call
\helpref{GetIndentUnits
}{wxhtmlcontainercellgetindentunits
}
68 with same
{\it ind
} parameter in order to correctly interpret the returned integer value.
69 It is NOT always in pixels!
71 \membersection{wxHtmlContainerCell::GetIndentUnits
}\label{wxhtmlcontainercellgetindentunits
}
73 \constfunc{int
}{GetIndentUnits
}{\param{int
}{ind
}}
75 Returns the units of indentation for
{\it ind
} where
{\it ind
} is one
76 of the
{\bf wxHTML
\_INDENT\_*
} constants.
78 \membersection{wxHtmlContainerCell::InsertCell
}\label{wxhtmlcontainercellinsertcell
}
80 \func{void
}{InsertCell
}{\param{wxHtmlCell
}{*cell
}}
82 Inserts new cell into the container.
84 \membersection{wxHtmlContainerCell::SetAlign
}\label{wxhtmlcontainercellsetalign
}
86 \func{void
}{SetAlign
}{\param{const wxHtmlTag\&
}{tag
}}
88 Sets the container's alignment (both horizontal and vertical) according to
89 the values stored in
{\it tag
}. (Tags
{\tt ALIGN
} parameter is extracted.) In fact
90 it is only a front-end to
\helpref{SetAlignHor
}{wxhtmlcontainercellsetalignhor
}
91 and
\helpref{SetAlignVer
}{wxhtmlcontainercellsetalignver
}.
93 \membersection{wxHtmlContainerCell::SetAlignHor
}\label{wxhtmlcontainercellsetalignhor
}
95 \func{void
}{SetAlignHor
}{\param{int
}{al
}}
97 Sets the container's
{\it horizontal alignment
}. During
\helpref{Layout
}{wxhtmlcelllayout
}
98 each line is aligned according to
{\it al
} value.
100 \wxheading{Parameters
}
102 \docparam{al
}{new horizontal alignment. May be one of these values:
104 \begin{twocollist
}\itemsep=
0pt
105 \twocolitem{{\bf wxHTML
\_ALIGN\_LEFT}}{lines are left-aligned (default)
}
106 \twocolitem{{\bf wxHTML
\_ALIGN\_JUSTIFY}}{lines are justified
}
107 \twocolitem{{\bf wxHTML
\_ALIGN\_CENTER}}{lines are centered
}
108 \twocolitem{{\bf wxHTML
\_ALIGN\_RIGHT}}{lines are right-aligned
}
112 \membersection{wxHtmlContainerCell::SetAlignVer
}\label{wxhtmlcontainercellsetalignver
}
114 \func{void
}{SetAlignVer
}{\param{int
}{al
}}
116 Sets the container's
{\it vertical alignment
}. This is per-line alignment!
118 \wxheading{Parameters
}
120 \docparam{al
}{new vertical alignment. May be one of these values:
122 \begin{twocollist
}\itemsep=
0pt
123 \twocolitem{{\bf wxHTML
\_ALIGN\_BOTTOM}}{cells are over the line (default)
}
124 \twocolitem{{\bf wxHTML
\_ALIGN\_CENTER}}{cells are centered on line
}
125 \twocolitem{{\bf wxHTML
\_ALIGN\_TOP}}{cells are under the line
}
128 \helponly{\image{}{alignv.bmp
}}
131 \membersection{wxHtmlContainerCell::SetBackgroundColour
}\label{wxhtmlcontainercellsetbackgroundcolour
}
133 \func{void
}{SetBackgroundColour
}{\param{const wxColour\&
}{clr
}}
135 Sets the background colour for this container.
137 \membersection{wxHtmlContainerCell::SetBorder
}\label{wxhtmlcontainercellsetborder
}
139 \func{void
}{SetBorder
}{\param{const wxColour\&
}{clr1
},
\param{const wxColour\&
}{clr2
}}
141 Sets the border (frame) colours. A border is a rectangle around the container.
143 \wxheading{Parameters
}
145 \docparam{clr1
}{Colour of top and left lines
}
147 \docparam{clr2
}{Colour of bottom and right lines
}
149 \membersection{wxHtmlContainerCell::SetIndent
}\label{wxhtmlcontainercellsetindent
}
151 \func{void
}{SetIndent
}{\param{int
}{i
},
\param{int
}{what
},
\param{int
}{units = wxHTML
\_UNITS\_PIXELS}}
153 Sets the indentation (free space between borders of container and subcells).
155 \wxheading{Parameters
}
157 \docparam{i
}{Indentation value.
}
159 \docparam{what
}{Determines which of the four borders we're setting. It is OR
160 combination of following constants:
162 \begin{twocollist
}\itemsep=
0pt
163 \twocolitem{{\bf wxHTML
\_INDENT\_TOP}}{top border
}
164 \twocolitem{{\bf wxHTML
\_INDENT\_BOTTOM}}{bottom
}
165 \twocolitem{{\bf wxHTML
\_INDENT\_LEFT}}{left
}
166 \twocolitem{{\bf wxHTML
\_INDENT\_RIGHT}}{right
}
167 \twocolitem{{\bf wxHTML
\_INDENT\_HORIZONTAL}}{left and right
}
168 \twocolitem{{\bf wxHTML
\_INDENT\_VERTICAL}}{top and bottom
}
169 \twocolitem{{\bf wxHTML
\_INDENT\_ALL}}{all
4 borders
}
172 \helponly{\image{}{indent.bmp
}}
175 \docparam{units
}{Units of
{\it i
}. This parameter affects interpretation of
{\it} value.
177 \begin{twocollist
}\itemsep=
0pt
178 \twocolitem{{\bf wxHTML
\_UNITS\_PIXELS}}{{\it i
} is number of pixels
}
179 \twocolitem{{\bf wxHTML
\_UNITS\_PERCENT}}{{\it i
} is interpreted as percents of width
184 \membersection{wxHtmlContainerCell::SetMinHeight
}\label{wxhtmlcontainercellsetminheight
}
186 \func{void
}{SetMinHeight
}{\param{int
}{h
},
\param{int
}{align = wxHTML
\_ALIGN\_TOP}}
188 Sets minimal height of the container.
190 When container's
\helpref{Layout
}{wxhtmlcelllayout
} is called, m
\_Height
191 is set depending on layout of subcells to the height of area covered
192 by layed-out subcells. Calling this method guarantees you that the height
193 of container is never smaller than
{\it h
} - even if the subcells cover
196 \wxheading{Parameters
}
198 \docparam{h
}{The minimal height.
}
200 \docparam{align
}{If height of the container is lower than the minimum height, empty space must be inserted
201 somewhere in order to ensure minimal height. This parameter is one of
{\bf wxHTML
\_ALIGN\_TOP,
202 wxHTML
\_ALIGN\_BOTTOM, wxHTML
\_ALIGN\_CENTER}. It refers to the
{\it contents
}, not to the
205 \membersection{wxHtmlContainerCell::SetWidthFloat
}\label{wxhtmlcontainercellsetwidthfloat
}
207 \func{void
}{SetWidthFloat
}{\param{int
}{w
},
\param{int
}{units
}}
209 \func{void
}{SetWidthFloat
}{\param{const wxHtmlTag\&
}{tag
},
\param{double
}{pixel
\_scale =
1.0}}
211 Sets floating width adjustment.
213 The normal behaviour of container is that its width is the same as the width of
214 parent container (and thus you can have only one sub-container per line).
215 You can change this by setting FWA.
217 {\it pixel
\_scale} is number of real pixels that equals to
1 HTML pixel.
219 \wxheading{Parameters
}
221 \docparam{w
}{Width of the container. If the value is negative it means
222 complement to full width of parent container (e.g.
223 {\tt SetWidthFloat(-
50, wxHTML
\_UNITS\_PIXELS)
} sets the width
224 of container to parent's width minus
50 pixels. This is useful when
225 creating tables - you can call SetWidthFloat(
50) and SetWidthFloat(-
50))
}
227 \docparam{units
}{Units of
{\it w
} This parameter affects the interpretation of
{\it} value.
229 \begin{twocollist
}\itemsep=
0pt
230 \twocolitem{{\bf wxHTML
\_UNITS\_PIXELS}}{{\it w
} is number of pixels
}
231 \twocolitem{{\bf wxHTML
\_UNITS\_PERCENT}}{{\it w
} is interpreted as percents of width
236 \docparam{tag
}{In the second version of method,
{\it w
} and
{\it units
}
237 info is extracted from tag's
{\tt WIDTH
} parameter.
}
239 \pythonnote{The second form of this method is named
240 SetWidthFloatFromTag in wxPython.
}