summaryrefslogtreecommitdiff
path: root/FL/Fl.H
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-10-17 13:39:40 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2021-10-17 13:39:40 +0200
commit1afbbb4aef47267e42308da924a71dff0ee8d79c (patch)
treef02a772651e20bae66d68d75c852a2676bc2dbbe /FL/Fl.H
parent8863ef79012f6c1329db53855572b3bec045dbd4 (diff)
Documentation updates (formatting)
no code changes
Diffstat (limited to 'FL/Fl.H')
-rw-r--r--FL/Fl.H25
1 files changed, 14 insertions, 11 deletions
diff --git a/FL/Fl.H b/FL/Fl.H
index 720899b91..27f2d6856 100644
--- a/FL/Fl.H
+++ b/FL/Fl.H
@@ -60,20 +60,23 @@ extern FL_EXPORT const char* fl_local_ctrl; ///< string pointer used in shortcu
extern FL_EXPORT const char* fl_local_meta; ///< string pointer used in shortcuts, you can change it to another language
extern FL_EXPORT const char* fl_local_shift; ///< string pointer used in shortcuts, you can change it to another language
-/** \defgroup callback_functions Callback function typedefs
- \brief Typedefs defined in <FL/Fl.H> for callback or handler functions passed as function parameters.
+/** \defgroup callback_functions Callback Function Typedefs
- FLTK uses callback functions as parameters for some function calls, e.g. to
- set up global event handlers (Fl::add_handler()), to add a timeout handler
- (Fl::add_timeout()), and many more.
+ \brief Typedefs defined in <FL/Fl.H> for callback or handler functions passed as function parameters.
- The typedefs defined in this group describe the function parameters used to set
- up or clear the callback functions and should also be referenced to define the
- callback function to handle such events in the user's code.
+ FLTK uses callback functions as parameters for some function calls, e.g. to
+ set up global event handlers (Fl::add_handler()), to add a timeout handler
+ (Fl::add_timeout()), and many more.
- \see Fl::add_handler(), Fl::add_timeout(), Fl::repeat_timeout(),
- Fl::remove_timeout() and others
- @{ */
+ The typedefs defined in this group describe the function parameters used to set
+ up or clear the callback functions and should also be referenced to define the
+ callback function to handle such events in the user's code.
+
+ \see Fl::add_handler(), Fl::add_timeout(), Fl::repeat_timeout(),
+ Fl::remove_timeout() and others
+
+ @{
+*/
/** Signature of some label drawing functions passed as parameters */
typedef void (Fl_Label_Draw_F)(const Fl_Label *label, int x, int y, int w, int h, Fl_Align align);