You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pivot.apache.org by "Greg Brown (JIRA)" <ji...@apache.org> on 2009/07/20 19:05:14 UTC

[jira] Updated: (PIVOT-174) Add application hook into unhandled key events

     [ https://issues.apache.org/jira/browse/PIVOT-174?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-174:
-----------------------------

    Fix Version/s:     (was: 1.3)
                   1.3.1

The interface will be defined as follows:

public interface UnprocessedKeyHandler {
   public void keyTyped(char character);
   public void keyPressed(int keyCode, Keyboard.KeyLocation keyLocation);
   public void keyReleased(int keyCode, Keyboard.KeyLocation keyLocation);
}

However, this is deferred to 1.3.1 since it will require some design changes to ApplicationContext and its subclasses that are too risky to make right now.


> Add application hook into unhandled key events
> ----------------------------------------------
>
>                 Key: PIVOT-174
>                 URL: https://issues.apache.org/jira/browse/PIVOT-174
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Todd Volkert
>            Assignee: Greg Brown
>            Priority: Minor
>             Fix For: 1.3.1
>
>
> Add an "add-on" interface to Application (like Application.About) that gives applications a hook into unhandled key events.  This will enabled applications to handle key events when there's no focused component.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.