/* This program 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. This program 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 this program. If not, see . Javier Quevedo Fernández 05-2009. */ package net.ximpel.events { import flash.events.Event; public class lib_flex_ximpel_editor_net_ximpel_events_InterfaceEvents extends Event { public function lib_flex_ximpel_editor_net_ximpel_events_InterfaceEvents(type:String) { super(type); } public static const SUBJECT_ACTIVATED : String = "subjectActivated"; public static const MEDIA_CLIP_ACTIVATED : String = "mediaClipActivated"; public static const MEDIA_CLIP_REMOVED : String = "mediaClipRemoved"; public static const SUBJECT_FORM_MOUSE_DOWN : String = "subjectFormMouseDown"; public static const SUBJECT_FORM_CHANGED : String = "subjectFormChanged"; public static const SUBJECT_CHANGED : String = "subjectChanged"; public static const SUBJECT_FORM_COMBOBOX_OPEN : String = "subjectComboBoxOpen"; public static const MEDIA_ACTIVATED : String = "mediaActivated"; } }