Merge master.
[dcpomatic.git] / src / wx / dcp_range_dialog.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "lib/film.h"
21 #include "dcp_range_dialog.h"
22 #include "wx_util.h"
23
24 using boost::shared_ptr;
25
26 DCPRangeDialog::DCPRangeDialog (wxWindow* p, shared_ptr<Film> f)
27         : wxDialog (p, wxID_ANY, wxString (_("DCP Range")))
28         , _film (f)
29 {
30         wxFlexGridSizer* table = new wxFlexGridSizer (3, 6, 6);
31
32         add_label_to_sizer (table, this, "Trim start");
33         _trim_start = new wxSpinCtrl (this, wxID_ANY);
34         table->Add (_trim_start, 1);
35         add_label_to_sizer (table, this, "frames");
36
37         add_label_to_sizer (table, this, "Trim end");
38         _trim_end = new wxSpinCtrl (this, wxID_ANY);
39         table->Add (_trim_end, 1);
40         add_label_to_sizer (table, this, "frames");
41
42         _trim_start->SetValue (_film->dcp_trim_start());
43         _trim_end->SetValue (_film->dcp_trim_end());
44
45         _trim_start->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (DCPRangeDialog::emit_changed), 0, this);
46         _trim_end->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (DCPRangeDialog::emit_changed), 0, this);
47
48         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
49         overall_sizer->Add (table, 0, wxALL, 6);
50         
51         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
52         if (buttons) {
53                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
54         }
55
56         SetSizer (overall_sizer);
57         overall_sizer->SetSizeHints (this);
58 }
59
60 void
61 DCPRangeDialog::emit_changed (wxCommandEvent &)
62 {
63         Changed (_trim_start->GetValue(), _trim_end->GetValue());
64 }