diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-06-27 23:08:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-06-27 23:12:46 +0200 |
| commit | 76fa6543691330bcbf911ab77b2e1133fb70ada7 (patch) | |
| tree | 564057692264035aeff003834cc518e3057fb64e /src/wx/content_advanced_dialog.h | |
| parent | d3dbe752a3098328d5763f3fc0fd589bac0d5047 (diff) | |
Move video filters controls into advanced content dialogue (#1748).
Diffstat (limited to 'src/wx/content_advanced_dialog.h')
| -rw-r--r-- | src/wx/content_advanced_dialog.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wx/content_advanced_dialog.h b/src/wx/content_advanced_dialog.h index 5fec35412..ba5d0c6fd 100644 --- a/src/wx/content_advanced_dialog.h +++ b/src/wx/content_advanced_dialog.h @@ -21,9 +21,11 @@ #include <wx/wx.h> #include <boost/shared_ptr.hpp> +#include <vector> class Content; +class Filter; class ContentAdvancedDialog : public wxDialog @@ -33,7 +35,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; }; |
