Allow setting of font files.
authorCarl Hetherington <cth@carlh.net>
Tue, 16 Dec 2014 12:38:58 +0000 (12:38 +0000)
committerCarl Hetherington <cth@carlh.net>
Tue, 16 Dec 2014 12:38:58 +0000 (12:38 +0000)
src/wx/fonts_dialog.cc
src/wx/fonts_dialog.h

index 37df8f368cc5397172c032551bc473552f95aff2..1edfcf100821bbbaa48e2539cb66dcea31980fcc 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,6 +69,20 @@ 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) {
@@ -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 ();
+}
index 32fc65f45152403e478109b2270c2f60f6888e9e..c7ca789b8e069fcbfd82e9ecd40053d694e5eb3e 100644 (file)
@@ -29,6 +29,10 @@ public:
        FontsDialog (wxWindow* parent, boost::shared_ptr<SubtitleContent>);
 
 private:
+       void setup ();
+       void set_file_clicked ();
+       
+       boost::weak_ptr<SubtitleContent> _content;
        wxListCtrl* _fonts;
-       wxButton* _edit;
+       wxButton* _set_file;
 };