Add search button to screens panel.
[dcpomatic.git] / src / wx / self_dkdm_dialog.cc
1 /*
2     Copyright (C) 2012-2015 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 "self_dkdm_dialog.h"
21 #include "wx_util.h"
22 #include "kdm_output_panel.h"
23 #include "kdm_cpl_panel.h"
24 #include "lib/film.h"
25 #include "lib/screen.h"
26 #include <libcxml/cxml.h>
27 #ifdef DCPOMATIC_USE_OWN_PICKER
28 #include "dir_picker_ctrl.h"
29 #else
30 #include <wx/filepicker.h>
31 #endif
32 #include <wx/treectrl.h>
33 #include <wx/listctrl.h>
34 #include <wx/stdpaths.h>
35 #include <iostream>
36
37 using std::string;
38 using std::map;
39 using std::list;
40 using std::pair;
41 using std::cout;
42 using std::vector;
43 using std::make_pair;
44 using boost::shared_ptr;
45
46 SelfDKDMDialog::SelfDKDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
47         : wxDialog (parent, wxID_ANY, _("Make DKDM for DCP-o-matic"))
48 {
49         /* Main sizer */
50         wxBoxSizer* vertical = new wxBoxSizer (wxVERTICAL);
51
52         /* Font for sub-headings */
53         wxFont subheading_font (*wxNORMAL_FONT);
54         subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
55
56         /* Sub-heading: CPL */
57         wxStaticText* h = new wxStaticText (this, wxID_ANY, _("CPL"));
58         h->SetFont (subheading_font);
59         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_Y_GAP * 2);
60         _cpl = new KDMCPLPanel (this, film->cpls ());
61         vertical->Add (_cpl);
62
63         /* Sub-heading: Output */
64         h = new wxStaticText (this, wxID_ANY, _("Output"));
65         h->SetFont (subheading_font);
66         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
67
68         wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
69
70         add_label_to_sizer (table, this, _("Write to"), true);
71
72 #ifdef DCPOMATIC_USE_OWN_PICKER
73         _folder = new DirPickerCtrl (this);
74 #else
75         _folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1));
76 #endif
77
78         _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir());
79
80         table->Add (_folder, 1, wxEXPAND);
81
82         vertical->Add (table);
83
84         /* Make an overall sizer to get a nice border, and put some buttons in */
85
86         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
87         overall_sizer->Add (vertical, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
88
89         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
90         if (buttons) {
91                 overall_sizer->Add (buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
92         }
93
94         setup_sensitivity ();
95
96         SetSizer (overall_sizer);
97         overall_sizer->Layout ();
98         overall_sizer->SetSizeHints (this);
99 }
100
101 void
102 SelfDKDMDialog::setup_sensitivity ()
103 {
104         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
105         if (ok) {
106                 ok->Enable (_cpl->has_selected ());
107         }
108 }
109
110 boost::filesystem::path
111 SelfDKDMDialog::cpl () const
112 {
113         return _cpl->cpl ();
114 }
115
116 boost::filesystem::path
117 SelfDKDMDialog::directory () const
118 {
119         return wx_to_std (_folder->GetPath ());
120 }