Reasonably straightforward stuff; main things are adding
[dcpomatic.git] / src / wx / content_panel.h
index 0f5e28ac491f8317ed30c39a0418c17f3de0ec95..e735213d3860c3b108928e93903ada20ebd9f913 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2016 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
@@ -32,17 +32,18 @@ class TimelineDialog;
 class FilmEditor;
 class ContentSubPanel;
 class Film;
+class FilmViewer;
 
 class ContentPanel : public boost::noncopyable
 {
 public:
-       ContentPanel (wxNotebook *, boost::shared_ptr<Film>);
+       ContentPanel (wxNotebook *, boost::shared_ptr<Film>, FilmViewer* viewer);
 
        boost::shared_ptr<Film> film () const {
                return _film;
        }
 
-       void set_film (boost::shared_ptr<Film> f);
+       void set_film (boost::shared_ptr<Film>);
        void set_general_sensitivity (bool s);
        void set_selection (boost::weak_ptr<Content>);
 
@@ -58,17 +59,17 @@ public:
        }
 
        ContentList selected ();
-       VideoContentList selected_video ();
+       ContentList selected_video ();
        AudioContentList selected_audio ();
        SubtitleContentList selected_subtitle ();
        FFmpegContentList selected_ffmpeg ();
 
        void add_file_clicked ();
-       
-private:       
+       bool remove_clicked (bool hotkey);
+
+private:
        void selection_changed ();
        void add_folder_clicked ();
-       void remove_clicked ();
        void earlier_clicked ();
        void later_clicked ();
        void right_click (wxListEvent &);
@@ -97,7 +98,10 @@ private:
        std::list<ContentSubPanel *> _panels;
        ContentMenu* _menu;
        TimelineDialog* _timeline_dialog;
+       wxNotebook* _parent;
+       ContentList _last_selected;
 
        boost::shared_ptr<Film> _film;
+       FilmViewer* _film_viewer;
        bool _generally_sensitive;
 };