From ed5761a8b46459a24c6c74bb0be312c761de4f59 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 8 Jun 2017 13:22:00 +0200 Subject: Add a file-chooser LuaDialog Widget --- gtk2_ardour/luadialog.cc | 53 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) (limited to 'gtk2_ardour') diff --git a/gtk2_ardour/luadialog.cc b/gtk2_ardour/luadialog.cc index 22fcee6cda..295fa372f7 100644 --- a/gtk2_ardour/luadialog.cc +++ b/gtk2_ardour/luadialog.cc @@ -436,6 +436,47 @@ protected: luabridge::LuaRef* _rv; }; +class LuaFileChooser : public LuaDialogWidget +{ +public: + LuaFileChooser (std::string const& key, std::string const& title, Gtk::FileChooserAction a, const std::string& path) + : LuaDialogWidget (key, title) + , _fc (a) + { + if (!path.empty ()) { + switch (a) { + case Gtk::FILE_CHOOSER_ACTION_OPEN: + case Gtk::FILE_CHOOSER_ACTION_SAVE: + if (Glib::file_test (path, Glib::FILE_TEST_IS_REGULAR|Glib::FILE_TEST_EXISTS)) { + _fc.set_filename (path); + } + break; + case Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER: + if (Glib::file_test (path, Glib::FILE_TEST_IS_DIR|Glib::FILE_TEST_EXISTS)) { + _fc.set_filename (path); + } + break; + case Gtk::FILE_CHOOSER_ACTION_CREATE_FOLDER: + break; + } + } + } + + Gtk::Widget* widget () + { + return &_fc; + } + + void assign (luabridge::LuaRef* rv) const + { + (*rv)[_key] = std::string (_fc.get_filename ()); + } + +protected: + Gtk::FileChooserButton _fc; +}; + + /******************************************************************************* * Lua Parameter Dialog @@ -546,6 +587,18 @@ Dialog::Dialog (std::string const& title, luabridge::LuaRef lr) dflt = i.value ()["default"].cast (); } _widgets.push_back (new LuaDialogDropDown (key, title, i.value ()["values"], dflt)); + } else if (type == "file") { + std::string path; + if (i.value ()["path"].isString ()) { + path = i.value ()["path"].cast (); + } + _widgets.push_back (new LuaFileChooser (key, title, Gtk::FILE_CHOOSER_ACTION_OPEN, path)); + } else if (type == "folder") { + std::string path; + if (i.value ()["path"].isString ()) { + path = i.value ()["path"].cast (); + } + _widgets.push_back (new LuaFileChooser (key, title, Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER, path)); } } -- cgit v1.2.3