mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 03:01:27 +00:00
38 lines
688 B
Text
38 lines
688 B
Text
|
|
||
|
TableContainer: GSWGenericContainer {
|
||
|
elementName = "table";
|
||
|
bgcolor = ^tableBackgroundColor;
|
||
|
border = ^border;
|
||
|
cellpadding = ^cellpadding;
|
||
|
cellspacing = ^cellspacing;
|
||
|
}
|
||
|
|
||
|
RowRepetition: GSWRepetition {
|
||
|
count = rowCount;
|
||
|
index = currentRow;
|
||
|
}
|
||
|
|
||
|
TableRow: GSWGenericContainer {
|
||
|
elementName = "tr";
|
||
|
bgcolor = ^rowBackgroundColor;
|
||
|
}
|
||
|
|
||
|
ColRepetition: GSWRepetition {
|
||
|
count = colCount;
|
||
|
index = currentCol;
|
||
|
}
|
||
|
|
||
|
PushItem: GSWMethodInvocation {
|
||
|
invoke = pushItem;
|
||
|
}
|
||
|
|
||
|
CellContainer: GSWGenericContainer {
|
||
|
elementName = "td";
|
||
|
bgcolor = ^cellBackgroundColor;
|
||
|
align = ^cellAlign;
|
||
|
valign = ^cellVAlign;
|
||
|
}
|
||
|
|
||
|
Content: GSWComponentContent {
|
||
|
}
|