]>
git.saurik.com Git - wxWidgets.git/blob - src/html/m_tables.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/html/m_tables.cpp
3 // Purpose: wxHtml module for tables
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #include "wx/wxprec.h"
16 #if wxUSE_HTML && wxUSE_STREAMS
19 #include "wx/wxcrtvararg.h"
22 #include "wx/html/forcelnk.h"
23 #include "wx/html/m_templ.h"
25 #include "wx/html/htmlcell.h"
27 FORCE_LINK_ME(m_tables
)
30 #define TABLE_BORDER_CLR_1 wxColour(0xC5, 0xC2, 0xC5)
31 #define TABLE_BORDER_CLR_2 wxColour(0x62, 0x61, 0x62)
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
42 // width of the column either in pixels or percents
43 // ('width' is the number, 'units' determines its meaning)
44 int minWidth
, maxWidth
;
45 // minimal/maximal column width. This is needed by HTML 4.0
46 // layouting algorithm and can be determined by trying to
47 // layout table cells with width=1 and width=infinity
48 int leftpos
, pixwidth
, maxrealwidth
;
49 // temporary (depends on actual width of table)
61 wxHtmlContainerCell
*cont
;
63 int minheight
, valign
;
69 class wxHtmlTableCell
: public wxHtmlContainerCell
72 /* These are real attributes: */
74 // should we draw borders or not?
76 // number of columns; rows
77 int m_NumCols
, m_NumRows
;
78 // array of column information
79 colStruct
*m_ColsInfo
;
80 // 2D array of all cells in the table : m_CellInfo[row][column]
81 cellStruct
**m_CellInfo
;
82 // spaces between cells
84 // cells internal indentation
88 /* ...and these are valid only when parsing the table: */
90 // number of actual column (ranging from 0..m_NumCols)
91 int m_ActualCol
, m_ActualRow
;
93 // default values (for table and row):
94 wxColour m_tBkg
, m_rBkg
;
95 wxString m_tValign
, m_rValign
;
101 wxHtmlTableCell(wxHtmlContainerCell
*parent
, const wxHtmlTag
& tag
, double pixel_scale
= 1.0);
102 virtual ~wxHtmlTableCell();
104 virtual void RemoveExtraSpacing(bool top
, bool bottom
);
106 virtual void Layout(int w
);
108 void AddRow(const wxHtmlTag
& tag
);
109 void AddCell(wxHtmlContainerCell
*cell
, const wxHtmlTag
& tag
);
112 // Reallocates memory to given number of cols/rows
113 // and changes m_NumCols/m_NumRows value to reflect this change
114 // NOTE! You CAN'T change m_NumCols/m_NumRows before calling this!!
115 void ReallocCols(int cols
);
116 void ReallocRows(int rows
);
118 // Computes minimal and maximal widths of columns. Needs to be called
119 // only once, before first Layout().
120 void ComputeMinMaxWidths();
122 DECLARE_NO_COPY_CLASS(wxHtmlTableCell
)
127 wxHtmlTableCell::wxHtmlTableCell(wxHtmlContainerCell
*parent
, const wxHtmlTag
& tag
, double pixel_scale
)
128 : wxHtmlContainerCell(parent
)
130 m_PixelScale
= pixel_scale
;
132 (tag
.HasParam(wxT("BORDER")) && tag
.GetParam(wxT("BORDER")) != wxT("0"));
134 m_NumCols
= m_NumRows
= 0;
136 m_ActualCol
= m_ActualRow
= -1;
139 if (tag
.HasParam(wxT("BGCOLOR")))
141 tag
.GetParamAsColour(wxT("BGCOLOR"), &m_tBkg
);
143 SetBackgroundColour(m_tBkg
);
145 if (tag
.HasParam(wxT("VALIGN")))
146 m_tValign
= tag
.GetParam(wxT("VALIGN"));
148 m_tValign
= wxEmptyString
;
149 if (!tag
.GetParamAsInt(wxT("CELLSPACING"), &m_Spacing
))
151 if (!tag
.GetParamAsInt(wxT("CELLPADDING"), &m_Padding
))
153 m_Spacing
= (int)(m_PixelScale
* (double)m_Spacing
);
154 m_Padding
= (int)(m_PixelScale
* (double)m_Padding
);
157 SetBorder(TABLE_BORDER_CLR_1
, TABLE_BORDER_CLR_2
);
162 wxHtmlTableCell::~wxHtmlTableCell()
164 if (m_ColsInfo
) free(m_ColsInfo
);
167 for (int i
= 0; i
< m_NumRows
; i
++)
174 void wxHtmlTableCell::RemoveExtraSpacing(bool WXUNUSED(top
),
175 bool WXUNUSED(bottom
))
177 // Don't remove any spacing in the table -- it's always desirable,
178 // because it's part of table's definition.
179 // (If wxHtmlContainerCell::RemoveExtraSpacing() was applied to tables,
180 // then upper left cell of a table would be positioned above other cells
181 // if the table was the first element on the page.)
184 void wxHtmlTableCell::ReallocCols(int cols
)
188 for (i
= 0; i
< m_NumRows
; i
++)
190 m_CellInfo
[i
] = (cellStruct
*) realloc(m_CellInfo
[i
], sizeof(cellStruct
) * cols
);
191 for (j
= m_NumCols
; j
< cols
; j
++)
192 m_CellInfo
[i
][j
].flag
= cellFree
;
195 m_ColsInfo
= (colStruct
*) realloc(m_ColsInfo
, sizeof(colStruct
) * cols
);
196 for (j
= m_NumCols
; j
< cols
; j
++)
198 m_ColsInfo
[j
].width
= 0;
199 m_ColsInfo
[j
].units
= wxHTML_UNITS_PERCENT
;
200 m_ColsInfo
[j
].minWidth
= m_ColsInfo
[j
].maxWidth
= -1;
208 void wxHtmlTableCell::ReallocRows(int rows
)
210 m_CellInfo
= (cellStruct
**) realloc(m_CellInfo
, sizeof(cellStruct
*) * rows
);
211 for (int row
= m_NumRows
; row
< rows
; row
++)
214 m_CellInfo
[row
] = NULL
;
217 m_CellInfo
[row
] = (cellStruct
*) malloc(sizeof(cellStruct
) * m_NumCols
);
218 for (int col
= 0; col
< m_NumCols
; col
++)
219 m_CellInfo
[row
][col
].flag
= cellFree
;
226 void wxHtmlTableCell::AddRow(const wxHtmlTag
& tag
)
229 // VS: real allocation of row entry is done in AddCell in order
230 // to correctly handle empty rows (i.e. "<tr></tr>")
231 // m_ActualCol == -1 indicates that AddCell has to allocate new row.
235 if (tag
.HasParam(wxT("BGCOLOR")))
236 tag
.GetParamAsColour(wxT("BGCOLOR"), &m_rBkg
);
237 if (tag
.HasParam(wxT("VALIGN")))
238 m_rValign
= tag
.GetParam(wxT("VALIGN"));
240 m_rValign
= m_tValign
;
245 void wxHtmlTableCell::AddCell(wxHtmlContainerCell
*cell
, const wxHtmlTag
& tag
)
247 // Is this cell in new row?
248 // VS: we can't do it in AddRow, see my comment there
249 if (m_ActualCol
== -1)
251 if (m_ActualRow
+ 1 > m_NumRows
- 1)
252 ReallocRows(m_ActualRow
+ 2);
260 } while ((m_ActualCol
< m_NumCols
) &&
261 (m_CellInfo
[m_ActualRow
][m_ActualCol
].flag
!= cellFree
));
263 if (m_ActualCol
> m_NumCols
- 1)
264 ReallocCols(m_ActualCol
+ 1);
266 int r
= m_ActualRow
, c
= m_ActualCol
;
268 m_CellInfo
[r
][c
].cont
= cell
;
269 m_CellInfo
[r
][c
].colspan
= 1;
270 m_CellInfo
[r
][c
].rowspan
= 1;
271 m_CellInfo
[r
][c
].flag
= cellUsed
;
272 m_CellInfo
[r
][c
].minheight
= 0;
273 m_CellInfo
[r
][c
].valign
= wxHTML_ALIGN_TOP
;
275 /* scan for parameters: */
279 if (tag
.HasParam(wxT("WIDTH")))
281 wxString wd
= tag
.GetParam(wxT("WIDTH"));
283 if (wd
[wd
.length()-1] == wxT('%'))
285 if ( wxSscanf(wd
.c_str(), wxT("%i%%"), &m_ColsInfo
[c
].width
) == 1 )
287 m_ColsInfo
[c
].units
= wxHTML_UNITS_PERCENT
;
293 if ( wd
.ToLong(&width
) )
295 m_ColsInfo
[c
].width
= (int)(m_PixelScale
* (double)width
);
296 m_ColsInfo
[c
].units
= wxHTML_UNITS_PIXELS
;
305 tag
.GetParamAsInt(wxT("COLSPAN"), &m_CellInfo
[r
][c
].colspan
);
306 tag
.GetParamAsInt(wxT("ROWSPAN"), &m_CellInfo
[r
][c
].rowspan
);
308 // VS: the standard says this about col/rowspan:
309 // "This attribute specifies the number of rows spanned by the
310 // current cell. The default value of this attribute is one ("1").
311 // The value zero ("0") means that the cell spans all rows from the
312 // current row to the last row of the table." All mainstream
313 // browsers act as if 0==1, though, and so does wxHTML.
314 if (m_CellInfo
[r
][c
].colspan
< 1)
315 m_CellInfo
[r
][c
].colspan
= 1;
316 if (m_CellInfo
[r
][c
].rowspan
< 1)
317 m_CellInfo
[r
][c
].rowspan
= 1;
319 if ((m_CellInfo
[r
][c
].colspan
> 1) || (m_CellInfo
[r
][c
].rowspan
> 1))
323 if (r
+ m_CellInfo
[r
][c
].rowspan
> m_NumRows
)
324 ReallocRows(r
+ m_CellInfo
[r
][c
].rowspan
);
325 if (c
+ m_CellInfo
[r
][c
].colspan
> m_NumCols
)
326 ReallocCols(c
+ m_CellInfo
[r
][c
].colspan
);
327 for (i
= r
; i
< r
+ m_CellInfo
[r
][c
].rowspan
; i
++)
328 for (j
= c
; j
< c
+ m_CellInfo
[r
][c
].colspan
; j
++)
329 m_CellInfo
[i
][j
].flag
= cellSpan
;
330 m_CellInfo
[r
][c
].flag
= cellUsed
;
336 wxColour bk
= m_rBkg
;
337 if (tag
.HasParam(wxT("BGCOLOR")))
338 tag
.GetParamAsColour(wxT("BGCOLOR"), &bk
);
340 cell
->SetBackgroundColour(bk
);
343 cell
->SetBorder(TABLE_BORDER_CLR_2
, TABLE_BORDER_CLR_1
);
345 // vertical alignment:
348 if (tag
.HasParam(wxT("VALIGN")))
349 valign
= tag
.GetParam(wxT("VALIGN"));
353 if (valign
== wxT("TOP"))
354 m_CellInfo
[r
][c
].valign
= wxHTML_ALIGN_TOP
;
355 else if (valign
== wxT("BOTTOM"))
356 m_CellInfo
[r
][c
].valign
= wxHTML_ALIGN_BOTTOM
;
357 else m_CellInfo
[r
][c
].valign
= wxHTML_ALIGN_CENTER
;
361 if (tag
.HasParam(wxT("NOWRAP")))
362 m_CellInfo
[r
][c
].nowrap
= true;
364 m_CellInfo
[r
][c
].nowrap
= false;
366 cell
->SetIndent(m_Padding
, wxHTML_INDENT_ALL
, wxHTML_UNITS_PIXELS
);
369 void wxHtmlTableCell::ComputeMinMaxWidths()
371 if (m_NumCols
== 0 || m_ColsInfo
[0].minWidth
!= wxDefaultCoord
) return;
375 for (int c
= 0; c
< m_NumCols
; c
++)
377 for (int r
= 0; r
< m_NumRows
; r
++)
379 cellStruct
& cell
= m_CellInfo
[r
][c
];
380 if (cell
.flag
== cellUsed
)
382 cell
.cont
->Layout(2*m_Padding
+ 1);
383 int maxWidth
= cell
.cont
->GetMaxTotalWidth();
384 int width
= cell
.nowrap
?maxWidth
:cell
.cont
->GetWidth();
385 width
-= (cell
.colspan
-1) * m_Spacing
;
386 maxWidth
-= (cell
.colspan
-1) * m_Spacing
;
387 // HTML 4.0 says it is acceptable to distribute min/max
388 width
/= cell
.colspan
;
389 maxWidth
/= cell
.colspan
;
390 for (int j
= 0; j
< cell
.colspan
; j
++) {
391 if (width
> m_ColsInfo
[c
+j
].minWidth
)
392 m_ColsInfo
[c
+j
].minWidth
= width
;
393 if (maxWidth
> m_ColsInfo
[c
+j
].maxWidth
)
394 m_ColsInfo
[c
+j
].maxWidth
= maxWidth
;
398 // Calculate maximum table width, required for nested tables
399 if (m_ColsInfo
[c
].units
== wxHTML_UNITS_PIXELS
)
400 m_MaxTotalWidth
+= wxMax(m_ColsInfo
[c
].width
, m_ColsInfo
[c
].minWidth
);
401 else if ((m_ColsInfo
[c
].units
== wxHTML_UNITS_PERCENT
) && (m_ColsInfo
[c
].width
!= 0))
402 percentage
+= m_ColsInfo
[c
].width
;
404 m_MaxTotalWidth
+= m_ColsInfo
[c
].maxWidth
;
407 if (percentage
>= 100)
409 // Table would have infinite length
410 // Make it ridiculous large
411 m_MaxTotalWidth
= 0xFFFFFF;
414 m_MaxTotalWidth
= m_MaxTotalWidth
* 100 / (100 - percentage
);
416 m_MaxTotalWidth
+= (m_NumCols
+ 1) * m_Spacing
;
419 void wxHtmlTableCell::Layout(int w
)
421 ComputeMinMaxWidths();
423 wxHtmlCell::Layout(w
);
431 if (m_WidthFloatUnits
== wxHTML_UNITS_PERCENT
)
433 if (m_WidthFloat
< 0)
435 if (m_WidthFloat
< -100)
437 m_Width
= (100 + m_WidthFloat
) * w
/ 100;
441 if (m_WidthFloat
> 100)
443 m_Width
= m_WidthFloat
* w
/ 100;
448 if (m_WidthFloat
< 0) m_Width
= w
+ m_WidthFloat
;
449 else m_Width
= m_WidthFloat
;
459 /* 1. setup columns widths:
461 The algorithm tries to keep the table size less than w if possible.
464 int wpix
= m_Width
- (m_NumCols
+ 1) * m_Spacing
;
467 // 1a. setup fixed-width columns:
468 for (i
= 0; i
< m_NumCols
; i
++)
469 if (m_ColsInfo
[i
].units
== wxHTML_UNITS_PIXELS
)
471 m_ColsInfo
[i
].pixwidth
= wxMax(m_ColsInfo
[i
].width
,
472 m_ColsInfo
[i
].minWidth
);
473 wpix
-= m_ColsInfo
[i
].pixwidth
;
476 // 1b. Calculate maximum possible width if line wrapping would be disabled
477 // Recalculate total width if m_WidthFloat is zero to keep tables as small
480 for (i
= 0; i
< m_NumCols
; i
++)
481 if (m_ColsInfo
[i
].width
== 0)
483 maxWidth
+= m_ColsInfo
[i
].maxWidth
;
488 // Recalculate table width since no table width was initially given
489 int newWidth
= m_Width
- wpix
+ maxWidth
;
491 // Make sure that floating-width columns will have the right size.
492 // Calculate sum of all floating-width columns
494 for (i
= 0; i
< m_NumCols
; i
++)
495 if ((m_ColsInfo
[i
].units
== wxHTML_UNITS_PERCENT
) && (m_ColsInfo
[i
].width
!= 0))
496 percentage
+= m_ColsInfo
[i
].width
;
498 if (percentage
>= 100)
501 newWidth
= newWidth
* 100 / (100 - percentage
);
503 newWidth
= wxMin(newWidth
, w
- (m_NumCols
+ 1) * m_Spacing
);
504 wpix
-= m_Width
- newWidth
;
509 // 1c. setup floating-width columns:
511 for (i
= 0; i
< m_NumCols
; i
++)
512 if ((m_ColsInfo
[i
].units
== wxHTML_UNITS_PERCENT
) && (m_ColsInfo
[i
].width
!= 0))
514 m_ColsInfo
[i
].pixwidth
= wxMin(m_ColsInfo
[i
].width
, 100) * wpix
/ 100;
516 // Make sure to leave enough space for the other columns
518 for (j
= 0; j
< m_NumCols
; j
++)
520 if ((m_ColsInfo
[j
].units
== wxHTML_UNITS_PERCENT
&& j
> i
) ||
521 !m_ColsInfo
[j
].width
)
522 minRequired
+= m_ColsInfo
[j
].minWidth
;
524 m_ColsInfo
[i
].pixwidth
= wxMax(wxMin(wtemp
- minRequired
, m_ColsInfo
[i
].pixwidth
), m_ColsInfo
[i
].minWidth
);
526 wtemp
-= m_ColsInfo
[i
].pixwidth
;
530 // 1d. setup default columns (no width specification supplied):
531 // The algorithm assigns calculates the maximum possible width if line
532 // wrapping would be disabled and assigns column width as a fraction
533 // based upon the maximum width of a column
534 // FIXME: I'm not sure if this algorithm is conform to HTML standard,
535 // though it seems to be much better than the old one
537 for (i
= j
= 0; i
< m_NumCols
; i
++)
538 if (m_ColsInfo
[i
].width
== 0) j
++;
543 for (i
= 0; i
< m_NumCols
; i
++)
544 if (m_ColsInfo
[i
].width
== 0)
546 // Assign with, make sure not to drop below minWidth
548 m_ColsInfo
[i
].pixwidth
= (int)(wpix
* (m_ColsInfo
[i
].maxWidth
/ (float)maxWidth
) + 0.5);
550 m_ColsInfo
[i
].pixwidth
= wpix
/ j
;
552 // Make sure to leave enough space for the other columns
555 for (r
= i
+ 1; r
< m_NumCols
; r
++)
557 if (!m_ColsInfo
[r
].width
)
558 minRequired
+= m_ColsInfo
[r
].minWidth
;
560 m_ColsInfo
[i
].pixwidth
= wxMax(wxMin(wpix
- minRequired
, m_ColsInfo
[i
].pixwidth
), m_ColsInfo
[i
].minWidth
);
564 if (m_ColsInfo
[i
].pixwidth
> (wpix
* (m_ColsInfo
[i
].maxWidth
/ (float)maxWidth
) + 0.5))
566 int diff
= (int)(m_ColsInfo
[i
].pixwidth
- (wpix
* m_ColsInfo
[i
].maxWidth
/ (float)maxWidth
+ 0.5));
567 maxWidth
+= diff
- m_ColsInfo
[i
].maxWidth
;
570 maxWidth
-= m_ColsInfo
[i
].maxWidth
;
572 wpix
-= m_ColsInfo
[i
].pixwidth
;
576 /* 2. compute positions of columns: */
578 int wpos
= m_Spacing
;
579 for (int i
= 0; i
< m_NumCols
; i
++)
581 m_ColsInfo
[i
].leftpos
= wpos
;
582 wpos
+= m_ColsInfo
[i
].pixwidth
+ m_Spacing
;
585 // add the remaining space to the last column
586 if (m_NumCols
> 0 && wpos
< m_Width
)
587 m_ColsInfo
[m_NumCols
-1].pixwidth
+= m_Width
- wpos
;
590 /* 3. sub-layout all cells: */
592 int *ypos
= new int[m_NumRows
+ 1];
596 wxHtmlContainerCell
*actcell
;
599 for (actrow
= 1; actrow
<= m_NumRows
; actrow
++) ypos
[actrow
] = -1;
600 for (actrow
= 0; actrow
< m_NumRows
; actrow
++)
602 if (ypos
[actrow
] == -1) ypos
[actrow
] = ypos
[actrow
-1];
603 // 3a. sub-layout and detect max height:
605 for (actcol
= 0; actcol
< m_NumCols
; actcol
++) {
606 if (m_CellInfo
[actrow
][actcol
].flag
!= cellUsed
) continue;
607 actcell
= m_CellInfo
[actrow
][actcol
].cont
;
609 for (int i
= actcol
; i
< m_CellInfo
[actrow
][actcol
].colspan
+ actcol
; i
++)
610 fullwid
+= m_ColsInfo
[i
].pixwidth
;
611 fullwid
+= (m_CellInfo
[actrow
][actcol
].colspan
- 1) * m_Spacing
;
612 actcell
->SetMinHeight(m_CellInfo
[actrow
][actcol
].minheight
, m_CellInfo
[actrow
][actcol
].valign
);
613 actcell
->Layout(fullwid
);
615 if (ypos
[actrow
] + actcell
->GetHeight() + m_CellInfo
[actrow
][actcol
].rowspan
* m_Spacing
> ypos
[actrow
+ m_CellInfo
[actrow
][actcol
].rowspan
])
616 ypos
[actrow
+ m_CellInfo
[actrow
][actcol
].rowspan
] =
617 ypos
[actrow
] + actcell
->GetHeight() + m_CellInfo
[actrow
][actcol
].rowspan
* m_Spacing
;
621 for (actrow
= 0; actrow
< m_NumRows
; actrow
++)
623 // 3b. place cells in row & let'em all have same height:
625 for (actcol
= 0; actcol
< m_NumCols
; actcol
++)
627 if (m_CellInfo
[actrow
][actcol
].flag
!= cellUsed
) continue;
628 actcell
= m_CellInfo
[actrow
][actcol
].cont
;
629 actcell
->SetMinHeight(
630 ypos
[actrow
+ m_CellInfo
[actrow
][actcol
].rowspan
] - ypos
[actrow
] - m_Spacing
,
631 m_CellInfo
[actrow
][actcol
].valign
);
633 for (int i
= actcol
; i
< m_CellInfo
[actrow
][actcol
].colspan
+ actcol
; i
++)
634 fullwid
+= m_ColsInfo
[i
].pixwidth
;
635 fullwid
+= (m_CellInfo
[actrow
][actcol
].colspan
- 1) * m_Spacing
;
636 actcell
->Layout(fullwid
);
637 actcell
->SetPos(m_ColsInfo
[actcol
].leftpos
, ypos
[actrow
]);
640 m_Height
= ypos
[m_NumRows
];
644 /* 4. adjust table's width if it was too small: */
647 int twidth
= m_ColsInfo
[m_NumCols
-1].leftpos
+
648 m_ColsInfo
[m_NumCols
-1].pixwidth
+ m_Spacing
;
649 if (twidth
> m_Width
)
659 //-----------------------------------------------------------------------------
660 // The tables handler:
661 //-----------------------------------------------------------------------------
664 TAG_HANDLER_BEGIN(TABLE
, "TABLE,TR,TD,TH")
667 wxHtmlTableCell
* m_Table
;
668 wxString m_tAlign
, m_rAlign
;
669 wxHtmlContainerCell
*m_enclosingContainer
;
671 TAG_HANDLER_CONSTR(TABLE
)
674 m_enclosingContainer
= NULL
;
675 m_tAlign
= m_rAlign
= wxEmptyString
;
679 TAG_HANDLER_PROC(tag
)
681 wxHtmlContainerCell
*c
;
683 // new table started, backup upper-level table (if any) and create new:
684 if (tag
.GetName() == wxT("TABLE"))
686 wxHtmlTableCell
*oldt
= m_Table
;
688 m_enclosingContainer
= c
= m_WParser
->OpenContainer();
690 m_Table
= new wxHtmlTableCell(c
, tag
, m_WParser
->GetPixelScale());
694 if (tag
.HasParam(wxT("WIDTH")))
696 wxString wd
= tag
.GetParam(wxT("WIDTH"));
698 if (wd
[wd
.length()-1] == wxT('%'))
701 wxSscanf(wd
.c_str(), wxT("%i%%"), &width
);
702 m_Table
->SetWidthFloat(width
, wxHTML_UNITS_PERCENT
);
707 wxSscanf(wd
.c_str(), wxT("%i"), &width
);
708 m_Table
->SetWidthFloat((int)(m_WParser
->GetPixelScale() * width
), wxHTML_UNITS_PIXELS
);
712 m_Table
->SetWidthFloat(0, wxHTML_UNITS_PIXELS
);
714 int oldAlign
= m_WParser
->GetAlign();
715 m_tAlign
= wxEmptyString
;
716 if (tag
.HasParam(wxT("ALIGN")))
717 m_tAlign
= tag
.GetParam(wxT("ALIGN"));
721 m_WParser
->SetAlign(oldAlign
);
722 m_WParser
->SetContainer(m_enclosingContainer
);
723 m_WParser
->CloseContainer();
727 return true; // ParseInner() called
734 if (tag
.GetName() == wxT("TR"))
736 m_Table
->AddRow(tag
);
738 if (tag
.HasParam(wxT("ALIGN")))
739 m_rAlign
= tag
.GetParam(wxT("ALIGN"));
745 c
= m_WParser
->SetContainer(new wxHtmlContainerCell(m_Table
));
746 m_Table
->AddCell(c
, tag
);
748 m_WParser
->OpenContainer();
750 if (tag
.GetName() == wxT("TH")) /*header style*/
751 m_WParser
->SetAlign(wxHTML_ALIGN_CENTER
);
753 m_WParser
->SetAlign(wxHTML_ALIGN_LEFT
);
758 if (tag
.HasParam(wxT("ALIGN")))
759 als
= tag
.GetParam(wxT("ALIGN"));
761 if (als
== wxT("RIGHT"))
762 m_WParser
->SetAlign(wxHTML_ALIGN_RIGHT
);
763 else if (als
== wxT("LEFT"))
764 m_WParser
->SetAlign(wxHTML_ALIGN_LEFT
);
765 else if (als
== wxT("CENTER"))
766 m_WParser
->SetAlign(wxHTML_ALIGN_CENTER
);
768 m_WParser
->OpenContainer();
772 // set the current container back to the enclosing one so that
773 // text outside of <th> and <td> isn't included in any cell
774 // (this happens often enough in practice because it's common
775 // to use whitespace between </td> and the next <td>):
776 m_WParser
->SetContainer(m_enclosingContainer
);
778 return true; // ParseInner() called
785 TAG_HANDLER_END(TABLE
)
791 TAGS_MODULE_BEGIN(Tables
)
793 TAGS_MODULE_ADD(TABLE
)
795 TAGS_MODULE_END(Tables
)