summaryrefslogtreecommitdiff
path: root/src/wx/hints_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-02-01 23:26:09 +0100
committerCarl Hetherington <cth@carlh.net>2025-02-02 12:59:34 +0100
commit941eeb3ab5dbf0bbc23f60b43d9361b7b52969a5 (patch)
tree0705a2926543b917e156ab8f1232c2ec6bfb11c6 /src/wx/hints_dialog.cc
parent7536019a318b3db7c6cc1dd5d1fd695cef89c9b6 (diff)
White space: config.{cc,h} player.{cc,h} about_dialog.{cc,h} hints_dialog.{cc,h}
Diffstat (limited to 'src/wx/hints_dialog.cc')
-rw-r--r--src/wx/hints_dialog.cc122
1 files changed, 61 insertions, 61 deletions
diff --git a/src/wx/hints_dialog.cc b/src/wx/hints_dialog.cc
index 65a594ef8..974d6f4cf 100644
--- a/src/wx/hints_dialog.cc
+++ b/src/wx/hints_dialog.cc
@@ -45,30 +45,30 @@ using namespace boost::placeholders;
#endif
-HintsDialog::HintsDialog (wxWindow* parent, std::weak_ptr<Film> film, bool ok)
- : wxDialog (parent, wxID_ANY, _("Hints"))
- , _film (film)
- , _hints (0)
- , _finished (false)
+HintsDialog::HintsDialog(wxWindow* parent, std::weak_ptr<Film> film, bool ok)
+ : wxDialog(parent, wxID_ANY, _("Hints"))
+ , _film(film)
+ , _hints(0)
+ , _finished(false)
{
- auto sizer = new wxBoxSizer (wxVERTICAL);
+ auto sizer = new wxBoxSizer(wxVERTICAL);
- _gauge = new wxGauge (this, wxID_ANY, 100);
- sizer->Add (_gauge, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
+ _gauge = new wxGauge(this, wxID_ANY, 100);
+ sizer->Add(_gauge, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
_gauge_message = new StaticText(this, {});
- sizer->Add (_gauge_message, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
+ sizer->Add(_gauge_message, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
- _text = new wxRichTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (400, 300), wxRE_READONLY);
- sizer->Add (_text, 1, wxEXPAND | wxALL, 6);
+ _text = new wxRichTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(400, 300), wxRE_READONLY);
+ sizer->Add(_text, 1, wxEXPAND | wxALL, 6);
if (!ok) {
auto b = new CheckBox(this, _("Don't show hints again"));
- sizer->Add (b, 0, wxALL, 6);
+ sizer->Add(b, 0, wxALL, 6);
b->bind(&HintsDialog::shut_up, this, _1);
}
- auto buttons = CreateStdDialogButtonSizer (0);
- sizer->Add (CreateSeparatedSizer(buttons), wxSizerFlags().Expand().DoubleBorder());
+ auto buttons = CreateStdDialogButtonSizer(0);
+ sizer->Add(CreateSeparatedSizer(buttons), wxSizerFlags().Expand().DoubleBorder());
wxButton* default_button = nullptr;
if (ok) {
default_button = new wxButton(this, wxID_OK);
@@ -76,122 +76,122 @@ HintsDialog::HintsDialog (wxWindow* parent, std::weak_ptr<Film> film, bool ok)
} else {
default_button = new wxButton(this, wxID_OK, _("Make DCP"));
buttons->SetAffirmativeButton(default_button);
- buttons->SetNegativeButton (new wxButton (this, wxID_CANCEL, _("Go back")));
+ buttons->SetNegativeButton(new wxButton(this, wxID_CANCEL, _("Go back")));
}
- buttons->Realize ();
+ buttons->Realize();
default_button->SetFocus();
- SetSizer (sizer);
- sizer->Layout ();
- sizer->SetSizeHints (this);
+ SetSizer(sizer);
+ sizer->Layout();
+ sizer->SetSizeHints(this);
- _text->GetCaret()->Hide ();
+ _text->GetCaret()->Hide();
- auto locked_film = _film.lock ();
+ auto locked_film = _film.lock();
if (locked_film) {
- _film_change_connection = locked_film->Change.connect (boost::bind (&HintsDialog::film_change, this, _1));
- _film_content_change_connection = locked_film->ContentChange.connect (boost::bind (&HintsDialog::film_content_change, this, _1));
+ _film_change_connection = locked_film->Change.connect(boost::bind(&HintsDialog::film_change, this, _1));
+ _film_content_change_connection = locked_film->ContentChange.connect(boost::bind(&HintsDialog::film_content_change, this, _1));
}
- film_change (ChangeType::DONE);
+ film_change(ChangeType::DONE);
}
void
-HintsDialog::film_change (ChangeType type)
+HintsDialog::film_change(ChangeType type)
{
if (type != ChangeType::DONE) {
return;
}
- _text->Clear ();
- _current.clear ();
+ _text->Clear();
+ _current.clear();
- auto film = _film.lock ();
+ auto film = _film.lock();
if (!film) {
return;
}
- _gauge->Show ();
- _gauge_message->Show ();
- Layout ();
- _gauge->SetValue (0);
- update ();
+ _gauge->Show();
+ _gauge_message->Show();
+ Layout();
+ _gauge->SetValue(0);
+ update();
_finished = false;
- _hints.reset (new Hints (_film));
+ _hints.reset(new Hints(_film));
_hints_hint_connection = _hints->Hint.connect(bind(&HintsDialog::hint, this, _1));
_hints_progress_connection = _hints->Progress.connect(bind(&HintsDialog::progress, this, _1));
_hints_pulse_connection = _hints->Pulse.connect(bind(&HintsDialog::pulse, this));
_hints_finished_connection = _hints->Finished.connect(bind(&HintsDialog::finished, this));
- _hints->start ();
+ _hints->start();
}
void
-HintsDialog::film_content_change (ChangeType type)
+HintsDialog::film_content_change(ChangeType type)
{
- film_change (type);
+ film_change(type);
}
void
-HintsDialog::update ()
+HintsDialog::update()
{
- _text->Clear ();
- if (_current.empty ()) {
+ _text->Clear();
+ if (_current.empty()) {
if (_finished) {
- _text->WriteText (_("There are no hints: everything looks good!"));
+ _text->WriteText(_("There are no hints: everything looks good!"));
} else {
- _text->WriteText (_("There are no hints yet: project check in progress."));
+ _text->WriteText(_("There are no hints yet: project check in progress."));
}
} else {
_text->BeginStandardBullet(char_to_wx("standard/circle"), 1, 50);
for (auto i: _current) {
- _text->WriteText (std_to_wx (i));
- _text->Newline ();
+ _text->WriteText(std_to_wx(i));
+ _text->Newline();
}
- _text->EndSymbolBullet ();
+ _text->EndSymbolBullet();
}
}
void
-HintsDialog::hint (string text)
+HintsDialog::hint(string text)
{
- _current.push_back (text);
- update ();
+ _current.push_back(text);
+ update();
}
void
-HintsDialog::shut_up (wxCommandEvent& ev)
+HintsDialog::shut_up(wxCommandEvent& ev)
{
- Config::instance()->set_show_hints_before_make_dcp (!ev.IsChecked());
+ Config::instance()->set_show_hints_before_make_dcp(!ev.IsChecked());
}
void
-HintsDialog::pulse ()
+HintsDialog::pulse()
{
- _gauge->Pulse ();
+ _gauge->Pulse();
}
void
-HintsDialog::finished ()
+HintsDialog::finished()
{
try {
- _hints->rethrow ();
+ _hints->rethrow();
} catch (std::exception& e) {
- error_dialog (this, wxString::Format(_("A problem occurred when looking for hints (%s)"), std_to_wx(e.what())));
+ error_dialog(this, wxString::Format(_("A problem occurred when looking for hints (%s)"), std_to_wx(e.what())));
}
_finished = true;
- update ();
- _gauge->Hide ();
- _gauge_message->Hide ();
- Layout ();
+ update();
+ _gauge->Hide();
+ _gauge_message->Hide();
+ Layout();
}
void
-HintsDialog::progress (string m)
+HintsDialog::progress(string m)
{
- _gauge_message->SetLabel (std_to_wx(m));
+ _gauge_message->SetLabel(std_to_wx(m));
}