Move things round a bit.
[dcpomatic.git] / src / tools / playomatic.cc
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 <iostream>
21 #include "lib/util.h"
22 #include "gtk/film_player.h"
23 #include "gtk/film_list.h"
24
25 using namespace std;
26
27 static FilmPlayer* film_player = 0;
28
29 void
30 film_changed (Film const * f)
31 {
32         film_player->set_film (f);
33 }
34
35 int
36 main (int argc, char* argv[])
37 {
38         dvdomatic_setup ();
39
40         Gtk::Main kit (argc, argv);
41
42         if (argc != 2) {
43                 cerr << "Syntax: " << argv[0] << " <directory>\n";
44                 exit (EXIT_FAILURE);
45         }
46
47         Gtk::Window* window = new Gtk::Window ();
48
49         FilmList* film_list = new FilmList (argv[1]);
50         film_player = new FilmPlayer ();
51
52         Gtk::HBox hbox;
53         hbox.pack_start (film_list->widget(), true, true);
54         hbox.pack_start (film_player->widget(), true, true);
55
56         film_list->SelectionChanged.connect (sigc::ptr_fun (&film_changed));
57         
58         window->set_title ("Play-o-matic");
59         window->add (hbox);
60         window->show_all ();
61         
62         window->maximize ();
63         Gtk::Main::run (*window);
64
65         return 0;
66 }
67