File: key_pressed_event.py

package info (click to toggle)
python-traitsgui 3.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,276 kB
  • sloc: python: 12,190; makefile: 85; sh: 5
file content (28 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
""" The event that is generated when a key is pressed. """


# Enthought library imports.
from enthought.traits.api import Bool, HasTraits, Int, Any


class KeyPressedEvent(HasTraits):
    """ The event that is generated when a key is pressed. """

    #### 'KeyPressedEvent' interface ##########################################

    # Is the alt key down?
    alt_down = Bool
    
    # Is the control key down?
    control_down = Bool

    # Is the shift key down?
    shift_down = Bool

    # The keycode.
    key_code = Int
    
    # The original toolkit specific event.
    event = Any

#### EOF ######################################################################