Rename _texture -> _video_texture.
[dcpomatic.git] / src / wx / content_colour_conversion_dialog.h
index 57fd5f1e544fdeec750e43364bef006b934b1fc2..d0fb74823e97bc518e3e35bcdfbc06001f25b791 100644 (file)
@@ -1,30 +1,36 @@
 /*
-    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2021 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 "lib/colour_conversion.h"
 #include <wx/wx.h>
+#include <boost/signals2.hpp>
+
 
 class ColourConversionEditor;
 
+
 class ContentColourConversionDialog : public wxDialog
 {
 public:
-       ContentColourConversionDialog (wxWindow *);
+       ContentColourConversionDialog (wxWindow *, bool yuv);
 
        void set (ColourConversion);
        ColourConversion get () const;
@@ -33,7 +39,7 @@ private:
        void check_for_preset ();
        void preset_check_clicked ();
        void preset_choice_changed ();
-       
+
        wxCheckBox* _preset_check;
        wxChoice* _preset_choice;
        ColourConversionEditor* _editor;
@@ -41,3 +47,4 @@ private:
 
        boost::signals2::scoped_connection _editor_connection;
 };
+