/* 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 LedProgramDialog : Gtk.Dialog { LedPatternView lpv; LedPatternRX51 pattern; public LedProgramDialog (LedPatternRX51 _pattern) { pattern = _pattern; set_title ("LED pattern editor - " + (pattern.name.has_prefix ("Pattern") ? pattern.name.offset (7) : pattern.name) + " pattern"); var content = (Gtk.VBox) get_content_area (); content.set_size_request (-1, 5*70); lpv = new LedPatternView (pattern.copy ()); lpv.set_size_request (-1, 70); content.pack_start (lpv, false, false, 0); var pannable = new Hildon.PannableArea (); var vbox = new Gtk.VBox (false, 0); foreach (LedCommandRX51 command in lpv.pattern.engine1) { var label = new Gtk.Label ("0x%04x".printf (command.code)); vbox.pack_start (label, false, false, 0); } pannable.add_with_viewport (vbox); content.pack_start (pannable, true, true, 0); content.show_all (); add_button ("Test", 1); add_button ("Done", Gtk.ResponseType.ACCEPT); response.connect (on_response); } void on_response (int response) { if (response == 1) { // Test pattern } if (response == Gtk.ResponseType.ACCEPT) { if (pattern.dump () != lpv.pattern.dump ()) { pattern.replace_with (lpv.pattern); } } } }