std::shared_ptr
[dcpomatic.git] / src / wx / content_advanced_dialog.h
index 5fec35412cecd26403427421b4088e9d5e2d0016..6eaaa2e2da0dc7efc2fd5e83b9b09bf79681ff25 100644 (file)
 */
 
 
+#include "lib/warnings.h"
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/wx.h>
-#include <boost/shared_ptr.hpp>
+DCPOMATIC_ENABLE_WARNINGS
+#include <memory>
+#include <vector>
 
 
 class Content;
+class Filter;
 
 
 class ContentAdvancedDialog : public wxDialog
 {
 public:
-       ContentAdvancedDialog (wxWindow* parent, boost::shared_ptr<Content> content);
+       ContentAdvancedDialog (wxWindow* parent, std::shared_ptr<Content> content);
 
 private:
        void ignore_video_changed (wxCommandEvent& ev);
-
-       boost::shared_ptr<Content> _content;
+       void edit_filters ();
+       void filters_changed (std::vector<Filter const *> filters);
+       void setup_filters ();
+       void set_video_frame_rate ();
+       void video_frame_rate_changed ();
+
+       std::shared_ptr<Content> _content;
+
+       wxStaticText* _filters;
+       wxButton* _filters_button;
+       wxTextCtrl* _video_frame_rate;
+       wxButton* _set_video_frame_rate;
 };