diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-20 08:38:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-22 09:56:55 +0100 |
| commit | d461d2685050842cb86875f5a5aa62505779b9ed (patch) | |
| tree | 04dc973c71ad70c8a9ada6b216079b666aa360d4 /src/wx | |
| parent | aed5d7b60b78ed6485f617dde4db9edca853d525 (diff) | |
Add simpler language tag dialog (#1931).
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/language_tag_dialog.cc | 146 | ||||
| -rw-r--r-- | src/wx/language_tag_dialog.h | 50 | ||||
| -rw-r--r-- | src/wx/language_tag_widget.cc | 4 | ||||
| -rw-r--r-- | src/wx/smpte_metadata_dialog.cc | 4 | ||||
| -rw-r--r-- | src/wx/smpte_metadata_dialog.h | 3 | ||||
| -rw-r--r-- | src/wx/wscript | 1 |
6 files changed, 203 insertions, 5 deletions
diff --git a/src/wx/language_tag_dialog.cc b/src/wx/language_tag_dialog.cc new file mode 100644 index 000000000..96e7c5283 --- /dev/null +++ b/src/wx/language_tag_dialog.cc @@ -0,0 +1,146 @@ +/* + Copyright (C) 2021 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + + +#include "full_language_tag_dialog.h" +#include "language_tag_dialog.h" +#include "wx_util.h" +#include "lib/config.h" +#include <wx/listctrl.h> +#include <wx/wx.h> +#include <dcp/language_tag.h> + + +using std::vector; + + +LanguageTagDialog::LanguageTagDialog (wxWindow* parent, dcp::LanguageTag tag) + : wxDialog (parent, wxID_ANY, _("Language Tag")) +{ + _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize(600, 700), wxLC_REPORT | wxLC_SINGLE_SEL | wxLC_NO_HEADER); + _list->AppendColumn ("", wxLIST_FORMAT_LEFT, 400); + _list->AppendColumn ("", wxLIST_FORMAT_LEFT, 150); + auto add = new wxButton (this, wxID_ANY, _("Add language...")); + + auto overall_sizer = new wxBoxSizer (wxVERTICAL); + overall_sizer->Add (_list, 0, wxALL, DCPOMATIC_SIZER_GAP); + overall_sizer->Add (add, 0, wxALL, DCPOMATIC_SIZER_GAP); + + auto buttons = CreateSeparatedButtonSizer (wxOK); + if (buttons) { + overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); + } + + SetSizerAndFit (overall_sizer); + + for (auto const& i: dcp::dcnc_tags()) { + _presets.push_back (dcp::LanguageTag(i.first)); + } + + std::sort (_presets.begin(), _presets.end(), [](dcp::LanguageTag const& i, dcp::LanguageTag const& j) { + return i.description() < j.description(); + }); + + _custom = Config::instance()->custom_languages (); + + populate_list (); + + set (tag); + + add->Bind (wxEVT_BUTTON, boost::bind(&LanguageTagDialog::add_language, this)); +} + + +void +LanguageTagDialog::add_language () +{ + auto full = new FullLanguageTagDialog (GetParent()); + auto r = full->ShowModal (); + if (r == wxID_OK) { + Config::instance()->add_custom_language (full->get()); + set (full->get()); + } + full->Destroy (); +} + + +void +LanguageTagDialog::populate_list () +{ + _list->DeleteAllItems (); + + auto add = [this](vector<dcp::LanguageTag> const& tags) { + for (auto const& i: tags) { + wxListItem it; + it.SetId (_list->GetItemCount()); + it.SetColumn (0); + it.SetText (std_to_wx(i.description())); + _list->InsertItem (it); + it.SetColumn (1); + it.SetText (std_to_wx(i.to_string())); + _list->SetItem (it); + } + }; + + add (_presets); + add (_custom); +} + + +void +LanguageTagDialog::set (dcp::LanguageTag tag) +{ + size_t selection = 0; + + auto iter = find(_presets.begin(), _presets.end(), tag); + if (iter == _presets.end()) { + iter = find(_custom.begin(), _custom.end(), tag); + if (iter == _custom.end()) { + _custom.push_back (tag); + selection = _presets.size() + _custom.size() - 1; + populate_list (); + _list->EnsureVisible (_list->GetItemCount() - 1); + } else { + selection = _presets.size() + std::distance(_custom.begin(), iter); + } + } else { + selection = std::distance(_presets.begin(), iter); + } + + _list->SetItemState (selection, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); +} + + +dcp::LanguageTag +LanguageTagDialog::get () const +{ + auto selected = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); + DCPOMATIC_ASSERT (selected >= 0); + + if (selected < static_cast<long>(_presets.size())) { + return _presets[selected]; + } + + selected -= _presets.size(); + + DCPOMATIC_ASSERT (selected < static_cast<long>(_custom.size())); + return _custom[selected]; +} + diff --git a/src/wx/language_tag_dialog.h b/src/wx/language_tag_dialog.h new file mode 100644 index 000000000..ae6ea4ef7 --- /dev/null +++ b/src/wx/language_tag_dialog.h @@ -0,0 +1,50 @@ +/* + Copyright (C) 2021 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + + +#ifndef DCPOMATIC_LANGUAGE_TAG_DIALOG_H +#define DCPOMATIC_LANGUAGE_TAG_DIALOG_H + + +#include <dcp/language_tag.h> +#include <wx/wx.h> + + +class wxListCtrl; + + +class LanguageTagDialog : public wxDialog +{ +public: + LanguageTagDialog (wxWindow* parent, dcp::LanguageTag tag = dcp::LanguageTag("en")); + + dcp::LanguageTag get () const; + void set (dcp::LanguageTag tag); + +private: + void add_language (); + void populate_list (); + + std::vector<dcp::LanguageTag> _presets; + std::vector<dcp::LanguageTag> _custom; + wxListCtrl* _list; +}; + +#endif diff --git a/src/wx/language_tag_widget.cc b/src/wx/language_tag_widget.cc index a032545ad..d71b5fc7a 100644 --- a/src/wx/language_tag_widget.cc +++ b/src/wx/language_tag_widget.cc @@ -20,7 +20,7 @@ #include "dcpomatic_button.h" -#include "full_language_tag_dialog.h" +#include "language_tag_dialog.h" #include "language_tag_widget.h" #include "wx_util.h" #include <wx/wx.h> @@ -44,7 +44,7 @@ LanguageTagWidget::LanguageTagWidget (wxWindow* parent, wxString tooltip, dcp::L void LanguageTagWidget::edit () { - auto d = new FullLanguageTagDialog(_parent, _tag); + auto d = new LanguageTagDialog(_parent, _tag); d->ShowModal (); set (d->get()); Changed (d->get()); diff --git a/src/wx/smpte_metadata_dialog.cc b/src/wx/smpte_metadata_dialog.cc index 2f3869d58..64afcac5c 100644 --- a/src/wx/smpte_metadata_dialog.cc +++ b/src/wx/smpte_metadata_dialog.cc @@ -20,7 +20,7 @@ #include "content_version_dialog.h" #include "editable_list.h" -#include "full_language_tag_dialog.h" +#include "language_tag_dialog.h" #include "language_tag_widget.h" #include "smpte_metadata_dialog.h" #include "rating_dialog.h" @@ -111,7 +111,7 @@ SMPTEMetadataDialog::SMPTEMetadataDialog (wxWindow* parent, weak_ptr<Film> weak_ vector<EditableListColumn> columns; columns.push_back (EditableListColumn("Language", 250, true)); - _additional_subtitle_languages = new EditableList<dcp::LanguageTag, FullLanguageTagDialog> ( + _additional_subtitle_languages = new EditableList<dcp::LanguageTag, LanguageTagDialog> ( this, columns, boost::bind(&SMPTEMetadataDialog::additional_subtitle_languages, this), diff --git a/src/wx/smpte_metadata_dialog.h b/src/wx/smpte_metadata_dialog.h index 128d155f3..558023b0f 100644 --- a/src/wx/smpte_metadata_dialog.h +++ b/src/wx/smpte_metadata_dialog.h @@ -32,6 +32,7 @@ class Film; class RatingDialog; class ContentVersionDialog; class LanguageTagWidget; +class LanguageTagDialog; class SMPTEMetadataDialog : public wxDialog, public WeakFilm @@ -64,7 +65,7 @@ private: LanguageTagWidget* _audio_language; wxCheckBox* _enable_main_subtitle_language; LanguageTagWidget* _main_subtitle_language; - EditableList<dcp::LanguageTag, FullLanguageTagDialog>* _additional_subtitle_languages; + EditableList<dcp::LanguageTag, LanguageTagDialog>* _additional_subtitle_languages; wxStaticText* _release_territory; wxSpinCtrl* _version_number; wxChoice* _status; diff --git a/src/wx/wscript b/src/wx/wscript index 41d51ded5..f70d2921c 100644 --- a/src/wx/wscript +++ b/src/wx/wscript @@ -93,6 +93,7 @@ sources = """ kdm_dialog.cc kdm_output_panel.cc kdm_timing_panel.cc + language_tag_dialog.cc language_tag_widget.cc make_chain_dialog.cc markers_dialog.cc |
