diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-04-22 16:34:08 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-04-22 16:34:08 +0200 |
| commit | abfc8ee52f5e7b7e9022dd0bb6fd370a0e9c32af (patch) | |
| tree | 95d6a53874a68c0cc13bda5128561d40314b78a9 /FL/Fl.H | |
| parent | ee37965fad79a815feea3f8a4a6cfec03d4a9029 (diff) | |
Fix: Fl_Native_File_Chooser::filter_value() [Kdialog] always returns 0 (#899)
- remove build option FLTK_USE_KDIALOG replaced by an Fl::option() option
- new run-time option OPTION_FNFC_USES_KDIALOG
- make options OPTION_FNFC_USES_KDIALOG and OPTION_FNFC_USES_ZENITY
false by default
- add mention of new program fltk-options in the doc of Fl::option()
- change logic of choice of the native file chooser under X11/Wayland:
the zenity and kdialog choosers are opt-in; otherwise the GTK file chooser
is used, unless opted out with OPTION_FNFC_USES_GTK
- document that zenity may be interesting for sandboxed apps
- document that both zenity and kdialog make member functions
Fl_Native_File_Chooser::filter_value() inoperable
Diffstat (limited to 'FL/Fl.H')
| -rw-r--r-- | FL/Fl.H | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -266,6 +266,13 @@ public: /// if the GTK library is available on the platform (linux/unix only). /// When switched off, GTK file dialogs aren't used even if the GTK library is available. OPTION_FNFC_USES_GTK, + /// Meaningful for the Wayland/X11 platform only. When switched on, the library uses a Zenity-based file dialog. + /// When switched off (default), no zenity-based file dialog is used. + OPTION_FNFC_USES_ZENITY, + /// Meaningful for the Wayland/X11 platform only and for the KDE-Plasma desktop only. + /// When switched on, the library uses a kdialog-based file dialog if command 'kdialog' is available on the running system. + /// When switched off (default), no kdialog-based file dialog is used. + OPTION_FNFC_USES_KDIALOG, /// When switched on (default), Fl_Printer runs the GTK printer dialog /// if the GTK library is available on the platform (linux/unix only). /// When switched off, the GTK printer dialog isn't used even if the GTK library is available. @@ -274,9 +281,6 @@ public: /// value. /// When switched off, no such window gets displayed. OPTION_SHOW_SCALING, - /// Meaningful for the Wayland/X11 platform only. When switched on (default), the library uses a Zenity-based file dialog. - /// When switched off, the GTK file dialog is used instead. - OPTION_FNFC_USES_ZENITY, /// When switched on and when the keyboard in use has '+' in the shifted position of its key, /// pressing that key and ctrl triggers the zoom-in operation. /// When switched off (default), the zoom-in operation requires that also the shift key is pressed. |
