diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-12-15 16:56:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-12-15 16:56:18 +0000 |
| commit | a5902c6008fd20392c7248c30bc469310122c527 (patch) | |
| tree | 8b2712fd09a64c4ca3ea01f2d6304f39837abddd /src/wx/fonts_dialog.cc | |
| parent | 99dc00531b985aa1efa23bec5a00b1a5ad26e86c (diff) | |
Start of Fonts dialog for setting up subtitle fonts.
Diffstat (limited to 'src/wx/fonts_dialog.cc')
| -rw-r--r-- | src/wx/fonts_dialog.cc | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/wx/fonts_dialog.cc b/src/wx/fonts_dialog.cc new file mode 100644 index 000000000..37df8f368 --- /dev/null +++ b/src/wx/fonts_dialog.cc @@ -0,0 +1,83 @@ +/* + Copyright (C) 2014 Carl Hetherington <cth@carlh.net> + + This program 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, + 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. + +*/ + +#include "lib/font.h" +#include "lib/subtitle_content.h" +#include "fonts_dialog.h" +#include "wx_util.h" +#include <wx/wx.h> + +using std::list; +using boost::shared_ptr; + +FontsDialog::FontsDialog (wxWindow* parent, shared_ptr<SubtitleContent> content) + : wxDialog (parent, wxID_ANY, _("Fonts")) +{ + _fonts = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (400, 200), wxLC_REPORT | wxLC_SINGLE_SEL); + + { + wxListItem ip; + ip.SetId (0); + ip.SetText (_("ID")); + ip.SetWidth (100); + _fonts->InsertColumn (0, ip); + } + + { + wxListItem ip; + ip.SetId (1); + ip.SetText (_("Font file")); + ip.SetWidth (300); + _fonts->InsertColumn (1, ip); + } + + wxBoxSizer* sizer = new wxBoxSizer (wxHORIZONTAL); + sizer->Add (_fonts, 1, wxEXPAND); + + { + wxSizer* s = new wxBoxSizer (wxVERTICAL); + _edit = new wxButton (this, wxID_ANY, _("Edit...")); + s->Add (_edit, 0, wxTOP | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP); + sizer->Add (s, 0, wxLEFT, DCPOMATIC_SIZER_X_GAP); + } + + wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL); + overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP); + + wxSizer* buttons = CreateSeparatedButtonSizer (wxOK); + if (buttons) { + overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); + } + + SetSizerAndFit (overall_sizer); + + 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]")))); + if ((*i)->file) { + _fonts->SetItem (n, 1, (*i)->file.get().leaf().string ()); + } + ++n; + } +} + |
