Move things round a bit.
[dcpomatic.git] / src / gtk / film_list.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 <boost/filesystem.hpp>
21 #include "lib/film.h"
22 #include "film_list.h"
23
24 using namespace std;
25 using namespace boost;
26
27 FilmList::FilmList (string d)
28         : _directory (d)
29         , _list (1)
30 {
31         for (filesystem::directory_iterator i = filesystem::directory_iterator (_directory); i != filesystem::directory_iterator(); ++i) {
32                 if (is_directory (*i)) {
33                         filesystem::path m = filesystem::path (*i) / filesystem::path ("metadata");
34                         if (is_regular_file (m)) {
35                                 Film* f = new Film (i->path().string());
36                                 _films.push_back (f);
37                         }
38                 }
39         }
40
41         for (vector<Film const *>::iterator i = _films.begin(); i != _films.end(); ++i) {
42                 _list.append_text ((*i)->name ());
43         }
44
45         _list.set_headers_visible (false);
46         _list.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &FilmList::selection_changed));
47 }
48
49 Gtk::Widget&
50 FilmList::widget ()
51 {
52         return _list;
53 }
54
55 void
56 FilmList::selection_changed ()
57 {
58         Gtk::ListViewText::SelectionList s = _list.get_selected ();
59         if (s.empty ()) {
60                 return;
61         }
62
63         assert (s[0] < int (_films.size ()));
64         SelectionChanged (_films[s[0]]);
65 }