diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-03-26 02:55:14 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-03-26 02:55:14 +0000 |
| commit | 29a9e89b39c2fdc1f9498717f5ae53798528ffb1 (patch) | |
| tree | dcdc51d1f4c12ae67665a5d4d353e9c731f46eb3 /FL/Fl_Table.H | |
| parent | de9dc764f1a34a3032d560839687b551865c532f (diff) | |
Remove FLTK_ABI_VERSION from all but *tree*.* and documentation.
Everything related to Fl_Tree and its test and demo programs has been
cleaned.
Documentation needs updates.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11428 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Table.H')
| -rw-r--r-- | FL/Fl_Table.H | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/FL/Fl_Table.H b/FL/Fl_Table.H index 341f878b8..bce52bb3e 100644 --- a/FL/Fl_Table.H +++ b/FL/Fl_Table.H @@ -209,15 +209,11 @@ private: int _auto_drag; int _selecting; -#if FLTK_ABI_VERSION >= 10301 int _scrollbar_size; -#endif -#if FLTK_ABI_VERSION >= 10303 enum { TABCELLNAV = 1<<0, ///> tab cell navigation flag }; unsigned int flags_; -#endif // An STL-ish vector without templates class FL_EXPORT IntVector { @@ -1079,8 +1075,6 @@ public: void callback(Fl_Widget*, void*); #endif -#if FLTK_ABI_VERSION >= 10301 - // NEW /** Gets the current size of the scrollbars' troughs, in pixels. @@ -1093,6 +1087,7 @@ public: int scrollbar_size() const { return(_scrollbar_size); } + /** Sets the pixel size of the scrollbars' troughs to \p newSize, in pixels. @@ -1114,9 +1109,8 @@ public: void scrollbar_size(int newSize) { if ( newSize != _scrollbar_size ) redraw(); _scrollbar_size = newSize; - } -#endif -#if FLTK_ABI_VERSION >= 10303 + } + /** Flag to control if Tab navigates table cells or not. @@ -1145,7 +1139,6 @@ public: int tab_cell_nav() const { return(flags_ & TABCELLNAV ? 1 : 0); } -#endif }; #endif /*_FL_TABLE_H*/ |
