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