Home | History | Annotate | Download | only in idlelib

Lines Matching refs:modifiers

12 Key/Button Press/Release events can have modifiers.
13 The recognized modifiers are Shift, Control, Option and Command for Mac, and
20 modifiers), another member is added - mc_state. This member gives the state
21 of the recognized modifiers, as a combination of the modifier constants
48 # define the list of modifiers, to be used in complex event types.
64 # _SimpleBinder handles event types with no modifiers and no detail.
66 # _ComplexBinder handles event types with modifiers and a detail.
104 # An int in range(1 << len(_modifiers)) represents a combination of modifiers
106 # _state_subsets gives for each combination of modifiers, or *state*,
108 # number of modifiers is the state - the most specific state comes first.
264 modifiers = 0
266 modifiers |= 1 << _modifier_names[words[0]]
276 if modifiers or words:
294 return modifiers, type, detail