summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-08-29 15:19:07 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-08-29 15:19:07 +0200
commitad5e49464b4ba5972d2dbce762b02009755338d6 (patch)
treeb854cebb92ecc383e66676e9c9d16797aff1e5ed /FL
parentb92c8ed6ffcc0a9af4047c32eb0a3d1eed340f34 (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')
-rw-r--r--FL/Fl_Tabs.H8
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;