Add LED pattern button class, display pattern duration as secondary text
[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<LedPatternRX51> list;
21
22         public LedPatternDialog (List<LedPatternRX51> _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 (LedPatternRX51 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                 LedPatternRX51 pattern = button.get_data ("pattern");
49                 var dialog = new LedProgramDialog (pattern);
50                 dialog.set_transient_for (this);
51
52                 int response = 0;
53                 while (response >= 0)
54                         response = dialog.run ();
55                 dialog.destroy ();
56         }
57 }