Add localization support
[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
25         construct {
26                 // Add sort buttons as view menu filters
27                 var sort_by_title = new RadioButton.with_label (null, _("ABC"));
28                 var sort_by_year = new RadioButton.with_label_from_widget (sort_by_title, _("Year"));
29                 var sort_by_rating = new RadioButton.with_label_from_widget (sort_by_title, _("Rating"));
30
31                 // Draw them as toggle buttons, not as radio buttons
32                 sort_by_title.set_mode (false);
33                 sort_by_year.set_mode (false);
34                 sort_by_rating.set_mode (false);
35
36                 // TODO - get this from GConf
37                 sort_by_title.set_active (true);
38
39                 // Connect signals
40                 sort_by_title.toggled.connect (button => {
41                         if (button.get_active ())
42                                 sortable.set_sort_column_id (MovieListStore.Columns.TITLE, Gtk.SortType.ASCENDING);
43                 });
44                 sort_by_year.toggled.connect (button => {
45                         if (button.get_active ())
46                                 sortable.set_sort_column_id (MovieListStore.Columns.YEAR, Gtk.SortType.DESCENDING);
47                 });
48                 sort_by_rating.toggled.connect (button => {
49                         if (button.get_active ())
50                                 sortable.set_sort_column_id (MovieListStore.Columns.RATING, Gtk.SortType.DESCENDING);
51                 });
52
53                 add_filter (sort_by_title);
54                 add_filter (sort_by_year);
55                 add_filter (sort_by_rating);
56
57                 show_all ();
58         }
59 }