source: trunk/fl5/src/com/longtailvideo/jwplayer/view/interfaces/IDockComponent.as @ 463

Revision 463, 420 bytes checked in by zach, 4 years ago (diff)

Adding DockComponent

Line 
1package com.longtailvideo.jwplayer.view.interfaces {
2        import com.longtailvideo.jwplayer.events.IGlobalEventDispatcher;
3       
4        import flash.display.DisplayObject;
5
6        public interface IDockComponent extends IPlayerComponent {
7                function addButton(icon:DisplayObject, text:String, clickHandler:Function, name:String = null):void;
8                function removeButton(name:String):void;
9                function show():void;
10                function hide():void;
11        }
12}
Note: See TracBrowser for help on using the repository browser.