#146: Add access to scrollbars widget in Fl_Help_View

- new methods are Fl_Help_View::scrollbar()
and  Fl_Help_View::hscrollbar(), taking inspiration from
Fl_Browser.
This commit is contained in:
Matthias Melcher 2025-07-16 12:45:10 +02:00
parent bced31e972
commit fafdd5df05

View File

@ -390,6 +390,10 @@ public:
void scrollbar_size(int newSize) {
scrollbar_size_ = newSize;
}
/// Return pointer to vertical scrollbar
Fl_Scrollbar *scrollbar() { return &scrollbar_; }
/// Return pointer to horizontal scrollbar
Fl_Scrollbar *hscrollbar() { return &hscrollbar_; }
// Check if the user selected text in this view.
int text_selected();