No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / content_panel.h
index 6b94e7d5b0d5997d14b9aa2a243363c844d10e25..452d4a4f853c259584d5c53b4930fe9cfdbc61e1 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,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>);
 
@@ -64,8 +65,8 @@ public:
        FFmpegContentList selected_ffmpeg ();
 
        void add_file_clicked ();
-       
-private:       
+
+private:
        void selection_changed ();
        void add_folder_clicked ();
        void remove_clicked ();
@@ -78,6 +79,8 @@ private:
        void setup ();
        void setup_sensitivity ();
 
+       void add_files (std::list<boost::filesystem::path>);
+
        wxPanel* _panel;
        wxSizer* _sizer;
        wxNotebook* _notebook;