Move bitmap_path() to wx_util.{cc,h}
[dcpomatic.git] / src / wx / timeline_dialog.cc
index 76a2c45e61e33a092d7b7e2b2df84b584f5355b2..0d0d4f9f98facbe2fcfc33db4c0debb33cbdc419 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
-#include <list>
-#include <wx/graphics.h>
-#include "lib/playlist.h"
 #include "film_editor.h"
 #include "timeline_dialog.h"
 #include "wx_util.h"
 #include "content_panel.h"
+#include "lib/playlist.h"
+#include "lib/cross.h"
+#include "lib/compose.hpp"
+#include <wx/graphics.h>
 #include <iostream>
+#include <list>
 
 using std::list;
 using std::cout;
+using std::string;
 using boost::shared_ptr;
+using boost::weak_ptr;
 
-TimelineDialog::TimelineDialog (ContentPanel* cp, shared_ptr<Film> film)
+TimelineDialog::TimelineDialog (ContentPanel* cp, shared_ptr<Film> film, weak_ptr<FilmViewer> viewer)
        : wxDialog (
-               cp->panel(),
+               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)
+       , _timeline (this, cp, film, viewer)
 {
        wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
 
-       wxBoxSizer* controls = new wxBoxSizer (wxHORIZONTAL);
-       _snap = new wxCheckBox (this, wxID_ANY, _("Snap"));
-       controls->Add (_snap);
-       _sequence = new wxCheckBox (this, wxID_ANY, _("Keep video and subtitles in sequence"));
-       controls->Add (_sequence, 1, wxLEFT, 12);
+       wxBitmap select (bitmap_path("select"), wxBITMAP_TYPE_PNG);
+       wxBitmap zoom (bitmap_path("zoom"), wxBITMAP_TYPE_PNG);
+       wxBitmap zoom_all (bitmap_path("zoom_all"), wxBITMAP_TYPE_PNG);
+       wxBitmap snap (bitmap_path("snap"), wxBITMAP_TYPE_PNG);
+       wxBitmap sequence (bitmap_path("sequence"), wxBITMAP_TYPE_PNG);
+
+       _toolbar = new wxToolBar (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL);
+       _toolbar->SetMargins (4, 4);
+       _toolbar->AddRadioTool ((int) Timeline::SELECT, _("Select"), select, wxNullBitmap, _("Select and move content"));
+       _toolbar->AddRadioTool ((int) Timeline::ZOOM, _("Zoom"), zoom, wxNullBitmap, _("Zoom in / out"));
+       _toolbar->AddTool ((int) Timeline::ZOOM_ALL, _("Zoom all"), zoom_all, _("Zoom out to whole film"));
+       _toolbar->AddCheckTool ((int) Timeline::SNAP, _("Snap"), snap, wxNullBitmap, _("Snap"));
+       _toolbar->AddCheckTool ((int) Timeline::SEQUENCE, _("Sequence"), sequence, wxNullBitmap, _("Keep video and subtitles in sequence"));
+       _toolbar->Realize ();
+
+       _toolbar->Bind (wxEVT_TOOL, bind (&TimelineDialog::tool_clicked, this, _1));
 
-       sizer->Add (controls, 0, wxALL, 12);
+       sizer->Add (_toolbar, 0, wxALL, 12);
        sizer->Add (&_timeline, 1, wxEXPAND | wxALL, 12);
 
 #ifdef DCPOMATIC_LINUX
@@ -65,41 +87,26 @@ TimelineDialog::TimelineDialog (ContentPanel* cp, shared_ptr<Film> film)
        sizer->Layout ();
        sizer->SetSizeHints (this);
 
-       _snap->SetValue (_timeline.snap ());
-       _snap->Bind (wxEVT_COMMAND_CHECKBOX_CLICKED, boost::bind (&TimelineDialog::snap_toggled, this));
-       film_changed (Film::SEQUENCE);
-       _sequence->Bind (wxEVT_COMMAND_CHECKBOX_CLICKED, boost::bind (&TimelineDialog::sequence_toggled, this));
+        _toolbar->ToggleTool ((int) Timeline::SNAP, _timeline.snap ());
+       film_change (CHANGE_TYPE_DONE, Film::SEQUENCE);
 
-       _film_changed_connection = film->Changed.connect (bind (&TimelineDialog::film_changed, this, _1));
-}
-
-void
-TimelineDialog::snap_toggled ()
-{
-       _timeline.set_snap (_snap->GetValue ());
+       _film_changed_connection = film->Change.connect (bind (&TimelineDialog::film_change, this, _1, _2));
 }
 
 void
-TimelineDialog::sequence_toggled ()
+TimelineDialog::film_change (ChangeType type, Film::Property p)
 {
-       shared_ptr<Film> film = _film.lock ();
-       if (!film) {
+       if (type != CHANGE_TYPE_DONE) {
                return;
        }
 
-       film->set_sequence (_sequence->GetValue ());
-}
-
-void
-TimelineDialog::film_changed (Film::Property p)
-{
        shared_ptr<Film> film = _film.lock ();
        if (!film) {
                return;
        }
 
        if (p == Film::SEQUENCE) {
-               _sequence->SetValue (film->sequence ());
+               _toolbar->ToggleTool ((int) Timeline::SEQUENCE, film->sequence ());
        }
 }
 
@@ -108,3 +115,18 @@ TimelineDialog::set_selection (ContentList selection)
 {
        _timeline.set_selection (selection);
 }
+
+void
+TimelineDialog::tool_clicked (wxCommandEvent& ev)
+{
+       Timeline::Tool t = (Timeline::Tool) ev.GetId();
+       _timeline.tool_clicked (t);
+       if (t == Timeline::SNAP) {
+               _timeline.set_snap (_toolbar->GetToolState ((int) t));
+       } else if (t == Timeline::SEQUENCE) {
+               shared_ptr<Film> film = _film.lock ();
+               if (film) {
+                       film->set_sequence (_toolbar->GetToolState ((int) t));
+               }
+       }
+}