Tidying.
[dcpomatic.git] / src / wx / timeline_dialog.cc
1 /*
2     Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "content_panel.h"
23 #include "film_editor.h"
24 #include "timeline_dialog.h"
25 #include "wx_util.h"
26 #include "lib/compose.hpp"
27 #include "lib/cross.h"
28 #include "lib/playlist.h"
29 #include <wx/graphics.h>
30 #include <list>
31
32
33 using std::list;
34 using std::shared_ptr;
35 using std::string;
36 using std::weak_ptr;
37 #if BOOST_VERSION >= 106100
38 using namespace boost::placeholders;
39 #endif
40
41
42 TimelineDialog::TimelineDialog (ContentPanel* cp, shared_ptr<Film> film, weak_ptr<FilmViewer> viewer)
43         : wxDialog (
44                 cp->window(),
45                 wxID_ANY,
46                 _("Timeline"),
47                 wxDefaultPosition,
48                 wxSize (640, 512),
49 #ifdef DCPOMATIC_OSX
50                 /* I can't get wxFRAME_FLOAT_ON_PARENT to work on OS X, and although wxSTAY_ON_TOP keeps
51                    the window above all others (and not just our own) it's better than nothing for now.
52                 */
53                 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE | wxSTAY_ON_TOP
54 #else
55                 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxFULL_REPAINT_ON_RESIZE | wxFRAME_FLOAT_ON_PARENT
56 #endif
57                 )
58         , _film (film)
59         , _timeline (this, cp, film, viewer)
60 {
61         auto sizer = new wxBoxSizer (wxVERTICAL);
62
63         wxBitmap select (bitmap_path("select"), wxBITMAP_TYPE_PNG);
64         wxBitmap zoom (bitmap_path("zoom"), wxBITMAP_TYPE_PNG);
65         wxBitmap zoom_all (bitmap_path("zoom_all"), wxBITMAP_TYPE_PNG);
66         wxBitmap snap (bitmap_path("snap"), wxBITMAP_TYPE_PNG);
67         wxBitmap sequence (bitmap_path("sequence"), wxBITMAP_TYPE_PNG);
68
69         _toolbar = new wxToolBar (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL);
70         _toolbar->SetMargins (4, 4);
71         _toolbar->SetToolBitmapSize (wxSize(32, 32));
72         _toolbar->AddRadioTool ((int) Timeline::SELECT, _("Select"), select, wxNullBitmap, _("Select and move content"));
73         _toolbar->AddRadioTool ((int) Timeline::ZOOM, _("Zoom"), zoom, wxNullBitmap, _("Zoom in / out"));
74         _toolbar->AddTool ((int) Timeline::ZOOM_ALL, _("Zoom all"), zoom_all, _("Zoom out to whole film"));
75         _toolbar->AddCheckTool ((int) Timeline::SNAP, _("Snap"), snap, wxNullBitmap, _("Snap"));
76         _toolbar->AddCheckTool ((int) Timeline::SEQUENCE, _("Sequence"), sequence, wxNullBitmap, _("Keep video and subtitles in sequence"));
77         _toolbar->Realize ();
78
79         _toolbar->Bind (wxEVT_TOOL, bind (&TimelineDialog::tool_clicked, this, _1));
80
81         sizer->Add (_toolbar, 0, wxALL, 12);
82         sizer->Add (&_timeline, 1, wxEXPAND | wxALL, 12);
83
84 #ifdef DCPOMATIC_LINUX
85         auto buttons = CreateSeparatedButtonSizer (wxCLOSE);
86         if (buttons) {
87                 sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
88         }
89 #endif
90
91         SetSizer (sizer);
92         sizer->Layout ();
93         sizer->SetSizeHints (this);
94
95         _toolbar->ToggleTool ((int) Timeline::SNAP, _timeline.snap ());
96         film_change (ChangeType::DONE, Film::Property::SEQUENCE);
97
98         _film_changed_connection = film->Change.connect (bind (&TimelineDialog::film_change, this, _1, _2));
99 }
100
101
102 void
103 TimelineDialog::film_change (ChangeType type, Film::Property p)
104 {
105         if (type != ChangeType::DONE) {
106                 return;
107         }
108
109         auto film = _film.lock ();
110         if (!film) {
111                 return;
112         }
113
114         if (p == Film::Property::SEQUENCE) {
115                 _toolbar->ToggleTool ((int) Timeline::SEQUENCE, film->sequence ());
116         }
117 }
118
119
120 void
121 TimelineDialog::set_selection (ContentList selection)
122 {
123         _timeline.set_selection (selection);
124 }
125
126
127 void
128 TimelineDialog::tool_clicked (wxCommandEvent& ev)
129 {
130         Timeline::Tool t = static_cast<Timeline::Tool>(ev.GetId());
131         _timeline.tool_clicked (t);
132         if (t == Timeline::SNAP) {
133                 _timeline.set_snap (_toolbar->GetToolState(static_cast<int>(t)));
134         } else if (t == Timeline::SEQUENCE) {
135                 auto film = _film.lock ();
136                 if (film) {
137                         film->set_sequence (_toolbar->GetToolState(static_cast<int>(t)));
138                 }
139         }
140 }