Movie menu: construct with movie store and parent window
[cinaest] / src / movie-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 Hildon;
20 using Osso;
21
22 public class MovieMenu : AppMenu {
23         private Movie movie;
24         private MovieListStore store;
25         private Gtk.Window parent_window;
26         private List<MovieAction> actions;
27
28         public MovieMenu (Movie _movie, MovieListStore _store, Gtk.Window window) {
29                 movie = _movie;
30                 store = _store;
31                 parent_window = window;
32                 foreach (Plugin plugin in CinaestProgram.plugins) {
33                         foreach (MovieAction action in plugin.get_actions (movie, window)) {
34                                 var button = new Gtk.Button.with_label (action.name);
35                                 button.clicked.connect (action.execute);
36                                 append (button);
37                                 actions.append (action);
38                         }
39                 }
40
41                 show_all ();
42         }
43 }
44