Add movie list 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
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                 // TODO - connect signals
40
41                 add_filter (sort_by_title);
42                 add_filter (sort_by_year);
43                 add_filter (sort_by_rating);
44
45                 show_all ();
46         }
47 }