58f5de286a9978d830acd65b5409f5f3d42b4aed
[dcpomatic.git] / src / wx / image_subtitle_colour_dialog.cc
1 /*
2     Copyright (C) 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 "image_subtitle_colour_dialog.h"
21 #include "rgba_colour_picker.h"
22 #include "lib/ffmpeg_subtitle_stream.h"
23 #include "lib/ffmpeg_content.h"
24
25 using std::map;
26 using std::cout;
27 using boost::shared_ptr;
28
29 ImageSubtitleColourDialog::ImageSubtitleColourDialog (wxWindow* parent, shared_ptr<FFmpegContent> content, shared_ptr<FFmpegSubtitleStream> stream)
30         : TableDialog (parent, _("Subtitle colours"), 2, 1, true)
31         , _content (content)
32         , _stream (stream)
33 {
34         map<RGBA, RGBA> colours = _stream->colours ();
35
36         wxStaticText* t = new wxStaticText (this, wxID_ANY, "");
37         t->SetLabelMarkup (_("<b>Original colour</b>"));
38         add (t);
39         t = new wxStaticText (this, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
40         t->SetLabelMarkup (_("<b>New colour</b>"));
41         add (t, 1, wxALIGN_CENTER);
42
43         for (map<RGBA, RGBA>::const_iterator i = colours.begin(); i != colours.end(); ++i) {
44                 wxPanel* from = new wxPanel (this, wxID_ANY);
45                 from->SetBackgroundColour (wxColour (i->first.r, i->first.g, i->first.b, i->first.a));
46                 add (from);
47                 RGBAColourPicker* to = new RGBAColourPicker (this, i->second);
48                 add (to);
49                 _pickers[i->first] = to;
50         }
51
52         layout ();
53 }
54
55 void
56 ImageSubtitleColourDialog::apply ()
57 {
58         for (map<RGBA, RGBAColourPicker*>::const_iterator i = _pickers.begin(); i != _pickers.end(); ++i) {
59                 _stream->set_colour (i->first, i->second->colour ());
60         }
61
62         _content->signal_subtitle_stream_changed ();
63 }