X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_menu.h;h=054e3de3e10f1ace878312ebf63bee6563b56732;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=cd51e86f1a9fb21b14aa146d62287cca611b9a7e;hpb=a112eeb4d052b1212f94e95efd83a215213da691;p=dcpomatic.git diff --git a/src/wx/content_menu.h b/src/wx/content_menu.h index cd51e86f1..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,41 +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 : 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