Package net.sourceforge.marathon.action

Examples of net.sourceforge.marathon.action.DragAction


                // undo the click:
                recorder.record(new UndoOperation(lastClickRecorded, scriptModel, windowMonitor).enscript(component));
            }
            if (finder != null)
                finder.markUsed(component);
            recorder.record(new DragAction(component.getComponentId(), e, dragStartPoint, e.getPoint(), scriptModel, windowMonitor)
                    .enscript(component));
        }
        // reset
        clearDrag();
    }
View Full Code Here


        Point start = getPosition(params);
        Point end = getPosition(params);
        // String modifiers = getModifiers(params) ;
        Object componentInfo = getComponentInfo(params);
        // FIXME: modifiers not yet supported
        play(new DragAction(new ComponentId(componentName, componentInfo), /*
                                                                            * modifiers
                                                                            * ,
                                                                            */start, end, scriptModel, windowMonitor));
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.action.DragAction

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.