diff options
| author | Greg Ercolano <erco@seriss.com> | 2022-11-07 17:08:14 -0800 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2022-11-07 17:08:14 -0800 |
| commit | d68f927a1382d1603a03e5be77f79b7a51854360 (patch) | |
| tree | b27b2defe1d0b1674fb1e603cc8bb2fe11c0cde7 /FL | |
| parent | 89e1aad897c07c0fc1e427d5970889172177808a (diff) | |
Document Fl_Multiline_Output keynav and caret cursor
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Multiline_Output.H | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/FL/Fl_Multiline_Output.H b/FL/Fl_Multiline_Output.H index a8bd088bc..480fc8f52 100644 --- a/FL/Fl_Multiline_Output.H +++ b/FL/Fl_Multiline_Output.H @@ -34,6 +34,15 @@ and need scrollbars, or full color control of characters, then use Fl_Text_Display. If you want to display HTML text, use Fl_Help_View. + + A caret cursor (^) shows the keyboard navigation mark + for keyboard selection of the output text, e.g. Arrow Keys + to move the cursor, Shift + Arrow Keys to create a text + selection, and '^C' to copy the selected text to the paste buffer. + The caret cursor can be disabled by disabling the widget's + "visible focus" using clear_visible_focus(), inherited from the + Fl_Widget base class. Doing this also disables the widget's + keyboard navigation. */ class FL_EXPORT Fl_Multiline_Output : public Fl_Output { public: |
