Move things round a bit.
[dcpomatic.git] / src / gtk / film_player.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <gtkmm.h>
21 #include "lib/film.h"
22
23 class Film;
24 class Screen;
25 class FilmState;
26
27 class FilmPlayer
28 {
29 public:
30         FilmPlayer (Film const * f = 0);
31         
32         Gtk::Widget& widget ();
33         
34         void set_film (Film const *);
35         void setup_visibility ();
36
37 private:
38         void play_clicked ();
39         void pause_clicked ();
40         void stop_clicked ();
41         void position_changed ();
42         std::string format_position (double);
43         void film_changed (Film::Property);
44         
45         void set_button_states ();
46         boost::shared_ptr<Screen> screen () const;
47         void set_status ();
48         void update ();
49         void update_screens ();
50         
51         Film const * _film;
52         boost::shared_ptr<const FilmState> _last_play_fs;
53
54         Gtk::VBox _main_vbox;
55         Gtk::Button _play;
56         Gtk::Button _pause;
57         Gtk::Button _stop;
58         Gtk::Label _status;
59         Gtk::CheckButton _ab;
60         Gtk::ComboBoxText _screen;
61         Gtk::HScale _position;
62         bool _ignore_position_changed;
63 };