|
HAWHAW PHP |
|||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
HAW_table
This class allows to insert tables into a HAW_deck or HAW_form object.
Note: Not all WAP clients are able to display tables properly! HDML is not supporting tables at all. For HDML users the table's content will be generated column-by-column, respectively row-by-row, where each table cell will result in one separate line on the display.
Examples:
...
$myTable = new HAW_table();
$row1 = new HAW_row();
$row1->add_column($image1);
$row1->add_column($text1);
$myTable->add_row($row1);
$row2 = new HAW_row();
$row2->add_column($image2);
$row2->add_column($text2);
$myTable->add_row($row2);
$myDeck->add_table($myTable);
...
HAW_deck
,
HAW_form
,
HAW_row
Constructor Summary | |
HAW_table()
Constructor |
Method Summary | |
void |
add_row(var $row)
Adds a HAW_row object to HAW_table. |
void |
set_voice_text(var $text,
var $audio_src)
Sets text to be spoken by voice browsers. |
Constructor Detail |
public HAW_table()
Method Detail |
public void add_row(var $row)
row
- Some HAW_row object.public void set_voice_text(var $text, var $audio_src)
text
- Some helpful text.audio_src
- Some audio file (e.g. *.wav file) to play (optional).
|
© Norbert Huffschmid assembled from PHP source using sed and javadoc |
|||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |