diff --git a/FL/Fl_Table.H b/FL/Fl_Table.H index 0241389f4..86b540d22 100644 --- a/FL/Fl_Table.H +++ b/FL/Fl_Table.H @@ -331,38 +331,47 @@ protected:
| \p Fl_Table::CONTEXT_STARTPAGE | -When table, or parts of the table, are about to be redrawn. - Use to initialize static data, such as font selections. - r/c will be zero, x/y/w/h will be the dimensions of the - table's entire data area. - (Useful for locking a database before accessing; see - also visible_cells()) | +When table, or parts of the table, are about to be redrawn. + Use to initialize static data, such as font selections.
+ R/C will be zero, |
| \p Fl_Table::CONTEXT_ENDPAGE | -When table has completed being redrawn. - r/c will be zero, x/y/w/h dimensions of table's data area. - (Useful for unlocking a database after accessing) | +When table has completed being redrawn. + R/C will be zero, X/Y/W/H dimensions of table's data area. + (Useful for unlocking a database after accessing) |
| \p Fl_Table::CONTEXT_ROW_HEADER | -Whenever a row header cell needs to be drawn. | +Whenever a row header cell needs to be drawn. + R will be the row number of the header being redrawn, + C will be zero, + X/Y/W/H will be the fltk drawing area of the row header in the window |
| \p Fl_Table::CONTEXT_COL_HEADER | -Whenever a column header cell needs to be drawn. | +Whenever a column header cell needs to be drawn. + R will be zero, + C will be the column number of the header being redrawn, + X/Y/W/H will be the fltk drawing area of the column header in the window |
| \p Fl_Table::CONTEXT_CELL | -Whenever a data cell in the table needs to be drawn. | +Whenever a data cell in the table needs to be drawn. + R/C will be the row/column of the cell to be drawn, + X/Y/W/H will be the fltk drawing area of the cell in the window |
| \p Fl_Table::CONTEXT_RC_RESIZE | Whenever table or row/column is resized or scrolled, - either interactively or via col_width() or row_height(). - - Useful for fltk containers that need to resize or move - the child fltk widgets. | + either interactively or via col_width() or row_height().