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