Use LedPattern instead of LedPatternRX51 in LED pattern button and dialog
[led-pattern-ed] / src / led-pattern-dialog.vala
1 /* This file is part of LED Pattern Editor.
2  *
3  * Copyright (C) 2010 Philipp Zabel
4  *
5  * LED Pattern Editor 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  * LED Pattern Editor 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 LED Pattern Editor. If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 class LedPatternDialog : Gtk.Dialog {
20         unowned List<LedPattern> list;
21
22         public LedPatternDialog (List<LedPattern> _list) {
23                 list = _list;
24                 set_title ("LED Patterns");
25
26                 var content = (Gtk.VBox) get_content_area ();
27                 content.set_size_request (-1, 5*70);
28
29                 var pannable = new Hildon.PannableArea ();
30                 var vbox = new Gtk.VBox (false, 0);
31
32                 foreach (LedPattern pattern in list) {
33                         var button = new LedPatternButton (pattern);
34                         Hildon.gtk_widget_set_theme_size (button, Hildon.SizeType.FINGER_HEIGHT);
35                         button.set_data ("pattern", pattern);
36                         button.clicked.connect (on_pattern_clicked);
37                         vbox.pack_start (button, true, true, 0);
38                 }
39
40                 pannable.add_with_viewport (vbox);
41                 content.pack_start (pannable, true, true, 0);
42                 content.show_all ();
43
44                 add_button ("Save", Gtk.ResponseType.OK);
45         }
46
47         void on_pattern_clicked (Gtk.Button button) {
48                 LedPattern pattern = button.get_data ("pattern");
49                 if (pattern is LedPatternRX51) {
50                         var dialog = new LedProgramDialog ((LedPatternRX51) pattern);
51                         dialog.set_transient_for (this);
52
53                         int response = 0;
54                         while (response >= 0)
55                                 response = dialog.run ();
56                         dialog.destroy ();
57                 }
58         }
59 }