Plugin interface: add window to movie action
[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 List<MovieAction> actions;
25
26         public MovieMenu (Movie _movie) {
27                 movie = _movie;
28
29                 foreach (Plugin plugin in CinaestProgram.plugins) {
30                         foreach (MovieAction action in plugin.get_actions (movie, window)) {
31                                 var button = new Gtk.Button.with_label (action.name);
32                                 button.clicked.connect (action.execute);
33                                 append (button);
34                                 actions.append (action);
35                         }
36                 }
37
38                 show_all ();
39         }
40 }
41