String fix.
[dcpomatic.git] / src / tools / dcpomatic_combiner.cc
index e773e4a37e3bfcaef0dc77df8592e36fb8bd922b..a4f80ac8e6cca7410669c0fc1fbfacf5e5de6127 100644 (file)
 */
 
 
+#include "wx/dir_dialog.h"
 #include "wx/dir_picker_ctrl.h"
 #include "wx/editable_list.h"
 #include "wx/wx_signal_manager.h"
 #include "lib/combine_dcp_job.h"
 #include "lib/config.h"
+#include "lib/constants.h"
 #include "lib/cross.h"
 #include "lib/job_manager.h"
-#include "lib/util.h"
 #include <dcp/combine.h>
 LIBDCP_DISABLE_WARNINGS
 #include <wx/filepicker.h>
@@ -56,18 +57,23 @@ display_string (boost::filesystem::path p, int)
 }
 
 
-class DirDialogWrapper : public wxDirDialog
+class DirDialogWrapper : public DirDialog
 {
 public:
        DirDialogWrapper (wxWindow* parent)
-               : wxDirDialog (parent, _("Choose a DCP folder"), wxT(""), wxDD_DIR_MUST_EXIST)
+               : DirDialog (parent, _("Choose a DCP folder"), wxDD_DIR_MUST_EXIST, "AddCombinerInputPath")
        {
 
        }
 
+       virtual int ShowModal() override
+       {
+               return DirDialog::show() ? wxID_OK : wxID_CANCEL;
+       }
+
        optional<boost::filesystem::path> get () const
        {
-               return boost::filesystem::path(wx_to_std(GetPath()));
+               return path();
        }
 
        void set (boost::filesystem::path)
@@ -169,7 +175,7 @@ private:
 
                auto jm = JobManager::instance ();
                jm->add (make_shared<CombineDCPJob>(_inputs, output, wx_to_std(_annotation_text->GetValue())));
-               bool const ok = display_progress (_("DCP-o-matic Combine"), _("Combining DCPs"));
+               bool const ok = display_progress(_("DCP-o-matic Combiner"), _("Combining DCPs"));
                if (!ok) {
                        return;
                }