Ignore:
Timestamp:
01/13/15 13:55:36 (9 years ago)
Author:
bln4
Message:

The remaining of the implemention of Indirect keyboard and mouse commands

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/indirect/keyboard/IndirectKeyboardActions.java

    r943 r944  
    66                //Function Keys
    77                DropDown, SizeUp, SizeDown, ChangeColor, ToggleAnnotation, InsertDate, NewFrameset, ChangeFontStyle, ChangeFontFamily,
    8                 AudienceMode, XRayMode, Save, Refresh
     8                AudienceMode, XRayMode, Save, Refresh,
     9                //Process character
     10                NewText, InsertCharacter
    911        }
    1012       
     
    5759        public KeyboardAction getRefreshAction() { return actions[Action.Refresh.ordinal()]; }
    5860        public KeyboardAction setRefreshAction(final KeyboardAction action) { actions[Action.Refresh.ordinal()] = action; return action; }
     61
     62        public KeyboardAction getCreateNewTextAction() { return actions[Action.NewText.ordinal()]; }
     63        public KeyboardAction setCreateNewTextAction(final KeyboardAction action) { actions[Action.NewText.ordinal()] = action; return action; }
     64       
     65        public KeyboardAction getInsertCharacterAction() { return actions[Action.InsertCharacter.ordinal()]; }
     66        public KeyboardAction setInsertCharacterAction(final KeyboardAction action) { actions[Action.InsertCharacter.ordinal()] = action; return action; }
    5967}
Note: See TracChangeset for help on using the changeset viewer.