Source list view: add optional filter
[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         private SourceListView source_list;
24         private bool start_movies;
25         private string default_source;
26
27         construct {
28                 set_title ("Cinæst");
29
30                 // View menu
31                 var menu = new SourceListMenu (this);
32
33                 set_main_menu (menu);
34
35                 var sources = new List<MovieSource> ();
36                 source_list = new SourceListView (sources, true);
37
38                 var hbox = new HBox (true, 0);
39                 hbox.pack_start (source_list, true, true, MARGIN_DOUBLE);
40                 add (hbox);
41
42                 source_list.source_activated.connect (on_source_activated);
43
44                 var gc = GConf.Client.get_default ();
45                 try {
46                         start_movies = gc.get_bool ("/apps/cinaest/start_movies");
47                         default_source = gc.get_string ("/apps/cinaest/default_source");
48                 } catch (Error e) {
49                         stdout.printf ("Error getting GConf option: %s\n", e.message);
50                 }
51
52                 show_all ();
53         }
54
55         public void add_sources (List<MovieSource> list) {
56                 source_list.add_sources (list);
57                 if (start_movies) {
58                         foreach (MovieSource source in list) {
59                                 if (default_source == source.get_name ()) {
60                                         var window = new MovieListWindow (source);
61                                         break;
62                                 }
63                         }
64                 }
65         }
66
67         private void on_source_activated (MovieSource source) {
68                 var window = new MovieListWindow (source);
69         }
70 }