Package com.lightcrafts.ui.operation

Examples of com.lightcrafts.ui.operation.OpControl


        control.getOperation().setRegion(region);
        control.setRegionIndicator(region!=null);
    }

    public void regionBatchEnd(Object cookie) {
        OpControl control = (OpControl) cookie;
        control.getOperation().changeBatchEnded();
    }
View Full Code Here


    public void opRemoved(OpControl control) {
        // TODO Tell the overlay, maybe trim the RegionModel (helps LZN).
    }

    public void regionBatchStart(Object cookie) {
        OpControl control = (OpControl) cookie;
        control.getOperation().changeBatchStarted();
    }
View Full Code Here

        OpControl control = (OpControl) cookie;
        control.getOperation().changeBatchStarted();
    }

    public void regionChanged(Object cookie, SharedShape shape) {
        OpControl control = (OpControl) cookie;
        Region region = overlay.getRegion(control);
        control.getOperation().setRegion(region);
        control.setRegionIndicator(region!=null);
    }
View Full Code Here

TOP

Related Classes of com.lightcrafts.ui.operation.OpControl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.