1
0
Fork 0

[C] Improved documentation

This commit is contained in:
seleznevae 2018-12-22 11:48:57 +03:00
parent 2097e5549b
commit 1c27a08ae7
2 changed files with 21 additions and 0 deletions

View File

@ -88,6 +88,18 @@ These pages contain the API documentation of **libfort** - simple library to cre
- @link fort::table::set_cell_cell_text_style set_cell_cell_text_style @endlink -- set cell text style
- @link fort::table::set_cell_content_text_style set_cell_content_text_style @endlink -- set content text style
- @link fort::table::table_cell fort::table::table_cell @endlink -- table cell
- @link fort::table::table_row fort::table::table_row @endlink -- table row
- @link fort::table::table_column fort::table::table_column @endlink -- table column
- @link fort::table_manipulator fort::table_manipulator @endlink -- table manipulator
- @link fort::header fort::header @endlink -- table manipulator to set current row as a header
- @link fort::endr fort::endr @endlink -- table manipulator to move current cell to the first cell of the next row
- @link fort::separator fort::separator @endlink -- table manipulator to add separator
- Other functions
- @link fort::set_default_border_style fort::set_default_border_style @endlink -- set default border style for all new formatted tables
List of libfort builtin border styles:
~~~~~~~~~~~~~~~~~~~~~

View File

@ -850,6 +850,9 @@ public:
/* Iterators */
/* todo: implement chains like table[0][0] = table [0][1] = "somethings" */
/**
* Table cell.
*/
class table_cell: public property_owner<table>
{
public:
@ -886,6 +889,9 @@ public:
}
};
/**
* Table row.
*/
class table_row: public property_owner<table>
{
public:
@ -899,6 +905,9 @@ public:
}
};
/**
* Table column.
*/
class table_column: public property_owner<table>
{
public: