X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_menu.h;h=054e3de3e10f1ace878312ebf63bee6563b56732;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=fccd5f38a4b714070f7c2db7f6f4822be446313c;hpb=22b9f3b2090d8bdfe52cda1e69d3acbe874f1ce5;p=dcpomatic.git diff --git a/src/wx/content_menu.h b/src/wx/content_menu.h index fccd5f38a..054e3de3e 100644 --- a/src/wx/content_menu.h +++ b/src/wx/content_menu.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,39 +20,48 @@ #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 +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; + + boost::signals2::scoped_connection _job_connection; }; #endif