mdiwindowevent.as

来自「flex的一些小例子」· AS 代码 · 共 63 行

AS
63
字号
/*Copyright (c) 2007 FlexLib Contributors.  See:    http://code.google.com/p/flexlib/wiki/ProjectContributorsPermission is hereby granted, free of charge, to any person obtaining a copy ofthis software and associated documentation files (the "Software"), to deal inthe Software without restriction, including without limitation the rights touse, copy, modify, merge, publish, distribute, sublicense, and/or sell copiesof the Software, and to permit persons to whom the Software is furnished to doso, subject to the following conditions:The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE.*/package flexlib.mdi.events{	import flash.events.Event;		import flexlib.mdi.containers.MDIWindow;		/**	 * Event type dispatched by MDIWindow. Events will also be rebroadcast (as MDIManagerEvents)	 * by the window's manager, if one is present.	 */	public class MDIWindowEvent extends Event	{		public static const MINIMIZE:String = "minimize";		public static const RESTORE:String = "restore";		public static const MAXIMIZE:String = "maximize";		public static const CLOSE:String = "close";				public static const FOCUS_START:String = "focusStart";		public static const FOCUS_END:String = "focusEnd";		public static const DRAG_START:String = "dragStart";		public static const DRAG:String = "drag";		public static const DRAG_END:String = "dragEnd";		public static const RESIZE_START:String = "resizeStart";		public static const RESIZE:String = "resize";		public static const RESIZE_END:String = "resizeEnd";				public var window:MDIWindow;				public function MDIWindowEvent(type:String, window:MDIWindow, bubbles:Boolean = false)		{			super(type, bubbles, true);			this.window = window;		}				override public function clone():Event		{			return new MDIWindowEvent(type, window, bubbles);		}	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?