From 7d3793ce1d8cb26e7608bf859beca21359cec6e9 Mon Sep 17 00:00:00 2001 From: maxim nikonov Date: Thu, 5 Feb 2026 16:35:56 +0500 Subject: wip --- FL/Fl_Table.H | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'FL/Fl_Table.H') diff --git a/FL/Fl_Table.H b/FL/Fl_Table.H index 655df6b91..6d7c5d373 100644 --- a/FL/Fl_Table.H +++ b/FL/Fl_Table.H @@ -22,8 +22,6 @@ #include #include -#include - /** A table of widgets or other content. @@ -157,12 +155,16 @@ private: }; unsigned int flags_; - std::vector *_colwidths; // column widths in pixels - std::vector *_rowheights; // row heights in pixels + int *_colwidths; // column widths in pixels + int _colwidths_size; // number of columns + int _colwidths_alloc; // allocated size + int *_rowheights; // row heights in pixels + int _rowheights_size; // number of rows + int _rowheights_alloc; // allocated size - // number of columns and rows == size of corresponding vectors - int col_size(); // size of the column widths vector - int row_size(); // size of the row heights vector + // number of columns and rows + int col_size(); // number of columns + int row_size(); // number of rows Fl_Cursor _last_cursor; // last mouse cursor before changed to 'resize' cursor -- cgit v1.2.3