Merge master.
[dcpomatic.git] / src / wx / content_menu.h
index a9f9093c6ab5bb3c94d48244480bc1859495bbf2..77cf29a3057400d523ff3449a2ce96cb2f8d8679 100644 (file)
@@ -30,15 +30,17 @@ class Film;
 class ContentMenu
 {
 public:
-       ContentMenu (wxWindow *);
+       ContentMenu (wxWindow* p);
        ~ContentMenu ();
-
+       
        void popup (boost::weak_ptr<Film>, ContentList, wxPoint);
 
 private:
        void repeat ();
        void join ();
        void find_missing ();
+       void re_examine ();
+       void kdm ();
        void remove ();
        void maybe_found_missing (boost::weak_ptr<Job>, boost::weak_ptr<Content>, boost::weak_ptr<Content>);
        
@@ -50,6 +52,8 @@ private:
        wxMenuItem* _repeat;
        wxMenuItem* _join;
        wxMenuItem* _find_missing;
+       wxMenuItem* _re_examine;
+       wxMenuItem* _kdm;
        wxMenuItem* _remove;
 };