diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-01-31 18:50:25 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-01-31 18:50:25 +0100 |
| commit | b21a3910a967170c1a022f22ffa8ecb98c308f37 (patch) | |
| tree | 013b6fa9b62920a42d0a49e49bf3f21b80e69d7b /src | |
| parent | faff63130c90461d7e077be68a40a716257be12d (diff) | |
Improve documentation of Fl_Native_File_Chooser
Document restrictions imposed by the new system file chooser dialogs,
particularly by 'kdialog' and 'zenity' (Unix/X11/Wayland only).
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Native_File_Chooser.cxx | 45 |
1 files changed, 36 insertions, 9 deletions
diff --git a/src/Fl_Native_File_Chooser.cxx b/src/Fl_Native_File_Chooser.cxx index d9c99b265..2cafb019b 100644 --- a/src/Fl_Native_File_Chooser.cxx +++ b/src/Fl_Native_File_Chooser.cxx @@ -1,8 +1,8 @@ // // FLTK native OS file chooser widget // -// Copyright 1998-2016 by Bill Spitzak and others. // Copyright 2004 Greg Ercolano. +// Copyright 1998-2024 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -184,20 +184,47 @@ int Fl_Native_File_Chooser::filters() const { } /** - Sets which filter will be initially selected. + Sets which filter will be initially selected. - The first filter is indexed as 0. - If filter_value()==filters(), then "All Files" was chosen. - If filter_value() > filters(), then a custom filter was set. - */ + The first filter is indexed as 0. + If filter_value() == filters(), then "All Files" was chosen. + If filter_value() > filters(), then a custom filter was set. + + Some "native" file choosers don't support this way to set the initial + filter type, particularly the system dialog based browsers: + + - kdialog (KDE system dialog) + - zenity (another system dialog based chooser). + + Note: this list may not be complete. + + As far as we know these dialogs use the \b first item in the list of + filter values as the initial filter presented to the user. + + \see filter(const char *f) +*/ void Fl_Native_File_Chooser::filter_value(int i) { platform_fnfc->filter_value(i); } /** - Returns which filter value was last selected by the user. - This is only valid if the chooser returns success. - */ + Returns which filter value was last selected by the user. + + This is only valid if the chooser returns success and if the particular + file chooser supports it. Otherwise the value is not changed. + + Some "native" file choosers don't support returning the filter selection + by the user, particularly the system dialog based browsers: + + - kdialog (KDE system dialog) + - zenity (another system dialog based chooser). + + Note: this list may not be complete. + + These system file chooser dialogs don't return the filter value chosen by the user. + + \see filter(const char *f) +*/ int Fl_Native_File_Chooser::filter_value() const { return platform_fnfc->filter_value(); } |
