Take Film pointer out of Content.
[dcpomatic.git] / src / wx / subtitle_appearance_dialog.h
index f4fe307d238dcab485583f7bd6a68fbc583bd566..d02e283d90a8d80e06eba09e6ee1ac1919fa42e7 100644 (file)
@@ -1,40 +1,74 @@
 /*
-    Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-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 "table_dialog.h"
+#include "timecode.h"
+#include "lib/rgba.h"
+#include <wx/wx.h>
 #include <boost/shared_ptr.hpp>
+#include <boost/signals2.hpp>
 
-class wxCheckBox;
+class wxRadioButton;
 class wxColourPickerCtrl;
-class SubRipContent;
+class wxGridBagSizer;
+class Content;
+class RGBAColourPicker;
+class FFmpegSubtitleStream;
+class wxCheckBox;
+class wxWidget;
+class Film;
 
-class SubtitleAppearanceDialog : public TableDialog
+class SubtitleAppearanceDialog : public wxDialog
 {
 public:
-       SubtitleAppearanceDialog (wxWindow* parent, boost::shared_ptr<SubRipContent> content);
+       SubtitleAppearanceDialog (wxWindow* parent, boost::shared_ptr<const Film> film, boost::shared_ptr<Content> content, boost::shared_ptr<TextContent> caption);
 
        void apply ();
 
 private:
+       void setup_sensitivity ();
+       void restore ();
+       wxCheckBox* set_to (wxWindow* w, int& r);
+       void content_change (ChangeType type);
+
+       boost::weak_ptr<const Film> _film;
+       wxCheckBox* _force_colour;
        wxColourPickerCtrl* _colour;
-       wxCheckBox* _outline;
-       wxColourPickerCtrl* _outline_colour;
+       wxCheckBox* _force_effect;
+       wxChoice* _effect;
+       wxCheckBox* _force_effect_colour;
+       wxColourPickerCtrl* _effect_colour;
+       wxCheckBox* _force_fade_in;
+       Timecode<ContentTime>* _fade_in;
+       wxCheckBox* _force_fade_out;
+       Timecode<ContentTime>* _fade_out;
+       wxSpinCtrl* _outline_width;
+       wxGridBagSizer* _table;
+       std::map<RGBA, RGBAColourPicker*> _pickers;
+
+       boost::shared_ptr<Content> _content;
+       boost::shared_ptr<TextContent> _caption;
+       boost::shared_ptr<FFmpegSubtitleStream> _stream;
+
+       boost::signals2::scoped_connection _content_connection;
 
-       boost::shared_ptr<SubRipContent> _content;
+       static int const NONE;
+       static int const OUTLINE;
+       static int const SHADOW;
 };