Package at.bestsolution.drawswf.actions

Examples of at.bestsolution.drawswf.actions.UndoAction


    }

    //----------------------------------------------------------------------------
    private void addUndoAction( String displayedText, String description, String icon_name, int mnemonicKey, KeyStroke accelerator )
    {
        UndoAction undo_action = new UndoAction(description, icon_name, MainWindow.getDrawingPanel());
        add(undo_action);
    }
View Full Code Here


    }
   
//  ----------------------------------------------------------------------------
      private void addUndoAction( String displayedText, String description, String icon_name, int mnemonicKey, KeyStroke accelerator )
      {
          UndoAction undo_action = new UndoAction( displayedText, description, icon_name, MainWindow.getDrawingPanel(), mnemonicKey, accelerator);
          add(undo_action);
      }
View Full Code Here

TOP

Related Classes of at.bestsolution.drawswf.actions.UndoAction

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.