DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 644f0659730964e74d93639c7d08a92ce4a1a234
parent e288f163bbf3af6ae24e9df6cdd23e755ff1aaf5
Author: falkTX <falktx@falktx.com>
Date:   Sat,  8 Jul 2023 16:27:06 +0200

Add className var to filedialog, to be used later

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/extra/FileBrowserDialogImpl.hpp | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/distrho/extra/FileBrowserDialogImpl.hpp b/distrho/extra/FileBrowserDialogImpl.hpp @@ -43,6 +43,9 @@ struct FileBrowserOptions { /** File browser dialog window title, uses "FileBrowser" if null */ const char* title; + /** Class name of the matching Application instance that controls this dialog */ + const char* className; + // TODO file filter /** @@ -80,6 +83,7 @@ struct FileBrowserOptions { defaultName(nullptr), startDir(nullptr), title(nullptr), + className(nullptr), buttons() {} };