X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_menu.h;h=054e3de3e10f1ace878312ebf63bee6563b56732;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=996091f0cf59883a548ddb6c1f508d653e939aee;hpb=1b0b9e4b951e305d47bb011fc4e198472bb3fecf;p=dcpomatic.git diff --git a/src/wx/content_menu.h b/src/wx/content_menu.h index 996091f0c..054e3de3e 100644 --- a/src/wx/content_menu.h +++ b/src/wx/content_menu.h @@ -20,38 +20,43 @@ #ifndef DCPOMATIC_CONTENT_MENU_H #define DCPOMATIC_CONTENT_MENU_H +#include "timeline_content_view.h" +#include "lib/types.h" #include #include #include -#include "lib/types.h" class Film; +class Job; class ContentMenu : public boost::noncopyable { public: ContentMenu (wxWindow* p); ~ContentMenu (); - - void popup (boost::weak_ptr, ContentList, wxPoint); + + void popup (boost::weak_ptr, ContentList, TimelineContentViewList, wxPoint); private: void repeat (); void join (); void find_missing (); + void properties (); void re_examine (); void kdm (); void remove (); void maybe_found_missing (boost::weak_ptr, boost::weak_ptr, boost::weak_ptr); - + wxMenu* _menu; /** Film that we are working with; set up by popup() */ boost::weak_ptr _film; wxWindow* _parent; ContentList _content; + TimelineContentViewList _views; wxMenuItem* _repeat; wxMenuItem* _join; wxMenuItem* _find_missing; + wxMenuItem* _properties; wxMenuItem* _re_examine; wxMenuItem* _kdm; wxMenuItem* _remove;