Package net.sf.fmj.ejmf.toolkit.gui.controls

Examples of net.sf.fmj.ejmf.toolkit.gui.controls.MouseListenerControl


     *
     * @param          c
     *                 An AbstractButton
     **/
    public void setFastForwardButton(AbstractButton c) {
  MouseListenerControl control =
      (MouseListenerControl) getControl(StandardControls.FF_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here


     * @param          c
     *                 An AbstractButton
     * @param l A MouseListener that implements button semantics.
     **/
    public void setFastForwardButton(AbstractButton c, MouseListener l) {
  MouseListenerControl control =
      (MouseListenerControl) getControl(StandardControls.FF_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponentAndListener(c, l);
    }
View Full Code Here

     *
     * @param          c
     *                 An AbstractButton
     **/
    public void setReverseButton(AbstractButton c) {
  MouseListenerControl control =
      (MouseListenerControl)getControl(StandardControls.REVERSE_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here

     * @param          c
     *                 An AbstractButton
     * @param l A MouseListener that implements button semantics.
     **/
    public void setReverseButton(AbstractButton c, MouseListener l) {
  MouseListenerControl control =
      (MouseListenerControl)getControl(StandardControls.REVERSE_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here

TOP

Related Classes of net.sf.fmj.ejmf.toolkit.gui.controls.MouseListenerControl

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.