diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2023-08-29 15:19:07 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2023-08-29 15:19:07 +0200 |
| commit | ad5e49464b4ba5972d2dbce762b02009755338d6 (patch) | |
| tree | b854cebb92ecc383e66676e9c9d16797aff1e5ed /FL/Fl_Tabs.H | |
| parent | b92c8ed6ffcc0a9af4047c32eb0a3d1eed340f34 (diff) | |
Document some protected methods and variables of Fl_Tabs
Todo: There are more protected methods that should be documented,
particularly the virtual ones that might be overridden by subclasses.
Diffstat (limited to 'FL/Fl_Tabs.H')
| -rw-r--r-- | FL/Fl_Tabs.H | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Tabs.H b/FL/Fl_Tabs.H index d625e7614..016a10dc3 100644 --- a/FL/Fl_Tabs.H +++ b/FL/Fl_Tabs.H @@ -225,10 +225,10 @@ protected: int overflow_type; int tab_offset; - int *tab_pos; // array of x-offsets of tabs per child + 1 - int *tab_width; // array of widths of tabs per child + 1 - int *tab_flags; // array of tab flag of tabs per child + 1 - int tab_count; // array size + int *tab_pos; ///< Array of x-offsets of tabs per child + 1 \see tab_positions() + int *tab_width; ///< Array of widths of tabs per child \see tab_positions() + int *tab_flags; ///< Array of tab flag of tabs per child \see tab_positions() + int tab_count; ///< Array size of tab positions etc. \see tab_positions() Fl_Align tab_align_; // tab label alignment int has_overflow_menu; Fl_Menu_Item* overflow_menu; |
