Tweak message now that hints dialog is shown even when there are no hints.
[dcpomatic.git] / src / wx / hints_dialog.cc
1 /*
2     Copyright (C) 2012-2018 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 "hints_dialog.h"
22 #include "wx_util.h"
23 #include "lib/film.h"
24 #include "lib/hints.h"
25 #include "lib/config.h"
26 #include <wx/richtext/richtextctrl.h>
27 #include <boost/foreach.hpp>
28
29 using std::max;
30 using std::vector;
31 using std::string;
32 using std::cout;
33 using boost::shared_ptr;
34 using boost::optional;
35 using boost::bind;
36 using boost::dynamic_pointer_cast;
37
38 HintsDialog::HintsDialog (wxWindow* parent, boost::weak_ptr<Film> film, bool ok)
39         : wxDialog (parent, wxID_ANY, _("Hints"))
40         , _film (film)
41         , _hints (new Hints (film))
42 {
43         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
44
45         _gauge = new wxGauge (this, wxID_ANY, 100);
46         sizer->Add (_gauge, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
47         _gauge_message = new wxStaticText (this, wxID_ANY, wxT(""));
48         sizer->Add (_gauge_message, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
49
50         _text = new wxRichTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (400, 300), wxRE_READONLY);
51         sizer->Add (_text, 1, wxEXPAND | wxALL, 6);
52
53         if (!ok) {
54                 wxCheckBox* b = new wxCheckBox (this, wxID_ANY, _("Don't show hints again"));
55                 sizer->Add (b, 0, wxALL, 6);
56                 b->Bind (wxEVT_CHECKBOX, bind (&HintsDialog::shut_up, this, _1));
57         }
58
59         wxStdDialogButtonSizer* buttons = CreateStdDialogButtonSizer (0);
60         sizer->Add (CreateSeparatedSizer(buttons), wxSizerFlags().Expand().DoubleBorder());
61         if (ok) {
62                 buttons->SetAffirmativeButton (new wxButton (this, wxID_OK));
63         } else {
64                 buttons->SetAffirmativeButton (new wxButton (this, wxID_OK, _("Make DCP")));
65                 buttons->SetNegativeButton (new wxButton (this, wxID_CANCEL, _("Go back")));
66         }
67
68         buttons->Realize ();
69
70         SetSizer (sizer);
71         sizer->Layout ();
72         sizer->SetSizeHints (this);
73
74         _text->GetCaret()->Hide ();
75
76         boost::shared_ptr<Film> locked_film = _film.lock ();
77         if (locked_film) {
78                 _film_changed_connection = locked_film->Changed.connect (boost::bind (&HintsDialog::film_changed, this));
79                 _film_content_changed_connection = locked_film->ContentChanged.connect (boost::bind (&HintsDialog::film_changed, this));
80         }
81
82         _hints->Hint.connect (bind (&HintsDialog::hint, this, _1));
83         _hints->Progress.connect (bind (&HintsDialog::progress, this, _1));
84         _hints->Pulse.connect (bind (&HintsDialog::pulse, this));
85         _hints->Finished.connect (bind (&HintsDialog::finished, this));
86
87         film_changed ();
88 }
89
90 void
91 HintsDialog::film_changed ()
92 {
93         _text->Clear ();
94         _current.clear ();
95
96         boost::shared_ptr<Film> film = _film.lock ();
97         if (!film) {
98                 return;
99         }
100
101         _gauge->Show ();
102         _gauge_message->Show ();
103         Layout ();
104         _gauge->SetValue (0);
105         update ();
106         _hints->start ();
107 }
108
109 void
110 HintsDialog::update ()
111 {
112         _text->Clear ();
113         if (_current.empty ()) {
114                 _text->WriteText (_("There are no hints: everything looks good!"));
115         } else {
116                 _text->BeginStandardBullet (N_("standard/circle"), 1, 50);
117                 BOOST_FOREACH (string i, _current) {
118                         _text->WriteText (std_to_wx (i));
119                         _text->Newline ();
120                 }
121                 _text->EndSymbolBullet ();
122         }
123 }
124
125 void
126 HintsDialog::hint (string text)
127 {
128         _current.push_back (text);
129         update ();
130 }
131
132 void
133 HintsDialog::shut_up (wxCommandEvent& ev)
134 {
135         Config::instance()->set_show_hints_before_make_dcp (!ev.IsChecked());
136 }
137
138 void
139 HintsDialog::pulse ()
140 {
141         _gauge->Pulse ();
142 }
143
144 void
145 HintsDialog::finished ()
146 {
147         _gauge->Hide ();
148         _gauge_message->Hide ();
149         Layout ();
150 }
151
152 void
153 HintsDialog::progress (string m)
154 {
155         _gauge_message->SetLabel (std_to_wx(m));
156 }