[Jsxe-cvs] SF.net SVN: jsxe: [951] trunk/jsxe
Status: Inactive
Brought to you by:
ian_lewis
From: <ian...@us...> - 2006-06-13 20:25:43
|
Revision: 951 Author: ian_lewis Date: 2006-06-13 13:25:35 -0700 (Tue, 13 Jun 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=951&view=rev Log Message: ----------- Added an InputManager for maintaining key bindings in jsXe Modified Paths: -------------- trunk/jsxe/Changelog trunk/jsxe/src/net/sourceforge/jsxe/ActionSet.java trunk/jsxe/src/net/sourceforge/jsxe/action/FileCloseAction.java trunk/jsxe/src/net/sourceforge/jsxe/jsXe.java Modified: trunk/jsxe/Changelog =================================================================== --- trunk/jsxe/Changelog 2006-06-13 18:06:18 UTC (rev 950) +++ trunk/jsxe/Changelog 2006-06-13 20:25:35 UTC (rev 951) @@ -1,3 +1,8 @@ +06/13/2006 Ian Lewis <Ian...@me...> + + * Added the InputManager for maintaining the key bindings for actions in + jsXe. + 06/08/2006 Ian Lewis <Ian...@me...> * Added a PropertyChanged event for when one of jsXe's properties changes. Modified: trunk/jsxe/src/net/sourceforge/jsxe/ActionSet.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/ActionSet.java 2006-06-13 18:06:18 UTC (rev 950) +++ trunk/jsxe/src/net/sourceforge/jsxe/ActionSet.java 2006-06-13 20:25:35 UTC (rev 951) @@ -39,7 +39,6 @@ public class ActionSet { //{{{ ActionSet constructor - /** * Creates a new action set. */ @@ -48,7 +47,6 @@ }//}}} //{{{ ActionSet constructor - /** * Creates a new action set. * @param label The label for the action set @@ -59,7 +57,6 @@ }//}}} //{{{ getLabel() - /** * Return the action source label. */ @@ -68,7 +65,6 @@ }//}}} //{{{ setLabel() - /** * Sets the action source label. * @param label The label @@ -78,7 +74,6 @@ }//}}} //{{{ addAction() - /** * Adds an action to the action set. * @param name the internal name for the action @@ -89,7 +84,6 @@ }//}}} //{{{ removeAction() - /** * Removes an action from the action set. * @param name The internal action name @@ -99,7 +93,6 @@ }//}}} //{{{ removeAllActions() - /** * Removes all actions from the action set. */ @@ -108,7 +101,6 @@ }//}}} //{{{ getAction() - /** * Returns an action with the specified name. * @param name The action name @@ -118,7 +110,6 @@ }//}}} //{{{ getActionCount() - /** * Returns the number of actions in the set. */ @@ -127,7 +118,6 @@ }//}}} //{{{ getActions() - /** * Returns an array of all actions in this action set. */ @@ -142,7 +132,6 @@ }//}}} //{{{ contains() - /** * Returns if this action set contains the specified action. * @param action The action Modified: trunk/jsxe/src/net/sourceforge/jsxe/action/FileCloseAction.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/action/FileCloseAction.java 2006-06-13 18:06:18 UTC (rev 950) +++ trunk/jsxe/src/net/sourceforge/jsxe/action/FileCloseAction.java 2006-06-13 20:25:35 UTC (rev 951) @@ -57,6 +57,7 @@ /** * The action executed when the user selects 'close' from the file menu. + * * @author Ian Lewis (<a href="mailto:Ian...@me...">Ian...@me...</a>) * @author Trish Hartnett (<a href="mailto:tri...@me...">tri...@me...</a>) * @version $Id$ @@ -64,7 +65,6 @@ public class FileCloseAction extends AbstractAction { //{{{ FileCloseAction constructor - public FileCloseAction(TabbedView parent) { //putValue(Action.NAME, "Close"); putValue(Action.NAME, Messages.getMessage("File.Close")); Modified: trunk/jsxe/src/net/sourceforge/jsxe/jsXe.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/jsXe.java 2006-06-13 18:06:18 UTC (rev 950) +++ trunk/jsxe/src/net/sourceforge/jsxe/jsXe.java 2006-06-13 20:25:35 UTC (rev 951) @@ -929,6 +929,8 @@ System.exit(errorcode); }//}}} + //{{{ Properties methods + //{{{ setProperty() /** * Sets a global property to jsXe. @@ -1140,6 +1142,10 @@ setIntegerProperty(name + "style",value.getStyle()); } //}}} + //}}} + + //{{{ Action methods + //{{{ addActionSet() /** * Adds a set of actions to the jsXe's pool of action sets. @@ -1176,6 +1182,8 @@ return m_actionSets; }//}}} + //}}} + //{{{ getPluginLoader() /** * Gets the plugin loader that is used to load This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |