Add appearance dialog for SubRip subtitles.
[dcpomatic.git] / src / wx / subtitle_appearance_dialog.cc
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "subtitle_appearance_dialog.h"
21 #include "lib/subrip_content.h"
22 #include <wx/wx.h>
23 #include <wx/clrpicker.h>
24
25 using boost::shared_ptr;
26
27 SubtitleAppearanceDialog::SubtitleAppearanceDialog (wxWindow* parent, shared_ptr<SubRipContent> content)
28         : TableDialog (parent, _("Subtitle appearance"), 2, 1, true)
29         , _content (content)
30 {
31         add (_("Colour"), true);
32         _colour = new wxColourPickerCtrl (this, wxID_ANY);
33         add (_colour);
34
35         _outline = new wxCheckBox (this, wxID_ANY, _("Outline"));
36         add (_outline);
37         add_spacer ();
38
39         add (_("Outline colour"), true);
40         _outline_colour = new wxColourPickerCtrl (this, wxID_ANY);
41         add (_outline_colour);
42
43         layout ();
44
45         _colour->SetColour (wxColour (_content->colour().r, _content->colour().g, _content->colour().b));
46         _outline->SetValue (_content->outline ());
47         _outline_colour->SetColour (wxColour (_content->outline_colour().r, _content->outline_colour().g, _content->outline_colour().b));
48 }
49
50 void
51 SubtitleAppearanceDialog::apply ()
52 {
53         wxColour const c = _colour->GetColour ();
54         _content->set_colour (dcp::Colour (c.Red(), c.Green(), c.Blue()));
55         _content->set_outline (_outline->GetValue ());
56         wxColour const oc = _outline_colour->GetColour ();
57         _content->set_outline_colour (dcp::Colour (oc.Red(), oc.Green(), oc.Blue()));
58 }