/* This file is part of LED Pattern Editor. * * Copyright (C) 2010 Philipp Zabel * * LED Pattern Editor is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * LED Pattern Editor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with LED Pattern Editor. If not, see . */ class LedPatternDialog : Gtk.Dialog { unowned List list; public LedPatternDialog (List _list) { list = _list; set_title ("LED Patterns"); var content = (Gtk.VBox) get_content_area (); content.set_size_request (-1, 5*70); var pannable = new Hildon.PannableArea (); var vbox = new Gtk.VBox (false, 0); foreach (LedPattern pattern in list) { var button = new LedPatternButton (pattern); Hildon.gtk_widget_set_theme_size (button, Hildon.SizeType.FINGER_HEIGHT); button.set_data ("pattern", pattern); button.clicked.connect (on_pattern_clicked); vbox.pack_start (button, true, true, 0); } pannable.add_with_viewport (vbox); content.pack_start (pannable, true, true, 0); content.show_all (); add_button ("Save", Gtk.ResponseType.OK); } void on_pattern_clicked (Gtk.Button button) { LedPattern pattern = button.get_data ("pattern"); if (pattern is LedPatternRX51) { var dialog = new LedProgramDialog ((LedPatternRX51) pattern); dialog.set_transient_for (this); int response = 0; while (response >= 0) response = dialog.run (); dialog.destroy (); } } }