Emit no audio from DCPs if none is mapped
[dcpomatic.git] / src / wx / filter_dialog.h
index e76f8536bfa3c17c52c6d012bf8ea2535973be2e..aaa43c3e44962818ab8fe0471ad5f5b62d39d4ee 100644 (file)
@@ -1,31 +1,39 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-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/>.
 
 */
 
+
 /** @file  src/filter_dialog.h
  *  @brief A dialog to select FFmpeg filters.
  */
 
+
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
 #include <boost/signals2.hpp>
 
+
 class Film;
-class FilterView;
+class Filter;
+
 
 /** @class FilterDialog
  *  @brief A dialog to select FFmpeg filters.
@@ -33,12 +41,14 @@ class FilterView;
 class FilterDialog : public wxDialog
 {
 public:
-       FilterDialog (wxWindow *, std::vector<Filter const *> const &);
+       FilterDialog(wxWindow *, std::vector<Filter> const&);
 
-       boost::signals2::signal<void (std::vector<Filter const *>)> ActiveChanged;
+       boost::signals2::signal<void (std::vector<Filter>)> ActiveChanged;
 
 private:
        void active_changed ();
-       
-       FilterView* _filters;
+       void filter_toggled ();
+       std::vector<Filter> active() const;
+
+       std::map<Filter, wxCheckBox *> _filters;
 };