Movie menu: add delete operation
[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                 if (store.get_editable ()) {
41                         var button = new Gtk.Button.with_label (_("Delete movie"));
42                         button.clicked.connect (on_delete_movie);
43                         append (button);
44                 }
45
46                 show_all ();
47         }
48
49         private void on_delete_movie () {
50                 var dialog = new Note.confirmation (parent_window, _("Delete movie '%s'?").printf (movie.title));
51                 var res = dialog.run ();
52
53                 if (res == Gtk.ResponseType.OK) {
54                         store.remove (movie);
55                 }
56                 dialog.destroy ();
57         }
58 }
59