diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-13 10:54:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-13 10:54:02 +0100 |
| commit | 439953204388991b96fce215c62396a7b6d33acd (patch) | |
| tree | 6a21758ac7d22d52909af18753dfd7391fc742ef /src/wx/move_to_dialog.h | |
| parent | 38e73a895fb6145391c2c43cc97783a3eaf50cc5 (diff) | |
Add button to move things to the start of reels (#798).
Diffstat (limited to 'src/wx/move_to_dialog.h')
| -rw-r--r-- | src/wx/move_to_dialog.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/wx/move_to_dialog.h b/src/wx/move_to_dialog.h new file mode 100644 index 000000000..4d8d991f5 --- /dev/null +++ b/src/wx/move_to_dialog.h @@ -0,0 +1,39 @@ +/* + Copyright (C) 2016 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + +#include "table_dialog.h" +#include "lib/dcpomatic_time.h" +#include <boost/weak_ptr.hpp> +#include <boost/optional.hpp> + +class Film; +class wxSpinCtrl; + +class MoveToDialog : public TableDialog +{ +public: + MoveToDialog (wxWindow* parent, boost::optional<DCPTime> position, boost::shared_ptr<const Film> film); + + DCPTime position () const; + +private: + boost::weak_ptr<const Film> _film; + wxSpinCtrl* _reel; +}; |
