Movie list menu / window: add settable source property to the menu
[cinaest] / src / movie-list-menu.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 MovieListMenu : AppMenu {
23         public TreeSortable sortable;
24         private MovieListWindow movie_list_window;
25         private Hildon.Button select_source;
26
27         public MovieListMenu (MovieListWindow window) {
28                 movie_list_window = window;
29         }
30
31         construct {
32                 // Add sort buttons as view menu filters
33                 var sort_by_title = new RadioButton.with_label (null, _("ABC"));
34                 var sort_by_year = new RadioButton.with_label_from_widget (sort_by_title, _("Year"));
35                 var sort_by_rating = new RadioButton.with_label_from_widget (sort_by_title, _("Rating"));
36
37                 // Draw them as toggle buttons, not as radio buttons
38                 sort_by_title.set_mode (false);
39                 sort_by_year.set_mode (false);
40                 sort_by_rating.set_mode (false);
41
42                 // TODO - get this from GConf
43                 sort_by_title.set_active (true);
44
45                 // Connect signals
46                 sort_by_title.toggled.connect (button => {
47                         if (button.get_active ())
48                                 sortable.set_sort_column_id (MovieListStore.Columns.TITLE, Gtk.SortType.ASCENDING);
49                 });
50                 sort_by_year.toggled.connect (button => {
51                         if (button.get_active ())
52                                 sortable.set_sort_column_id (MovieListStore.Columns.YEAR, Gtk.SortType.DESCENDING);
53                 });
54                 sort_by_rating.toggled.connect (button => {
55                         if (button.get_active ())
56                                 sortable.set_sort_column_id (MovieListStore.Columns.RATING, Gtk.SortType.DESCENDING);
57                 });
58
59                 add_filter (sort_by_title);
60                 add_filter (sort_by_year);
61                 add_filter (sort_by_rating);
62
63                 // Add view menu buttons
64                 select_source = new Hildon.Button.with_text (SizeType.FINGER_HEIGHT, ButtonArrangement.VERTICAL, _("Source"), _("None"));
65
66                 select_source.set_style (ButtonStyle.PICKER);
67
68                 // Connect signals
69                 select_source.clicked.connect (on_select_source_clicked);
70
71                 append (select_source);
72
73                 show_all ();
74         }
75
76         public MovieSource source {
77                 set { select_source.value = value.get_name (); }
78         }
79
80         public void on_select_source_clicked (Gtk.Button button) {
81                 Hildon.Button select_source = (Hildon.Button) button;
82                 var dialog = new SourceDialog (movie_list_window);
83
84                 var source = movie_list_window.source;
85                 dialog.run (ref source);
86                 movie_list_window.source = source;
87
88                 select_source.value = source.get_name ();
89         }
90 }