Work around deadlock when destroying J2KEncoder with a full writer queue (#2784).
[dcpomatic.git] / src / wx / interop_metadata_dialog.cc
index aa61984b36275c9d388005872167b1ed771793b2..a3e236691ed4f74afd65e8863f5efb83621a0bd3 100644 (file)
 */
 
 
-#include "editable_list.h"
 #include "interop_metadata_dialog.h"
 #include "language_tag_widget.h"
 #include "rating_dialog.h"
 #include "lib/film.h"
 #include <dcp/types.h>
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/gbsizer.h>
+LIBDCP_ENABLE_WARNINGS
 
 
+using std::shared_ptr;
 using std::string;
 using std::vector;
 using std::weak_ptr;
-using std::shared_ptr;
 #if BOOST_VERSION >= 106100
 using namespace boost::placeholders;
 #endif
 
 
 InteropMetadataDialog::InteropMetadataDialog (wxWindow* parent, weak_ptr<Film> film)
-       : wxDialog (parent, wxID_ANY, _("Metadata"))
-       , _film (film)
+       : MetadataDialog (parent, film)
 {
-       auto overall_sizer = new wxBoxSizer (wxVERTICAL);
-       SetSizer (overall_sizer);
 
-       auto sizer = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
-       sizer->AddGrowableCol (1, 1);
+}
 
-       auto f = _film.lock();
-       DCPOMATIC_ASSERT (f);
+void
+InteropMetadataDialog::setup_standard (wxPanel* panel, wxSizer* sizer)
+{
+       MetadataDialog::setup_standard (panel, sizer);
 
        {
                int flags = wxALIGN_TOP | wxLEFT | wxRIGHT | wxTOP;
 #ifdef __WXOSX__
                flags |= wxALIGN_RIGHT;
 #endif
-               auto m = create_label (this, _("Ratings"), true);
+               auto m = create_label (panel, _("Ratings"), true);
                sizer->Add (m, 0, flags, DCPOMATIC_SIZER_GAP);
        }
 
-       vector<EditableListColumn> columns;
-       columns.push_back (EditableListColumn(_("Agency"), 200, true));
-       columns.push_back (EditableListColumn(_("Label"), 50, true));
-       _ratings = new EditableList<dcp::Rating, RatingDialog> (
-               this,
-               columns,
-               boost::bind(&InteropMetadataDialog::ratings, this),
-               boost::bind(&InteropMetadataDialog::set_ratings, this, _1),
-               [](dcp::Rating r, int c) {
-                       if (c == 0) {
-                               return r.agency;
-                       }
-                       return r.label;
-               },
-               true,
-               false
-               );
        sizer->Add (_ratings, 1, wxEXPAND);
 
-       add_label_to_sizer (sizer, this, _("Content version"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
-       _content_version = new wxTextCtrl (this, wxID_ANY);
+       add_label_to_sizer (sizer, panel, _("Content version"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
+       _content_version = new wxTextCtrl (panel, wxID_ANY);
        sizer->Add (_content_version, 1, wxEXPAND);
 
-       auto cv = f->content_versions();
+       auto cv = film()->content_versions();
        _content_version->SetValue (std_to_wx(cv.empty() ? "" : cv[0]));
 
-       overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
-
-       auto buttons = CreateSeparatedButtonSizer (wxCLOSE);
-       if (buttons) {
-               overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
-       }
-
-       overall_sizer->Layout ();
-       overall_sizer->SetSizeHints (this);
-
        _content_version->Bind (wxEVT_TEXT, boost::bind(&InteropMetadataDialog::content_version_changed, this));
        _content_version->SetFocus ();
 }
 
 
-vector<dcp::Rating>
-InteropMetadataDialog::ratings () const
-{
-       auto film = _film.lock ();
-       DCPOMATIC_ASSERT (film);
-       return film->ratings ();
-}
-
-void
-InteropMetadataDialog::set_ratings (vector<dcp::Rating> r)
-{
-       auto film = _film.lock ();
-       DCPOMATIC_ASSERT (film);
-       film->set_ratings (r);
-}
-
 void
 InteropMetadataDialog::content_version_changed ()
 {
-       auto film = _film.lock ();
-       DCPOMATIC_ASSERT (film);
-       vector<string> cv;
-       cv.push_back (wx_to_std(_content_version->GetValue()));
-       film->set_content_versions (cv);
+       auto version = wx_to_std(_content_version->GetValue());
+       if (version.empty()) {
+               film()->set_content_versions({});
+       } else {
+               film()->set_content_versions({version});
+       }
 }