Supporters update.
[dcpomatic.git] / src / wx / move_to_dialog.cc
1 /*
2     Copyright (C) 2016-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 "move_to_dialog.h"
23 #include "lib/film.h"
24 #include <dcp/warnings.h>
25 LIBDCP_DISABLE_WARNINGS
26 #include <wx/spinctrl.h>
27 LIBDCP_ENABLE_WARNINGS
28
29
30 using std::list;
31 using std::shared_ptr;
32 using boost::optional;
33 using namespace dcpomatic;
34
35
36 MoveToDialog::MoveToDialog (wxWindow* parent, optional<DCPTime> position, shared_ptr<const Film> film)
37         : TableDialog (parent, _("Move content"), 2, 0, true)
38         , _film (film)
39 {
40         add (_("Start of reel"), true);
41         _reel = new wxSpinCtrl (this, wxID_ANY);
42         _reel->SetRange (1, film->reels().size());
43         add (_reel);
44
45         layout ();
46
47         if (position) {
48                 int j = 0;
49                 for (auto i: film->reels()) {
50                         if (i.from == position.get()) {
51                                 _reel->SetValue (j + 1);
52                         }
53                         ++j;
54                 }
55         }
56 }
57
58
59 DCPTime
60 MoveToDialog::position () const
61 {
62         auto film = _film.lock ();
63         DCPOMATIC_ASSERT (film);
64         auto reels = film->reels ();
65         auto i = reels.begin ();
66         for (int j = 0; j < _reel->GetValue() - 1; ++j) {
67                 DCPOMATIC_ASSERT (i != reels.end());
68                 ++i;
69         }
70
71         DCPOMATIC_ASSERT (i != reels.end());
72         return i->from;
73 }