diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-14 01:34:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-14 01:34:55 +0100 |
| commit | 1420c529d7e196f96ddf9580efdc09fa01c55d58 (patch) | |
| tree | 83e45ce895aea33796e4d38fe76b8e63dd5b3c13 /src/wx/film_editor.h | |
| parent | 4afb0f713c068ef842fdcbb230aafd22a49e245b (diff) | |
Add buttons to set trim from current playhead position (#372).
Diffstat (limited to 'src/wx/film_editor.h')
| -rw-r--r-- | src/wx/film_editor.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/wx/film_editor.h b/src/wx/film_editor.h index 25749fffa..768be9d3c 100644 --- a/src/wx/film_editor.h +++ b/src/wx/film_editor.h @@ -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 @@ -17,20 +17,19 @@ */ -/** @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 wxSpinCtrl; class wxNotebook; 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>); |
