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