No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / film_editor.h
index a198d7aa7d0ce221b0e246a13b3bd24bdd6667d6..43a1214c2c915aad424bd63178c8852201cb823f 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
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 */
-/** @file src/film_editor.h
- *  @brief A wx widget to edit a film's metadata, and perform various functions.
+
+/** @file src/wx/film_editor.h
+ *  @brief FilmEditor class.
  */
 
+#include "lib/film.h"
 #include <wx/wx.h>
 #include <boost/signals2.hpp>
-#include "lib/film.h"
 
 class wxNotebook;
-class wxSpinCtrl;
 class Film;
-class Ratio;
 class ContentPanel;
 class DCPPanel;
+class FilmViewer;
 
 /** @class FilmEditor
  *  @brief A wx widget to edit a film's metadata, and perform various functions.
@@ -38,7 +37,7 @@ class DCPPanel;
 class FilmEditor : public wxPanel
 {
 public:
-       FilmEditor (wxWindow *);
+       FilmEditor (wxWindow *, FilmViewer* viewer);
 
        void set_film (boost::shared_ptr<Film>);
 
@@ -49,12 +48,11 @@ public:
        ContentPanel* content_panel () const {
                return _content_panel;
        }
-       
+
        boost::shared_ptr<Film> film () const {
                return _film;
        }
 
-private:
        /* Handle changes to the model */
        void film_changed (Film::Property);
        void film_content_changed (int);