No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / content_menu.h
index 5f2a7f7b6dd35c0bbdbbd5b7ca29bb38fbe602ca..054e3de3e10f1ace878312ebf63bee6563b56732 100644 (file)
 #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 "timeline_content_view.h"
-#include "lib/types.h"
 
 class Film;
+class Job;
 
 class ContentMenu : public boost::noncopyable
 {
 public:
        ContentMenu (wxWindow* p);
        ~ContentMenu ();
-       
+
        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;
@@ -54,6 +56,7 @@ private:
        wxMenuItem* _repeat;
        wxMenuItem* _join;
        wxMenuItem* _find_missing;
+       wxMenuItem* _properties;
        wxMenuItem* _re_examine;
        wxMenuItem* _kdm;
        wxMenuItem* _remove;