Czech translation update (via transifex.net)
[cinaest] / src / source-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 SourceListMenu : AppMenu {
23         private SourceListWindow source_list_window;
24
25         public SourceListMenu (SourceListWindow window) {
26                 source_list_window = window;
27         }
28
29         construct {
30                 // Add view menu buttons
31                 var settings = new Gtk.Button.with_label (_("Settings"));
32
33                 // Connect signals
34                 settings.clicked.connect (on_settings_clicked);
35
36                 append (settings);
37
38                 show_all ();
39         }
40
41         public void on_settings_clicked (Gtk.Button button) {
42                 var dialog = new SettingsDialog (source_list_window);
43
44                 dialog.run ();
45         }
46 }