Python wx.WXK_NUMPAD_ENTER Examples
The following are 7
code examples of wx.WXK_NUMPAD_ENTER().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
wx
, or try the search function
.
Example #1
Source File: __init__.py From EventGhost with GNU General Public License v2.0 | 6 votes |
def onFrameCharHook(self, event): keyCode = event.GetKeyCode() if keyCode == wx.WXK_F4: if event.AltDown(): self.destroyMenu() elif keyCode == wx.WXK_RETURN or keyCode == wx.WXK_NUMPAD_ENTER: self.GoTo() elif keyCode == wx.WXK_RIGHT or keyCode == wx.WXK_NUMPAD_RIGHT: self.MoveCursor(1) elif keyCode == wx.WXK_ESCAPE: self.destroyMenu() elif keyCode == wx.WXK_UP or keyCode == wx.WXK_NUMPAD_UP: self.Turn(1) elif keyCode == wx.WXK_DOWN or keyCode == wx.WXK_NUMPAD_DOWN: self.Turn(-1) elif keyCode == wx.WXK_LEFT or keyCode == wx.WXK_NUMPAD_LEFT: self.MoveCursor(-1) else: event.Skip()
Example #2
Source File: __init__.py From EventGhost with GNU General Public License v2.0 | 6 votes |
def onFrameCharHook(self, event): keyCode = event.GetKeyCode() if keyCode == wx.WXK_F4: if event.AltDown(): self.destroyMenu() elif keyCode == wx.WXK_RETURN or keyCode == wx.WXK_NUMPAD_ENTER: self.DefaultAction() elif keyCode == wx.WXK_RIGHT or keyCode == wx.WXK_NUMPAD_RIGHT: self.DefaultAction() elif keyCode == wx.WXK_ESCAPE: self.destroyMenu() elif keyCode == wx.WXK_UP or keyCode == wx.WXK_NUMPAD_UP: self.menuGridCtrl.MoveCursor(-1) elif keyCode == wx.WXK_DOWN or keyCode == wx.WXK_NUMPAD_DOWN: self.menuGridCtrl.MoveCursor(1) elif keyCode == wx.WXK_LEFT or keyCode == wx.WXK_NUMPAD_LEFT: if len(self.oldMenu) > 0: self.menu, ix = self.oldMenu.pop() wx.CallAfter(self.UpdateMenu,ix) else: self.destroyMenu() else: event.Skip()
Example #3
Source File: ConfigEditor.py From OpenPLC_Editor with GNU General Public License v3.0 | 5 votes |
def OnVariablesFilterKeyDown(self, event): if self.VariablesFilterFirstCharacter: keycode = event.GetKeyCode() if keycode not in [wx.WXK_RETURN, wx.WXK_NUMPAD_ENTER]: self.VariablesFilterFirstCharacter = False if keycode not in NAVIGATION_KEYS: self.VariablesFilter.SetValue("") if keycode not in [wx.WXK_DELETE, wx.WXK_NUMPAD_DELETE, wx.WXK_BACK]: event.Skip() else: event.Skip()
Example #4
Source File: ConfigEditor.py From OpenPLC_Editor with GNU General Public License v3.0 | 5 votes |
def OnNodesFilterKeyDown(self, event): if self.NodesFilterFirstCharacter: keycode = event.GetKeyCode() if keycode not in [wx.WXK_RETURN, wx.WXK_NUMPAD_ENTER]: self.NodesFilterFirstCharacter = False if keycode not in NAVIGATION_KEYS: self.NodesFilter.SetValue("") if keycode not in [wx.WXK_DELETE, wx.WXK_NUMPAD_DELETE, wx.WXK_BACK]: event.Skip() else: event.Skip()
Example #5
Source File: CellEditor.py From bookhub with MIT License | 5 votes |
def __init__(self, acceptableChars="0123456789+-"): wx.PyValidator.__init__(self) self.Bind(wx.EVT_CHAR, self._OnChar) self.acceptableChars = acceptableChars self.acceptableCodes = [ord(x) for x in self.acceptableChars] stdEditKeys = [wx.WXK_RETURN, wx.WXK_NUMPAD_ENTER, wx.WXK_ESCAPE, wx.WXK_CANCEL, wx.WXK_TAB, wx.WXK_BACK, wx.WXK_DELETE, wx.WXK_HOME, wx.WXK_END, wx.WXK_LEFT, wx.WXK_RIGHT] self.acceptableCodes.extend(stdEditKeys)
Example #6
Source File: CodeFileEditor.py From OpenPLC_Editor with GNU General Public License v3.0 | 4 votes |
def OnKeyPressed(self, event): if self.CallTipActive(): self.CallTipCancel() key = event.GetKeyCode() current_pos = self.GetCurrentPos() selected = self.GetSelection() text_selected = selected[0] != selected[1] # Test if caret is before Windows like new line text = self.GetText() if current_pos < len(text) and ord(text[current_pos]) == 13: newline_size = 2 else: newline_size = 1 # Disable to type any character in section header lines if self.GetLineState(self.LineFromPosition(current_pos)) and \ not text_selected and \ key not in NAVIGATION_KEYS + [wx.WXK_RETURN, wx.WXK_NUMPAD_ENTER]: return # Disable to delete line between code and header lines elif (self.GetCurLine()[0].strip() != "" and not text_selected and (key == wx.WXK_BACK and self.GetLineState(self.LineFromPosition(max(0, current_pos - 1))) or key in [wx.WXK_DELETE, wx.WXK_NUMPAD_DELETE] and self.GetLineState(self.LineFromPosition(min(len(text), current_pos + newline_size))))): return elif key == 32 and event.ControlDown(): # Tips if event.ShiftDown(): pass # Code completion else: self.AutoCompSetIgnoreCase(False) # so this needs to match keywords = self.KEYWORDS + [var["Name"] for var in self.Controler.GetVariables()] keywords.sort() self.AutoCompShow(0, " ".join(keywords)) else: event.Skip()
Example #7
Source File: ObjectListView.py From bookhub with MIT License | 4 votes |
def _HandleChar(self, evt): if evt.GetKeyCode() == wx.WXK_F2 and not self.IsCellEditing(): return self._PossibleStartCellEdit(self.GetFocusedRow(), self.GetPrimaryColumnIndex()) # We have to catch Return/Enter/Escape here since some types of controls # (e.g. ComboBox, UserControl) don't trigger key events that we can listen for. # Treat Return or Enter as committing the current edit operation unless the control # is a multiline text control, in which case we treat it as data if evt.GetKeyCode() in (wx.WXK_RETURN, wx.WXK_NUMPAD_ENTER) and self.IsCellEditing(): if self.cellEditor and self.cellEditor.HasFlag(wx.TE_MULTILINE): return evt.Skip() else: return self.FinishCellEdit() # Treat Escape as cancel the current edit operation if evt.GetKeyCode() in (wx.WXK_ESCAPE, wx.WXK_CANCEL) and self.IsCellEditing(): return self.CancelCellEdit() # Tab to the next editable column if evt.GetKeyCode() == wx.WXK_TAB and self.IsCellEditing(): return self._HandleTabKey(evt.ShiftDown()) # Space bar with a selection on a listview with checkboxes toggles the checkboxes if (evt.GetKeyCode() == wx.WXK_SPACE and not self.IsCellEditing() and self.checkStateColumn is not None and self.GetSelectedItemCount() > 0): return self._ToggleCheckBoxForSelection() if not self.IsCellEditing(): if self._HandleTypingEvent(evt): return if not self.IsCellEditing() and self.handleStandardKeys: # Copy selection on Ctrl-C # Why is Ctrl-C represented by 3?! Is this Windows only? if (evt.GetKeyCode() == 3): self.CopySelectionToClipboard() return # Select All on Ctrl-A if (evt.GetKeyCode() == 1): self.SelectAll() return evt.Skip()