63df4fc2066f67d5cca263842dd001c8bdb7058d
[dcpomatic.git] / src / wx / text_subtitle_appearance_dialog.cc
1 /*
2     Copyright (C) 2015-2016 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 "text_subtitle_appearance_dialog.h"
21 #include "lib/text_subtitle_content.h"
22 #include "lib/subtitle_content.h"
23 #include <wx/wx.h>
24 #include <wx/clrpicker.h>
25
26 using boost::shared_ptr;
27
28 TextSubtitleAppearanceDialog::TextSubtitleAppearanceDialog (wxWindow* parent, shared_ptr<TextSubtitleContent> content)
29         : TableDialog (parent, _("Subtitle appearance"), 2, 1, true)
30         , _content (content)
31 {
32         add (_("Colour"), true);
33         _colour = new wxColourPickerCtrl (this, wxID_ANY);
34         add (_colour);
35
36         _outline = new wxCheckBox (this, wxID_ANY, _("Outline"));
37         add (_outline);
38         add_spacer ();
39
40         add (_("Outline colour"), true);
41         _outline_colour = new wxColourPickerCtrl (this, wxID_ANY);
42         add (_outline_colour);
43
44         layout ();
45
46         _colour->SetColour (wxColour (_content->subtitle->colour().r, _content->subtitle->colour().g, _content->subtitle->colour().b));
47         _outline->SetValue (_content->subtitle->outline ());
48         _outline_colour->SetColour (
49                 wxColour (_content->subtitle->outline_colour().r, _content->subtitle->outline_colour().g, _content->subtitle->outline_colour().b)
50                 );
51 }
52
53 void
54 TextSubtitleAppearanceDialog::apply ()
55 {
56         wxColour const c = _colour->GetColour ();
57         _content->subtitle->set_colour (dcp::Colour (c.Red(), c.Green(), c.Blue()));
58         _content->subtitle->set_outline (_outline->GetValue ());
59         wxColour const oc = _outline_colour->GetColour ();
60         _content->subtitle->set_outline_colour (dcp::Colour (oc.Red(), oc.Green(), oc.Blue()));
61 }