Rename TimelineDialog -> ContentTimelineDialog.
authorCarl Hetherington <cth@carlh.net>
Wed, 13 Dec 2023 22:27:05 +0000 (23:27 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 11 Mar 2024 23:43:51 +0000 (00:43 +0100)
src/wx/content_panel.cc
src/wx/content_panel.h
src/wx/content_timeline_dialog.cc [new file with mode: 0644]
src/wx/content_timeline_dialog.h [new file with mode: 0644]
src/wx/timeline_dialog.cc [deleted file]
src/wx/timeline_dialog.h [deleted file]
src/wx/wscript

index 9e73900fcf012efd41e30502e27509553aae74ae..ed9c15c834368c47b7a808315ab5f6b48a597e9c 100644 (file)
 
 #include "audio_panel.h"
 #include "content_panel.h"
+#include "content_timeline_dialog.h"
 #include "dcpomatic_button.h"
 #include "dir_dialog.h"
 #include "file_dialog.h"
 #include "film_viewer.h"
 #include "image_sequence_dialog.h"
 #include "text_panel.h"
-#include "timeline_dialog.h"
 #include "timing_panel.h"
 #include "video_panel.h"
 #include "wx_util.h"
index ca0d4971946f779336d28da953da681ddfd2b222..38b634a62566895bc12488322aabf115bf89c4ea 100644 (file)
@@ -33,12 +33,12 @@ LIBDCP_ENABLE_WARNINGS
 class AudioPanel;
 class ContentListCtrl;
 class ContentSubPanel;
+class ContentTimelineDialog;
 class Film;
 class FilmEditor;
 class FilmViewer;
 class LimitedContentPanelSplitter;
 class TextPanel;
-class TimelineDialog;
 class TimingPanel;
 class VideoPanel;
 class wxListCtrl;
@@ -132,7 +132,7 @@ private:
        EnumIndexedVector<TextPanel*, TextType> _text_panel;
        TimingPanel* _timing_panel;
        ContentMenu* _menu;
-       wx_ptr<TimelineDialog> _timeline_dialog;
+       wx_ptr<ContentTimelineDialog> _timeline_dialog;
        wxNotebook* _parent;
        wxWindow* _last_selected_tab = nullptr;
 
diff --git a/src/wx/content_timeline_dialog.cc b/src/wx/content_timeline_dialog.cc
new file mode 100644 (file)
index 0000000..697e656
--- /dev/null
@@ -0,0 +1,153 @@
+/*
+    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
+
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    DCP-o-matic is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+
+#include "content_panel.h"
+#include "content_timeline_dialog.h"
+#include "film_editor.h"
+#include "wx_util.h"
+#include "lib/compose.hpp"
+#include "lib/cross.h"
+#include "lib/film.h"
+#include "lib/playlist.h"
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
+#include <wx/graphics.h>
+LIBDCP_ENABLE_WARNINGS
+#include <list>
+
+
+using std::list;
+using std::shared_ptr;
+using std::string;
+using std::weak_ptr;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
+
+
+ContentTimelineDialog::ContentTimelineDialog(ContentPanel* cp, shared_ptr<Film> film, FilmViewer& viewer)
+       : wxDialog (
+               cp->window(),
+               wxID_ANY,
+               _("Timeline"),
+               wxDefaultPosition,
+               wxSize (640, 512),
+#ifdef DCPOMATIC_OSX
+               /* I can't get wxFRAME_FLOAT_ON_PARENT to work on OS X, and although wxSTAY_ON_TOP keeps
+                  the window above all others (and not just our own) it's better than nothing for now.
+               */
+               wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE | wxSTAY_ON_TOP
+#else
+               wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE | wxFRAME_FLOAT_ON_PARENT
+#endif
+               )
+       , _film (film)
+       , _timeline (this, cp, film, viewer)
+{
+       auto sizer = new wxBoxSizer (wxVERTICAL);
+
+       wxBitmap select(icon_path("select"), wxBITMAP_TYPE_PNG);
+       wxBitmap zoom(icon_path("zoom"), wxBITMAP_TYPE_PNG);
+       wxBitmap zoom_all(icon_path("zoom_all"), wxBITMAP_TYPE_PNG);
+       wxBitmap snap(icon_path("snap"), wxBITMAP_TYPE_PNG);
+       wxBitmap sequence(icon_path("sequence"), wxBITMAP_TYPE_PNG);
+
+       _toolbar = new wxToolBar (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL);
+       _toolbar->SetMargins (4, 4);
+       _toolbar->SetToolBitmapSize (wxSize(32, 32));
+       _toolbar->AddRadioTool(static_cast<int>(ContentTimeline::SELECT), _("Select"), select, wxNullBitmap, _("Select and move content"));
+       _toolbar->AddRadioTool(static_cast<int>(ContentTimeline::ZOOM), _("Zoom"), zoom, wxNullBitmap, _("Zoom in / out"));
+       _toolbar->AddTool(static_cast<int>(ContentTimeline::ZOOM_ALL), _("Zoom all"), zoom_all, _("Zoom out to whole film"));
+       _toolbar->AddCheckTool(static_cast<int>(ContentTimeline::SNAP), _("Snap"), snap, wxNullBitmap, _("Snap"));
+       _toolbar->AddCheckTool(static_cast<int>(ContentTimeline::SEQUENCE), _("Sequence"), sequence, wxNullBitmap, _("Keep video and subtitles in sequence"));
+       _toolbar->Realize ();
+
+       _toolbar->Bind(wxEVT_TOOL, bind(&ContentTimelineDialog::tool_clicked, this, _1));
+
+       sizer->Add (_toolbar, 0, wxALL, 12);
+       sizer->Add (&_timeline, 1, wxEXPAND | wxALL, 12);
+
+#ifdef DCPOMATIC_LINUX
+       auto buttons = CreateSeparatedButtonSizer (wxCLOSE);
+       if (buttons) {
+               sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
+       }
+#endif
+
+       SetSizer (sizer);
+       sizer->Layout ();
+       sizer->SetSizeHints (this);
+
+       Bind(wxEVT_CHAR_HOOK, boost::bind(&ContentTimelineDialog::keypress, this, _1));
+
+        _toolbar->ToggleTool(static_cast<int>(ContentTimeline::SNAP), _timeline.snap ());
+       film_change(ChangeType::DONE, FilmProperty::SEQUENCE);
+
+       _film_changed_connection = film->Change.connect(bind(&ContentTimelineDialog::film_change, this, _1, _2));
+}
+
+
+void
+ContentTimelineDialog::film_change(ChangeType type, FilmProperty p)
+{
+       if (type != ChangeType::DONE) {
+               return;
+       }
+
+       auto film = _film.lock ();
+       if (!film) {
+               return;
+       }
+
+       if (p == FilmProperty::SEQUENCE) {
+               _toolbar->ToggleTool(static_cast<int>(ContentTimeline::SEQUENCE), film->sequence());
+       }
+}
+
+
+void
+ContentTimelineDialog::set_selection(ContentList selection)
+{
+       _timeline.set_selection (selection);
+}
+
+
+void
+ContentTimelineDialog::tool_clicked(wxCommandEvent& ev)
+{
+       auto t = static_cast<ContentTimeline::Tool>(ev.GetId());
+       _timeline.tool_clicked (t);
+       if (t == ContentTimeline::SNAP) {
+               _timeline.set_snap (_toolbar->GetToolState(static_cast<int>(t)));
+       } else if (t == ContentTimeline::SEQUENCE) {
+               auto film = _film.lock ();
+               if (film) {
+                       film->set_sequence (_toolbar->GetToolState(static_cast<int>(t)));
+               }
+       }
+}
+
+
+void
+ContentTimelineDialog::keypress(wxKeyEvent const& event)
+{
+       _timeline.keypress(event);
+}
diff --git a/src/wx/content_timeline_dialog.h b/src/wx/content_timeline_dialog.h
new file mode 100644 (file)
index 0000000..2babf04
--- /dev/null
@@ -0,0 +1,48 @@
+/*
+    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
+
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    DCP-o-matic is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+
+#include "content_timeline.h"
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
+#include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
+
+
+class Playlist;
+
+
+class ContentTimelineDialog : public wxDialog
+{
+public:
+       ContentTimelineDialog(ContentPanel *, std::shared_ptr<Film>, FilmViewer& viewer);
+
+       void set_selection (ContentList selection);
+
+private:
+       void film_change(ChangeType type, FilmProperty);
+       void tool_clicked (wxCommandEvent& id);
+       void keypress(wxKeyEvent const& event);
+
+       std::weak_ptr<Film> _film;
+       ContentTimeline _timeline;
+       wxToolBar* _toolbar;
+       boost::signals2::scoped_connection _film_changed_connection;
+};
diff --git a/src/wx/timeline_dialog.cc b/src/wx/timeline_dialog.cc
deleted file mode 100644 (file)
index f0216a9..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-/*
-    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
-
-    This file is part of DCP-o-matic.
-
-    DCP-o-matic is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    DCP-o-matic is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
-
-*/
-
-
-#include "content_panel.h"
-#include "film_editor.h"
-#include "timeline_dialog.h"
-#include "wx_util.h"
-#include "lib/compose.hpp"
-#include "lib/cross.h"
-#include "lib/film.h"
-#include "lib/playlist.h"
-#include <dcp/warnings.h>
-LIBDCP_DISABLE_WARNINGS
-#include <wx/graphics.h>
-LIBDCP_ENABLE_WARNINGS
-#include <list>
-
-
-using std::list;
-using std::shared_ptr;
-using std::string;
-using std::weak_ptr;
-#if BOOST_VERSION >= 106100
-using namespace boost::placeholders;
-#endif
-
-
-TimelineDialog::TimelineDialog(ContentPanel* cp, shared_ptr<Film> film, FilmViewer& viewer)
-       : wxDialog (
-               cp->window(),
-               wxID_ANY,
-               _("Timeline"),
-               wxDefaultPosition,
-               wxSize (640, 512),
-#ifdef DCPOMATIC_OSX
-               /* I can't get wxFRAME_FLOAT_ON_PARENT to work on OS X, and although wxSTAY_ON_TOP keeps
-                  the window above all others (and not just our own) it's better than nothing for now.
-               */
-               wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE | wxSTAY_ON_TOP
-#else
-               wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE | wxFRAME_FLOAT_ON_PARENT
-#endif
-               )
-       , _film (film)
-       , _timeline (this, cp, film, viewer)
-{
-       auto sizer = new wxBoxSizer (wxVERTICAL);
-
-       wxBitmap select(icon_path("select"), wxBITMAP_TYPE_PNG);
-       wxBitmap zoom(icon_path("zoom"), wxBITMAP_TYPE_PNG);
-       wxBitmap zoom_all(icon_path("zoom_all"), wxBITMAP_TYPE_PNG);
-       wxBitmap snap(icon_path("snap"), wxBITMAP_TYPE_PNG);
-       wxBitmap sequence(icon_path("sequence"), wxBITMAP_TYPE_PNG);
-
-       _toolbar = new wxToolBar (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL);
-       _toolbar->SetMargins (4, 4);
-       _toolbar->SetToolBitmapSize (wxSize(32, 32));
-       _toolbar->AddRadioTool(static_cast<int>(ContentTimeline::SELECT), _("Select"), select, wxNullBitmap, _("Select and move content"));
-       _toolbar->AddRadioTool(static_cast<int>(ContentTimeline::ZOOM), _("Zoom"), zoom, wxNullBitmap, _("Zoom in / out"));
-       _toolbar->AddTool(static_cast<int>(ContentTimeline::ZOOM_ALL), _("Zoom all"), zoom_all, _("Zoom out to whole film"));
-       _toolbar->AddCheckTool(static_cast<int>(ContentTimeline::SNAP), _("Snap"), snap, wxNullBitmap, _("Snap"));
-       _toolbar->AddCheckTool(static_cast<int>(ContentTimeline::SEQUENCE), _("Sequence"), sequence, wxNullBitmap, _("Keep video and subtitles in sequence"));
-       _toolbar->Realize ();
-
-       _toolbar->Bind (wxEVT_TOOL, bind (&TimelineDialog::tool_clicked, this, _1));
-
-       sizer->Add (_toolbar, 0, wxALL, 12);
-       sizer->Add (&_timeline, 1, wxEXPAND | wxALL, 12);
-
-#ifdef DCPOMATIC_LINUX
-       auto buttons = CreateSeparatedButtonSizer (wxCLOSE);
-       if (buttons) {
-               sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
-       }
-#endif
-
-       SetSizer (sizer);
-       sizer->Layout ();
-       sizer->SetSizeHints (this);
-
-       Bind(wxEVT_CHAR_HOOK, boost::bind(&TimelineDialog::keypress, this, _1));
-
-        _toolbar->ToggleTool(static_cast<int>(ContentTimeline::SNAP), _timeline.snap ());
-       film_change(ChangeType::DONE, FilmProperty::SEQUENCE);
-
-       _film_changed_connection = film->Change.connect (bind (&TimelineDialog::film_change, this, _1, _2));
-}
-
-
-void
-TimelineDialog::film_change(ChangeType type, FilmProperty p)
-{
-       if (type != ChangeType::DONE) {
-               return;
-       }
-
-       auto film = _film.lock ();
-       if (!film) {
-               return;
-       }
-
-       if (p == FilmProperty::SEQUENCE) {
-               _toolbar->ToggleTool(static_cast<int>(ContentTimeline::SEQUENCE), film->sequence());
-       }
-}
-
-
-void
-TimelineDialog::set_selection (ContentList selection)
-{
-       _timeline.set_selection (selection);
-}
-
-
-void
-TimelineDialog::tool_clicked (wxCommandEvent& ev)
-{
-       auto t = static_cast<ContentTimeline::Tool>(ev.GetId());
-       _timeline.tool_clicked (t);
-       if (t == ContentTimeline::SNAP) {
-               _timeline.set_snap (_toolbar->GetToolState(static_cast<int>(t)));
-       } else if (t == ContentTimeline::SEQUENCE) {
-               auto film = _film.lock ();
-               if (film) {
-                       film->set_sequence (_toolbar->GetToolState(static_cast<int>(t)));
-               }
-       }
-}
-
-
-void
-TimelineDialog::keypress(wxKeyEvent const& event)
-{
-       _timeline.keypress(event);
-}
diff --git a/src/wx/timeline_dialog.h b/src/wx/timeline_dialog.h
deleted file mode 100644 (file)
index d2821c2..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
-    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
-
-    This file is part of DCP-o-matic.
-
-    DCP-o-matic is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    DCP-o-matic is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
-
-*/
-
-
-#include "content_timeline.h"
-#include <dcp/warnings.h>
-LIBDCP_DISABLE_WARNINGS
-#include <wx/wx.h>
-LIBDCP_ENABLE_WARNINGS
-
-
-class Playlist;
-
-
-class TimelineDialog : public wxDialog
-{
-public:
-       TimelineDialog(ContentPanel *, std::shared_ptr<Film>, FilmViewer& viewer);
-
-       void set_selection (ContentList selection);
-
-private:
-       void film_change(ChangeType type, FilmProperty);
-       void tool_clicked (wxCommandEvent& id);
-       void keypress(wxKeyEvent const& event);
-
-       std::weak_ptr<Film> _film;
-       ContentTimeline _timeline;
-       wxToolBar* _toolbar;
-       boost::signals2::scoped_connection _film_changed_connection;
-};
index 2693bfa57d91d44c0f28c0999dd5640856bacb8c..d6f1536e9b43080717e2221a3244a2fbcb45967d 100644 (file)
@@ -49,6 +49,7 @@ sources = """
           content_properties_dialog.cc
           content_sub_panel.cc
           content_timeline.cc
+          content_timeline_dialog.cc
           content_timeline_view.cc
           content_version_dialog.cc
           content_view.cc
@@ -165,7 +166,6 @@ sources = """
           timeline.cc
           timeline_atmos_content_view.cc
           timeline_content_view.cc
-          timeline_dialog.cc
           timeline_audio_content_view.cc
           timeline_labels_view.cc
           timeline_text_content_view.cc