diff options
| author | Fabien Costantini <fabien@onepost.net> | 2008-10-03 11:20:50 +0000 |
|---|---|---|
| committer | Fabien Costantini <fabien@onepost.net> | 2008-10-03 11:20:50 +0000 |
| commit | fabf5fc18167f73526c21842fa8e68da29647094 (patch) | |
| tree | a5928a6b3f149ef4924574ce7854b55f621d9898 /FL/Fl.H | |
| parent | b763b271a714628bf2a24571f9995b5d456b3070 (diff) | |
Fixed bad comments in fl_color_chooser, r g b param are in/out params and not in. Added param and return dox commands to these functions. Added a new Common Dialogs Module containing all fl_ask,fl,fl_color,fl_file dialogs. Fixed the fl_old_shortcut appearing in Fl_Button.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6367 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl.H')
| -rw-r--r-- | FL/Fl.H | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -254,10 +254,9 @@ public: static int damage() {return damage_;} static void redraw(); static void flush(); - /** \defgroup fl_windows Windows handling functions - Windows and standard dialogs handling + /** \addtogroup group_comdlg @{ */ - /** \fn void (*warning)(const char*, ...) + /** FLTK calls this to print a warning message. You can override the behavior by setting the function pointer to your own routine. @@ -272,7 +271,7 @@ public: own routine. <P>Fl::error means there is a recoverable error such as the inability to read an image file. The default implementation - prints the error message to stderr and returns. + shows an error dialog to stderr and returns. */ static void (*error)(const char*, ...); /** @@ -282,13 +281,19 @@ public: <P>Fl::fatal must not return, as FLTK is in an unusable state, however your version may be able to use longjmp or an exception to continue, as long as it does not call FLTK - again. The default implementation prints the error message to - stderr and exits with status 1. + again. The default implementation shows a fatal dialog box + and exits with status 1. */ static void (*fatal)(const char*, ...); + /** @} */ + + /** \defgroup fl_windows Windows handling functions + Windows and standard dialogs handling + @{ */ static Fl_Window* first_window(); static void first_window(Fl_Window*); static Fl_Window* next_window(const Fl_Window*); + /** Returns the top-most modal() window currently shown. This is the most recently @@ -805,7 +810,7 @@ public: /** @} */ #ifdef HAVE_CAIRO - /** \defgroup group_cairo Cairo functions support + /** \defgroup group_cairo Cairo support functions and classes @{ */ public: |
