Index: lams_common/src/flash/org/lamsfoundation/lams/common/ui/LFWindow.as =================================================================== diff -u --- lams_common/src/flash/org/lamsfoundation/lams/common/ui/LFWindow.as (revision 0) +++ lams_common/src/flash/org/lamsfoundation/lams/common/ui/LFWindow.as (revision f70a176d6523e1a05bf08e0f371e610b2343f653) @@ -0,0 +1,46 @@ +/** +* LFWindow - Extends the MM Window class and will be used for all LAMS windows + dialogs +* +*/ +import mx.containers.* +import mx.managers.* + +class org.lamsfoundation.common.ui.LFWindow extends Window{ + + public static var symbolOwner:Object = Window; + + //Declarations + //Constructor + function LFWindow() { + } + + public function createChildren(Void):Void { + super.createChildren(); + //Dynamically add extra buttons + } + + public function draw(Void):Void { + super.draw(); + } + + public function size(Void):Void { + super.size(); + } + + public function init(Void):Void { + super.init(); + //FocusManager.setFocus(this); + //visible = false; + } + + public function doLayout(Void):Void { + super.doLayout(); + } + + public function startDragging(Void):Void { + super.startDragging(); + trace('drag started'); + } + + //Getters+Setters +} \ No newline at end of file