Hide warnings triggered by Ubuntu 20.04's gcc.
[dcpomatic.git] / src / wx / content_advanced_dialog.h
index 79b4be85c8e53452bfcec1e201af35dcdfadb93f..b8c12d7b2aa36615f14ac564f9d1311c391ddb5e 100644 (file)
 */
 
 
-#include "table_dialog.h"
+#include "lib/warnings.h"
+DCPOMATIC_DISABLE_WARNINGS
+#include <wx/wx.h>
+DCPOMATIC_ENABLE_WARNINGS
 #include <boost/shared_ptr.hpp>
+#include <vector>
 
 
 class Content;
+class Filter;
 
 
-class ContentAdvancedDialog : public TableDialog
+class ContentAdvancedDialog : public wxDialog
 {
 public:
        ContentAdvancedDialog (wxWindow* parent, boost::shared_ptr<Content> content);
 
 private:
        void ignore_video_changed (wxCommandEvent& ev);
+       void edit_filters ();
+       void filters_changed (std::vector<Filter const *> filters);
+       void setup_filters ();
 
        boost::shared_ptr<Content> _content;
+
+       wxStaticText* _filters;
+       wxButton* _filters_button;
 };