Fix memory leak which also causes strange flickering in the audio
[dcpomatic.git] / src / wx / content_advanced_dialog.h
index 5fec35412cecd26403427421b4088e9d5e2d0016..b8c12d7b2aa36615f14ac564f9d1311c391ddb5e 100644 (file)
 */
 
 
+#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 wxDialog
@@ -33,7 +38,13 @@ public:
 
 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;
 };