Basic pass-through of font information when using DCP subtitles.
[dcpomatic.git] / src / wx / fonts_dialog.cc
index 37df8f368cc5397172c032551bc473552f95aff2..99d570263c12a88dcccb486a3fea70e23890b5a6 100644 (file)
 #include <wx/wx.h>
 
 using std::list;
+using std::string;
 using boost::shared_ptr;
 
 FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content)
        : wxDialog (parent, wxID_ANY, _("Fonts"))
+       , _content (content)
 {
        _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (400, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
 
@@ -52,8 +54,8 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content)
 
        {
                wxSizer* s = new wxBoxSizer (wxVERTICAL);
-               _edit = new wxButton (this, wxID_ANY, _("Edit..."));
-               s->Add (_edit, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
+               _set_file = new wxButton (this, wxID_ANY, _("Set file..."));
+               s->Add (_set_file, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
                sizer->Add (s, 0, wxLEFT, DCPOMATIC_SIZER_X_GAP);
        }
 
@@ -67,13 +69,27 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content)
 
        SetSizerAndFit (overall_sizer);
 
+       _set_file->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FontsDialog::set_file_clicked, this));
+
+       setup ();
+}
+
+void
+FontsDialog::setup ()
+{
+       shared_ptr<SubtitleContent> content = _content.lock ();
+       if (!content) {
+               return;
+       }
+       
+       _fonts->DeleteAllItems ();
        list<shared_ptr<Font> > fonts = content->fonts ();
        size_t n = 0;
        for (list<shared_ptr<Font> >::const_iterator i = fonts.begin(); i != fonts.end(); ++i) {
                wxListItem item;
                item.SetId (n);
                _fonts->InsertItem (item);
-               _fonts->SetItem (n, 0, (*i)->id.get_value_or (wx_to_std (_("[Default]"))));
+               _fonts->SetItem (n, 0, std_to_wx ((*i)->id));
                if ((*i)->file) {
                        _fonts->SetItem (n, 1, (*i)->file.get().leaf().string ());
                }
@@ -81,3 +97,40 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content)
        }
 }
 
+void
+FontsDialog::set_file_clicked ()
+{
+       shared_ptr<SubtitleContent> content = _content.lock ();
+       if (!content) {
+               return;
+       }
+
+       int item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+       if (item == -1) {
+               return;
+       }
+       
+       /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
+          non-Latin filenames or paths.
+       */
+       wxFileDialog* d = new wxFileDialog (this, _("Choose a font file"), wxT (""), wxT (""), wxT ("*.ttf"), wxFD_CHANGE_DIR);
+       int const r = d->ShowModal ();
+
+       if (r != wxID_OK) {
+               d->Destroy ();
+               return;
+       }
+
+       string id = wx_to_std (_fonts->GetItemText (item, 0));
+
+       list<shared_ptr<Font> > fonts = content->fonts ();
+       for (list<shared_ptr<Font> >::iterator i = fonts.begin(); i != fonts.end(); ++i) {
+               if ((*i)->id == id) {
+                       (*i)->file = wx_to_std (d->GetPath ());
+               }
+       }
+
+       d->Destroy ();
+
+       setup ();
+}