diff options
| author | Manolo Gouy <Manolo> | 2018-08-30 08:31:53 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2018-08-30 08:31:53 +0000 |
| commit | b3b29632fbd20e75f3b2bed9bb7050949940c1ff (patch) | |
| tree | f229ce79b49d0905ba6cba3271dfc0d68e775173 /FL | |
| parent | d1df5376f1a0f80ea6828a7096c2d2fd608fa9b0 (diff) | |
Doc only: better doc of recently added events: FL_SCREEN_CONFIGURATION_CHANGED, FL_FULLSCREEN,...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@13035 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Enumerations.H | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/FL/Enumerations.H b/FL/Enumerations.H index 68b38f242..a2e5030fc 100644 --- a/FL/Enumerations.H +++ b/FL/Enumerations.H @@ -396,15 +396,19 @@ enum Fl_Event { // events Use Fl::add_handler() to be notified of this event. */ FL_SCREEN_CONFIGURATION_CHANGED = 24, - /** The fullscreen state of the window has changed + /** The fullscreen state of the window has changed. + This event is sent to the window's handle method. */ FL_FULLSCREEN = 25, - /** The user has made a zoom/pinch/magnification gesture. + /** The user has made a zoom/pinch/magnification gesture (Mac OS platform only). The Fl::event_dy() method can be used to find magnification amount, Fl::event_x() and Fl::event_y() are set as well. + This event is sent to the window's handle method. */ FL_ZOOM_GESTURE = 26, - /** A zoom event (crtl-/+/-/0/) was processed */ + /** A zoom event (crtl/+/-/0/ or cmd/+/-/0/) was processed. + Use Fl::add_handler() to be notified of this event. + */ FL_ZOOM_EVENT = 27 // DEV NOTE: Keep this list in sync with FL/names.h }; |
