summaryrefslogtreecommitdiff
path: root/FL/Fl_Choice.H
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-02-05 16:07:14 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-02-05 16:07:14 +0100
commit515680a633078bcde6984258c33d6774413493b9 (patch)
tree951c6cd19d50b25dafbbb1b00641e3d94995716c /FL/Fl_Choice.H
parent589c1f31c313e1b9630b63a5cd91de6a1ff8872d (diff)
Remove a bunch of \todo items from documentation
Diffstat (limited to 'FL/Fl_Choice.H')
-rw-r--r--FL/Fl_Choice.H11
1 files changed, 6 insertions, 5 deletions
diff --git a/FL/Fl_Choice.H b/FL/Fl_Choice.H
index fa7dc7bb5..98000a2c3 100644
--- a/FL/Fl_Choice.H
+++ b/FL/Fl_Choice.H
@@ -63,20 +63,21 @@
you pick the item with the mouse. The '\&' character in item names are
only looked at when the menu is popped up, however.
- \todo Refactor the doxygen comments for Fl_Choice changed() documentation.
-
+ The inherited Fl_Widget::changed() and related methods can be used as follows:
\li <tt>int Fl_Widget::changed() const</tt>
- This value is true the user picks a different value. <em>It is turned
+ This value is true when the user picks a different value. <em>It is turned
off by value() and just before doing a callback (the callback can turn
it back on if desired).</em>
\li <tt>void Fl_Widget::set_changed()</tt>
This method sets the changed() flag.
\li <tt>void Fl_Widget::clear_changed()</tt>
This method clears the changed() flag.
- \li <tt>Fl_Boxtype Fl_Choice::down_box() const</tt>
+
+ The inherited Fl_Menu_::down_box() methods can be used as follows:
+ \li <tt>Fl_Boxtype Fl_Menu_::down_box() const</tt>
Gets the current down box, which is used when the menu is popped up.
The default down box type is \c FL_DOWN_BOX.
- \li <tt>void Fl_Choice::down_box(Fl_Boxtype b)</tt>
+ \li <tt>void Fl_Menu_::down_box(Fl_Boxtype b)</tt>
Sets the current down box type to \p b.
Simple example: