Construct movie list window with source
[cinaest] / src / source-list-window.vala
1 /* This file is part of Cinaest.
2  *
3  * Copyright (C) 2009 Philipp Zabel
4  *
5  * Cinaest is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * Cinaest is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with Cinaest. If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 using Gtk;
20 using Hildon;
21
22 public class SourceListWindow : StackableWindow {
23         SourceListView source_list;
24
25         construct {
26                 set_title ("Cinæst");
27
28                 var sources = new List<MovieSource> ();
29                 source_list = new SourceListView (sources);
30
31                 var hbox = new HBox (true, 0);
32                 hbox.pack_start (source_list, true, true, MARGIN_DOUBLE);
33                 add (hbox);
34
35                 source_list.source_activated.connect (on_source_activated);
36
37                 show_all ();
38         }
39
40         public void add_sources (List<MovieSource> list) {
41                 source_list.add_sources (list);
42         }
43
44         private void on_source_activated (MovieSource source) {
45                 var window = new MovieListWindow (source);
46         }
47 }