Make burnt-in subtitle outline width configurable (#940).
[dcpomatic.git] / src / wx / text_subtitle_appearance_dialog.h
index 3b742399aa356073519821df6a67ccb6a255ff3d..c191cc3c01d052c73bfbf56ca1fc7d9a8b79d5e6 100644 (file)
@@ -1,40 +1,54 @@
 /*
     Copyright (C) 2015-2016 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 <boost/shared_ptr.hpp>
+#include <boost/signals2.hpp>
 
-class wxCheckBox;
+class wxRadioButton;
 class wxColourPickerCtrl;
-class TextSubtitleContent;
+class Content;
 
 class TextSubtitleAppearanceDialog : public TableDialog
 {
 public:
-       TextSubtitleAppearanceDialog (wxWindow* parent, boost::shared_ptr<TextSubtitleContent> content);
+       TextSubtitleAppearanceDialog (wxWindow* parent, boost::shared_ptr<Content> content);
 
        void apply ();
 
 private:
+       void setup_sensitivity ();
+
        wxColourPickerCtrl* _colour;
-       wxCheckBox* _outline;
-       wxColourPickerCtrl* _outline_colour;
+       wxChoice* _effect;
+       wxColourPickerCtrl* _effect_colour;
+       Timecode<ContentTime>* _fade_in;
+       Timecode<ContentTime>* _fade_out;
+       wxSpinCtrl* _outline_width;
+
+       boost::shared_ptr<Content> _content;
+
+       boost::signals2::scoped_connection _content_connection;
 
-       boost::shared_ptr<TextSubtitleContent> _content;
+       static int const NONE;
+       static int const OUTLINE;
+       static int const SHADOW;
 };