From 644f0659730964e74d93639c7d08a92ce4a1a234 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 8 Jul 2023 16:27:33 +0200 Subject: [PATCH] Add className var to filedialog, to be used later Signed-off-by: falkTX --- distrho/extra/FileBrowserDialogImpl.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/distrho/extra/FileBrowserDialogImpl.hpp b/distrho/extra/FileBrowserDialogImpl.hpp index 8b3bbd9a..225e34f9 100644 --- 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() {} };