Rename _size -> _video_size
[dcpomatic.git] / src / wx / hints_dialog.cc
1 /*
2     Copyright (C) 2012-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 "hints_dialog.h"
23 #include "wx_util.h"
24 #include "static_text.h"
25 #include "check_box.h"
26 #include "lib/film.h"
27 #include "lib/hints.h"
28 #include "lib/config.h"
29 #include "lib/warnings.h"
30 DCPOMATIC_DISABLE_WARNINGS
31 #include <wx/richtext/richtextctrl.h>
32 DCPOMATIC_ENABLE_WARNINGS
33
34
35 using std::max;
36 using std::vector;
37 using std::string;
38 using std::cout;
39 using std::shared_ptr;
40 using boost::optional;
41 using boost::bind;
42 using std::dynamic_pointer_cast;
43 #if BOOST_VERSION >= 106100
44 using namespace boost::placeholders;
45 #endif
46
47
48 HintsDialog::HintsDialog (wxWindow* parent, std::weak_ptr<Film> film, bool ok)
49         : wxDialog (parent, wxID_ANY, _("Hints"))
50         , _film (film)
51         , _hints (0)
52         , _finished (false)
53 {
54         auto sizer = new wxBoxSizer (wxVERTICAL);
55
56         _gauge = new wxGauge (this, wxID_ANY, 100);
57         sizer->Add (_gauge, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
58         _gauge_message = new StaticText (this, wxT(""));
59         sizer->Add (_gauge_message, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
60
61         _text = new wxRichTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (400, 300), wxRE_READONLY);
62         sizer->Add (_text, 1, wxEXPAND | wxALL, 6);
63
64         if (!ok) {
65                 wxCheckBox* b = new CheckBox (this, _("Don't show hints again"));
66                 sizer->Add (b, 0, wxALL, 6);
67                 b->Bind (wxEVT_CHECKBOX, bind (&HintsDialog::shut_up, this, _1));
68         }
69
70         auto buttons = CreateStdDialogButtonSizer (0);
71         sizer->Add (CreateSeparatedSizer(buttons), wxSizerFlags().Expand().DoubleBorder());
72         if (ok) {
73                 buttons->SetAffirmativeButton (new wxButton (this, wxID_OK));
74         } else {
75                 buttons->SetAffirmativeButton (new wxButton (this, wxID_OK, _("Make DCP")));
76                 buttons->SetNegativeButton (new wxButton (this, wxID_CANCEL, _("Go back")));
77         }
78
79         buttons->Realize ();
80
81         SetSizer (sizer);
82         sizer->Layout ();
83         sizer->SetSizeHints (this);
84
85         _text->GetCaret()->Hide ();
86
87         auto locked_film = _film.lock ();
88         if (locked_film) {
89                 _film_change_connection = locked_film->Change.connect (boost::bind (&HintsDialog::film_change, this, _1));
90                 _film_content_change_connection = locked_film->ContentChange.connect (boost::bind (&HintsDialog::film_content_change, this, _1));
91         }
92
93         film_change (ChangeType::DONE);
94 }
95
96
97 void
98 HintsDialog::film_change (ChangeType type)
99 {
100         if (type != ChangeType::DONE) {
101                 return;
102         }
103
104         _text->Clear ();
105         _current.clear ();
106
107         auto film = _film.lock ();
108         if (!film) {
109                 return;
110         }
111
112         _gauge->Show ();
113         _gauge_message->Show ();
114         Layout ();
115         _gauge->SetValue (0);
116         update ();
117         _finished = false;
118
119         _hints.reset (new Hints (_film));
120         _hints_hint_connection = _hints->Hint.connect(bind(&HintsDialog::hint, this, _1));
121         _hints_progress_connection = _hints->Progress.connect(bind(&HintsDialog::progress, this, _1));
122         _hints_pulse_connection = _hints->Pulse.connect(bind(&HintsDialog::pulse, this));
123         _hints_finished_connection = _hints->Finished.connect(bind(&HintsDialog::finished, this));
124         _hints->start ();
125 }
126
127 void
128 HintsDialog::film_content_change (ChangeType type)
129 {
130         film_change (type);
131 }
132
133 void
134 HintsDialog::update ()
135 {
136         _text->Clear ();
137         if (_current.empty ()) {
138                 if (_finished) {
139                         _text->WriteText (_("There are no hints: everything looks good!"));
140                 } else {
141                         _text->WriteText (_("There are no hints yet: project check in progress."));
142                 }
143         } else {
144                 _text->BeginStandardBullet (N_("standard/circle"), 1, 50);
145                 for (auto i: _current) {
146                         _text->WriteText (std_to_wx (i));
147                         _text->Newline ();
148                 }
149                 _text->EndSymbolBullet ();
150         }
151 }
152
153 void
154 HintsDialog::hint (string text)
155 {
156         _current.push_back (text);
157         update ();
158 }
159
160 void
161 HintsDialog::shut_up (wxCommandEvent& ev)
162 {
163         Config::instance()->set_show_hints_before_make_dcp (!ev.IsChecked());
164 }
165
166 void
167 HintsDialog::pulse ()
168 {
169         _gauge->Pulse ();
170 }
171
172 void
173 HintsDialog::finished ()
174 {
175         try {
176                 _hints->rethrow ();
177         } catch (std::exception& e) {
178                 error_dialog (this, wxString::Format(_("A problem occurred when looking for hints (%s)"), std_to_wx(e.what())));
179         }
180
181         _finished = true;
182         update ();
183         _gauge->Hide ();
184         _gauge_message->Hide ();
185         Layout ();
186 }
187
188 void
189 HintsDialog::progress (string m)
190 {
191         _gauge_message->SetLabel (std_to_wx(m));
192 }