No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / content_menu.h
index f2ad3aa75621ac04a114b46badd931b6bd92a4b1..054e3de3e10f1ace878312ebf63bee6563b56732 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
 
     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
 #ifndef DCPOMATIC_CONTENT_MENU_H
 #define DCPOMATIC_CONTENT_MENU_H
 
+#include "timeline_content_view.h"
+#include "lib/types.h"
 #include <wx/wx.h>
 #include <boost/shared_ptr.hpp>
 #include <boost/weak_ptr.hpp>
-#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<Film>, ContentList, wxPoint);
+
+       void popup (boost::weak_ptr<Film>, 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<Job>, boost::weak_ptr<Content>, boost::weak_ptr<Content>);
-       
+
        wxMenu* _menu;
        /** Film that we are working with; set up by popup() */
        boost::weak_ptr<Film> _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