Add buttons to set trim from current playhead position (#372).
[dcpomatic.git] / src / wx / content_panel.h
index ab198411ddf5b9296aa19aab163621af55b34bb4..d48ee26c1ded308843bad01ebbcb7ba8e0b46d46 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-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
@@ -32,11 +32,12 @@ class TimelineDialog;
 class FilmEditor;
 class ContentSubPanel;
 class Film;
+class FilmViewer;
 
-class ContentPanel
+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;
@@ -66,7 +67,6 @@ public:
        void add_file_clicked ();
        
 private:       
-       void sequence_video_changed ();
        void selection_changed ();
        void add_folder_clicked ();
        void remove_clicked ();
@@ -79,6 +79,8 @@ private:
        void setup ();
        void setup_sensitivity ();
 
+       void add_files (std::list<boost::filesystem::path>);
+
        wxPanel* _panel;
        wxSizer* _sizer;
        wxNotebook* _notebook;
@@ -89,7 +91,6 @@ private:
        wxButton* _earlier;
        wxButton* _later;
        wxButton* _timeline;
-       wxCheckBox* _sequence_video;
        ContentSubPanel* _video_panel;
        ContentSubPanel* _audio_panel;
        ContentSubPanel* _subtitle_panel;