Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / wx / fonts_dialog.cc
index 1edfcf100821bbbaa48e2539cb66dcea31980fcc..66f8ab0e486dfab24dde0c3f6c36c1aa49933ed9 100644 (file)
@@ -1,37 +1,46 @@
 /*
-    Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
 
-    This program is free software; you can redistribute it and/or modify
+    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.
 
-    This program is distributed in the hope that it will be useful,
+    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 this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
 
 */
 
-#include "lib/font.h"
-#include "lib/subtitle_content.h"
 #include "fonts_dialog.h"
 #include "wx_util.h"
+#include "system_font_dialog.h"
+#include "dcpomatic_button.h"
+#include "lib/font.h"
+#include "lib/content.h"
+#include "lib/text_content.h"
 #include <wx/wx.h>
+#include <boost/foreach.hpp>
+#include <iostream>
 
 using std::list;
 using std::string;
+using std::cout;
 using boost::shared_ptr;
+using namespace dcpomatic;
 
-FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content)
+FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<Content> content, shared_ptr<TextContent> caption)
        : wxDialog (parent, wxID_ANY, _("Fonts"))
        , _content (content)
+       , _caption (caption)
 {
-       _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (400, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
+       _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (550, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
 
        {
                wxListItem ip;
@@ -40,24 +49,20 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content)
                ip.SetWidth (100);
                _fonts->InsertColumn (0, ip);
        }
-       
+
        {
                wxListItem ip;
                ip.SetId (1);
-               ip.SetText (_("Font file"));
-               ip.SetWidth (300);
+               ip.SetText (_("File"));
+               ip.SetWidth (450);
                _fonts->InsertColumn (1, ip);
        }
 
        wxBoxSizer* sizer = new wxBoxSizer (wxHORIZONTAL);
-       sizer->Add (_fonts, 1, wxEXPAND);
+       sizer->Add (_fonts, 1, wxEXPAND | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
 
-       {
-               wxSizer* s = new wxBoxSizer (wxVERTICAL);
-               _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);
-       }
+       _edit = new Button (this, _("Edit..."));
+       sizer->Add (_edit, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
 
        wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
        overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
@@ -69,7 +74,9 @@ 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));
+       _edit->Bind (wxEVT_BUTTON, boost::bind (&FontsDialog::edit_clicked, this));
+       _fonts->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&FontsDialog::selection_changed, this));
+       _fonts->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&FontsDialog::selection_changed, this));
 
        setup ();
 }
@@ -77,43 +84,79 @@ FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content)
 void
 FontsDialog::setup ()
 {
-       shared_ptr<SubtitleContent> content = _content.lock ();
-       if (!content) {
+       shared_ptr<Content> content = _content.lock ();
+       shared_ptr<TextContent> caption = _caption.lock ();
+       if (!content || !caption) {
                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) {
+       BOOST_FOREACH (shared_ptr<Font> i, caption->fonts ()) {
                wxListItem item;
                item.SetId (n);
                _fonts->InsertItem (item);
-               _fonts->SetItem (n, 0, (*i)->id.get_value_or (wx_to_std (_("[Default]"))));
-               if ((*i)->file) {
-                       _fonts->SetItem (n, 1, (*i)->file.get().leaf().string ());
+               _fonts->SetItem (n, 0, std_to_wx (i->id ()));
+               if (i->file()) {
+                       _fonts->SetItem (n, 1, i->file()->leaf().string ());
                }
                ++n;
        }
+
+       setup_sensitivity ();
+}
+
+void
+FontsDialog::selection_changed ()
+{
+       setup_sensitivity ();
 }
 
 void
-FontsDialog::set_file_clicked ()
+FontsDialog::setup_sensitivity ()
 {
-       shared_ptr<SubtitleContent> content = _content.lock ();
-       if (!content) {
+       int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+       _edit->Enable (item != -1);
+}
+
+void
+FontsDialog::edit_clicked ()
+{
+       shared_ptr<Content> content = _content.lock ();
+       shared_ptr<TextContent> caption = _caption.lock ();
+       if (!content || !caption) {
                return;
        }
 
-       int item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
-       if (item == -1) {
+       int const item = _fonts->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+       string const id = wx_to_std (_fonts->GetItemText (item, 0));
+       shared_ptr<Font> font;
+       BOOST_FOREACH (shared_ptr<Font> i, caption->fonts()) {
+               if (i->id() == id) {
+                       font = i;
+               }
+       }
+
+       if (!font) {
                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);
+
+        /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
+           non-Latin filenames or paths.
+        */
+        wxString default_dir = "";
+#ifdef DCPOMATIC_LINUX
+        if (boost::filesystem::exists ("/usr/share/fonts/truetype")) {
+                default_dir = "/usr/share/fonts/truetype";
+        } else {
+                default_dir = "/usr/share/fonts";
+        }
+#endif
+#ifdef DCPOMATIC_OSX
+        default_dir = "/System/Library/Fonts";
+#endif
+
+       wxFileDialog* d = new wxFileDialog (this, _("Choose a font file"), default_dir, wxT(""), wxT("*.ttf;*.otf"), wxFD_CHANGE_DIR);
        int const r = d->ShowModal ();
 
        if (r != wxID_OK) {
@@ -121,15 +164,7 @@ FontsDialog::set_file_clicked ()
                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 ());
-               }
-       }
-
+       font->set_file (wx_to_std(d->GetPath()));
        d->Destroy ();
 
        setup ();