X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffilter_view.h;h=b8d5f644f126c9a16a749a016c5117c244b2f504;hb=2bde54c29e6b36c75948ca1d3efcda0535d148d7;hp=0c96b0e144bcd7e32d011f1b62b241bbd16e9abe;hpb=26b9ae1e7700b545df4b5445a7efba412c2cbb68;p=dcpomatic.git diff --git a/src/wx/filter_view.h b/src/wx/filter_view.h index 0c96b0e14..b8d5f644f 100644 --- a/src/wx/filter_view.h +++ b/src/wx/filter_view.h @@ -18,30 +18,30 @@ */ /** @file src/filter_view.h - * @brief A widget to select FFmpeg filters. + * @brief A panel to select FFmpeg filters. */ -#include +#include #include +#include +#include class Filter; /** @class FilterView - * @brief A widget to select FFmpeg filters. + * @brief A panel to select FFmpeg filters. */ -class FilterView +class FilterView : public wxPanel { public: - FilterView (std::vector const &); + FilterView (wxWindow *, std::vector const &); - Gtk::Widget & widget (); std::vector active () const; - sigc::signal0 ActiveChanged; + boost::signals2::signal ActiveChanged; private: - void filter_toggled (Filter const *); + void filter_toggled (wxCommandEvent &); - Gtk::VBox _box; - std::map _filters; + std::map _filters; };