Python PyQt5.QtGui.QKeySequence() Examples
The following are 30 code examples for showing how to use PyQt5.QtGui.QKeySequence(). These examples are extracted from open source projects. 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 check out the related API usage on the sidebar.
You may also want to check out all available functions/classes of the module
PyQt5.QtGui
, or try the search function
.
Example 1
Project: IDASkins Author: zyantific File: objectinspector.py License: MIT License | 6 votes |
def __init__(self, *args, **kwargs): super(ObjectInspector, self).__init__(*args, **kwargs) self._selected_widget = None self._ui = Ui_ObjectInspector() self._ui.setupUi(self) # Make everything monospace. font = QFont('Monospace') font.setStyleHint(QFont.TypeWriter) self._ui.teInspectionResults.setFont(font) # Register signals. self._update_key = QShortcut(QKeySequence(Qt.Key_F7), self) self._ui.btnSelectParent.released.connect(self.select_parent) self._update_key.activated.connect(self.update_inspection)
Example 2
Project: QMusic Author: dragondjf File: dmenu.py License: GNU Lesser General Public License v2.1 | 6 votes |
def creatAction(self, submenu, menuaction): if 'checkable' in menuaction: setattr(self, '%sAction' % menuaction['trigger'], QAction( QIcon(QPixmap(menuaction['icon'])), u'%s' % menuaction['name'], self, checkable=menuaction['checkable'])) else: setattr(self, '%sAction' % menuaction['trigger'], QAction( QIcon(QPixmap(menuaction['icon'])), u'%s' % menuaction['name'], self, )) action = getattr(self, '%sAction' % menuaction['trigger']) action.setShortcut(QKeySequence(menuaction['shortcut'])) submenu.addAction(action) self.qactions.update({menuaction['trigger']: action})
Example 3
Project: awesometts-anki-addon Author: AwesomeTTS File: __init__.py License: GNU General Public License v3.0 | 6 votes |
def window_shortcuts(): """Enables shortcuts to launch windows.""" def on_sequence_change(new_config): """Update sequences on configuration changes.""" for key, sequence in sequences.items(): new_sequence = QKeySequence(new_config['launch_' + key] or None) sequence.swap(new_sequence) try: aqt.mw.form.menuTools.findChild(gui.Action). \ setShortcut(sequences['configurator']) except AttributeError: # we do not have a config menu pass on_sequence_change(config) # set config menu if created before we ran config.bind(['launch_' + key for key in sequences.keys()], on_sequence_change)
Example 4
Project: awesometts-anki-addon Author: AwesomeTTS File: common.py License: GNU General Public License v3.0 | 6 votes |
def key_event_combo(event): """ Given a key event, returns an integer representing the combination of keys that was pressed or released. Certain keys are blacklisted (see BLACKLIST) and key_event_combo() will return None if it sees these keys in the primary key() slot for an event. When used by themselves or exclusively with modifiers, these keys cause various problems: gibberish strings returned from QKeySequence#toString() and in menus, inability to capture the keystroke because the window manager does not forward it to Qt, ambiguous shortcuts where order would matter (e.g. Ctrl + Alt would produce a different numerical value than Alt + Ctrl, because the key codes for Alt and Ctrl are different from the modifier flag codes for Alt and Ctrl), and clashes with input navigation. """ key = event.key() if key < 32 or key in key_event_combo.BLACKLIST: return None modifiers = event.modifiers() return key + sum(flag for flag in key_event_combo.MOD_FLAGS if modifiers & flag)
Example 5
Project: Miyamoto Author: aboood40091 File: puzzle.py License: GNU General Public License v3.0 | 6 votes |
def setupMenus(self): fileMenu = self.menuBar().addMenu("&File") pixmap = QtGui.QPixmap(60,60) pixmap.fill(Qt.black) icon = QtGui.QIcon(pixmap) fileMenu.addAction("Import Tileset from file...", self.openTilesetfromFile, QtGui.QKeySequence.Open) fileMenu.addAction("Export Tileset...", self.saveTilesetAs, QtGui.QKeySequence.SaveAs) fileMenu.addAction("Import Image...", self.openImage, QtGui.QKeySequence('Ctrl+I')) fileMenu.addAction("Export Image...", self.saveImage, QtGui.QKeySequence('Ctrl+E')) fileMenu.addAction("Import Normal Map...", self.openNml, QtGui.QKeySequence('Ctrl+Shift+I')) fileMenu.addAction("Export Normal Map...", self.saveNml, QtGui.QKeySequence('Ctrl+Shift+E')) fileMenu.addAction("Save and Quit", self.saveTileset, QtGui.QKeySequence.Save) fileMenu.addAction("Quit", self.close, QtGui.QKeySequence('Ctrl-Q')) taskMenu = self.menuBar().addMenu("&Tasks") taskMenu.addAction("Toggle Normal Map", self.toggleNormal, QtGui.QKeySequence('Ctrl+Shift+N')) taskMenu.addAction("Show Tiles info...", self.showInfo, QtGui.QKeySequence('Ctrl+P')) taskMenu.addAction("Import object from file...", self.importObjFromFile, '') taskMenu.addAction("Export object...", self.saveObject, '') taskMenu.addAction("Export all objects...", self.saveAllObjects, '') taskMenu.addAction("Clear Collision Data", self.clearCollisions, QtGui.QKeySequence('Ctrl+Shift+Backspace')) taskMenu.addAction("Clear Object Data", self.clearObjects, QtGui.QKeySequence('Ctrl+Alt+Backspace'))
Example 6
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_1116.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name == '_': self.uiList[menu_str].addSeparator() else: if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 7
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_1020.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name == '_': self.uiList[menu_str].addSeparator() else: if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 8
Project: universal_tool_template.py Author: shiningdesign File: ClassName_1010.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name == '_': self.uiList[menu_str].addSeparator() else: if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 9
Project: universal_tool_template.py Author: shiningdesign File: UITranslator.py License: MIT License | 6 votes |
def setupMenu(self): self.quickMenu(['file_menu;&File','setting_menu;&Setting','help_menu;&Help']) cur_menu = self.uiList['setting_menu'] self.quickMenuAction('setParaA_atn','Set Parameter &A','A example of tip notice.','setParaA.png', cur_menu) self.uiList['setParaA_atn'].setShortcut(QtGui.QKeySequence("Ctrl+R")) cur_menu.addSeparator() # for file menu cur_menu = self.uiList['file_menu'] self.quickMenuAction('newLang_atn','&Add New Language','Add a new translation.','newLang.png', cur_menu) self.quickMenuAction('resetLang_atn','&Reset Languages','Reset All.','resetLang.png', cur_menu) # for info review cur_menu = self.uiList['help_menu'] self.quickMenuAction('helpHostMode_atnNone','Host Mode - {}'.format(hostMode),'Host Running.','', cur_menu) self.quickMenuAction('helpPyMode_atnNone','Python Mode - {}'.format(pyMode),'Python Library Running.','', cur_menu) self.quickMenuAction('helpQtMode_atnNone','Qt Mode - {}'.format(qtModeList[qtMode]),'Qt Library Running.','', cur_menu) self.quickMenuAction('helpTemplate_atnNone','Universal Tool Teamplate - {}'.format(tpl_ver),'based on Univeral Tool Template v{} by Shining Ying - https://github.com/shiningdesign/universal_tool_template.py'.format(tpl_ver),'', cur_menu) cur_menu.addSeparator() self.uiList['helpGuide_msg'] = "How to Use:\n1. Put source info in\n2. Click Process button\n3. Check result output\n4. Save memory info into a file." self.quickMenuAction('helpGuide_atnMsg','Usage Guide','How to Usge Guide.','helpGuide.png', cur_menu)
Example 10
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_1115.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name == '_': self.uiList[menu_str].addSeparator() else: if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 11
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_1112.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name == '_': self.uiList[menu_str].addSeparator() else: if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 12
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_1100.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name == '_': self.uiList[menu_str].addSeparator() else: if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 13
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_1110.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name == '_': self.uiList[menu_str].addSeparator() else: if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 14
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_0803.py License: MIT License | 6 votes |
def setupMenu(self): self.quickMenu(['file_menu;&File','setting_menu;&Setting','help_menu;&Help']) cur_menu = self.uiList['setting_menu'] self.quickMenuAction('setParaA_atn','Set Parameter &A','A example of tip notice.','setParaA.png', cur_menu) self.uiList['setParaA_atn'].setShortcut(QtGui.QKeySequence("Ctrl+R")) cur_menu.addSeparator() if 'help_menu' in self.uiList.keys(): # for info review cur_menu = self.uiList['help_menu'] self.quickMenuAction('helpHostMode_atnNone','Host Mode - {}'.format(hostMode),'Host Running.','', cur_menu) self.quickMenuAction('helpPyMode_atnNone','Python Mode - {}'.format(pyMode),'Python Library Running.','', cur_menu) self.quickMenuAction('helpQtMode_atnNone','Qt Mode - {}'.format(qtModeList[qtMode]),'Qt Library Running.','', cur_menu) self.quickMenuAction('helpTemplate_atnNone','Universal Tool Teamplate - {}'.format(tpl_ver),'based on Univeral Tool Template v{0} by Shining Ying - https://github.com/shiningdesign/universal{1}tool{1}template.py'.format(tpl_ver,'_'),'', cur_menu) cur_menu.addSeparator() self.uiList['helpGuide_msg'] = self.help self.quickMenuAction('helpGuide_atnMsg','Usage Guide','How to Usge Guide.','helpGuide.png', cur_menu)
Example 15
Project: universal_tool_template.py Author: shiningdesign File: universal_tool_template_1010.py License: MIT License | 6 votes |
def qui_menu(self, action_list_str, menu_str): # qui menu creation # syntax: self.qui_menu('right_menu_createFolder_atn;Create Folder,Ctrl+D | right_menu_openFolder_atn;Open Folder', 'right_menu') if menu_str not in self.uiList.keys(): self.uiList[menu_str] = QtWidgets.QMenu() create_opt_list = [ x.strip() for x in action_list_str.split('|') ] for each_creation in create_opt_list: ui_info = [ x.strip() for x in each_creation.split(';') ] atn_name = ui_info[0] atn_title = '' atn_hotkey = '' if len(ui_info) > 1: options = ui_info[1].split(',') atn_title = '' if len(options) < 1 else options[0] atn_hotkey = '' if len(options) < 2 else options[1] if atn_name != '': if atn_name not in self.uiList.keys(): self.uiList[atn_name] = QtWidgets.QAction(atn_title, self) if atn_hotkey != '': self.uiList[atn_name].setShortcut(QtGui.QKeySequence(atn_hotkey)) self.uiList[menu_str].addAction(self.uiList[atn_name])
Example 16
Project: tierpsy-tracker Author: ver228 File: MWTrackerViewer.py License: MIT License | 6 votes |
def __init__(self, ui): super().__init__(ui) self.wlab = WLAB self.label_type = 'worm_label' self.ui.pushButton_U.clicked.connect( partial(self._h_tag_worm, self.wlab['U'])) self.ui.pushButton_W.clicked.connect( partial(self._h_tag_worm, self.wlab['WORM'])) self.ui.pushButton_WS.clicked.connect( partial(self._h_tag_worm, self.wlab['WORMS'])) self.ui.pushButton_B.clicked.connect( partial(self._h_tag_worm, self.wlab['BAD'])) self.ui.pushButton_W.setShortcut(QKeySequence(Qt.Key_W)) self.ui.pushButton_U.setShortcut(QKeySequence(Qt.Key_U)) self.ui.pushButton_WS.setShortcut(QKeySequence(Qt.Key_C)) self.ui.pushButton_B.setShortcut(QKeySequence(Qt.Key_B))
Example 17
Project: lxa5 Author: linguistica-uchicago File: main_window.py License: MIT License | 6 votes |
def create_action(self, text=None, slot=None, tip=None, shortcut=None): """ This create actions for the File menu, things like Read Corpus, Rerun Corpus etc """ action = QAction(text, self) if shortcut: action.setShortcut(shortcut) if tip: action.setToolTip(tip) action.setStatusTip(tip) if slot: # noinspection PyUnresolvedReferences action.triggered.connect(slot) if shortcut: # noinspection PyUnresolvedReferences QShortcut(QKeySequence(shortcut), self).activated.connect(slot) return action
Example 18
Project: incremental-reading Author: luoliyan File: util.py License: ISC License | 6 votes |
def addMenuItem(path, text, function, keys=None): action = QAction(text, mw) if keys: action.setShortcut(QKeySequence(keys)) action.triggered.connect(function) if path == 'File': mw.form.menuCol.addAction(action) elif path == 'Edit': mw.form.menuEdit.addAction(action) elif path == 'Tools': mw.form.menuTools.addAction(action) elif path == 'Help': mw.form.menuHelp.addAction(action) else: addMenu(path) mw.customMenus[path].addAction(action)
Example 19
Project: dcc Author: amimo File: HexViewMode.py License: Apache License 2.0 | 5 votes |
def initUI(self): self.setWindowTitle('Annotations') self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Shift+/"), self, self.close, self.close)
Example 20
Project: dcc Author: amimo File: binwindow.py License: Apache License 2.0 | 5 votes |
def initUI(self): self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("/"), self, self.close, self.close) self.ui.pushButton.clicked.connect(self.onClicked) width = self.ui.size().width() + 15 height = self.ui.size().height() + 15 self.setFixedSize(width, height)
Example 21
Project: Lector Author: BasioMeusPuga File: widgets.py License: GNU General Public License v3.0 | 5 votes |
def generate_keyboard_shortcuts(self): ksNextChapter = QtWidgets.QShortcut( QtGui.QKeySequence('Right'), self.contentView) ksNextChapter.setObjectName('nextChapter') ksNextChapter.activated.connect(self.sneaky_change) ksPrevChapter = QtWidgets.QShortcut( QtGui.QKeySequence('Left'), self.contentView) ksPrevChapter.setObjectName('prevChapter') ksPrevChapter.activated.connect(self.sneaky_change) ksGoFullscreen = QtWidgets.QShortcut( QtGui.QKeySequence('F'), self.contentView) ksGoFullscreen.activated.connect(self.go_fullscreen) ksExitFullscreen = QtWidgets.QShortcut( QtGui.QKeySequence('Escape'), self.contentView) ksExitFullscreen.setContext(QtCore.Qt.ApplicationShortcut) ksExitFullscreen.activated.connect(self.exit_fullscreen) ksToggleBookmarks = QtWidgets.QShortcut( QtGui.QKeySequence('Ctrl+B'), self.contentView) ksToggleBookmarks.activated.connect( lambda: self.toggle_side_dock(0)) # Shortcuts not required for comic view functionality if not self.are_we_doing_images_only: ksToggleAnnotations = QtWidgets.QShortcut( QtGui.QKeySequence('Ctrl+N'), self.contentView) ksToggleAnnotations.activated.connect( lambda: self.toggle_side_dock(1)) ksToggleSearch = QtWidgets.QShortcut( QtGui.QKeySequence('Ctrl+F'), self.contentView) ksToggleSearch.activated.connect( lambda: self.toggle_side_dock(2))
Example 22
Project: persepolis Author: persepolisdm File: setting.py License: GNU General Public License v3.0 | 5 votes |
def eventFilter(self, source, event): if event.type() == QEvent.KeyPress: if event.key(): # show new keys in window self.capturedKeyLabel.setText(str(QKeySequence(event.modifiers() | event.key()).toString())) return super(KeyCapturingWindow, self).eventFilter(source, event)
Example 23
Project: qiew Author: mtivadar File: qiew.py License: GNU General Public License v2.0 | 5 votes |
def initUI(self): self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("F4"), self, self.close, self.close) #QtCore.QObject.connect(self.ui.ok, QtCore.SIGNAL('clicked()'), self.onClicked)
Example 24
Project: qiew Author: mtivadar File: qiew.py License: GNU General Public License v2.0 | 5 votes |
def initUI(self): self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("F10"), self, self.close, self.close) self.ui.rsel.setChecked(True) self.ui.rbin.setChecked(True) #QtCore.QObject.connect(self.ui.ok, QtCore.SIGNAL('clicked()'), self.onClicked) self.ui.ok.clicked.connect(lambda: self.onClicked())
Example 25
Project: qiew Author: mtivadar File: qiew.py License: GNU General Public License v2.0 | 5 votes |
def initUI(self): self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("/"), self, self.close, self.close) self.ui.pushButton.clicked.connect(lambda x: self.onClicked()) width = self.ui.size().width()+15 height = self.ui.size().height()+15 self.setFixedSize(width, height)
Example 26
Project: qiew Author: mtivadar File: FileFormat.py License: GNU General Public License v2.0 | 5 votes |
def initUI(self): self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Alt+G"), self, self.close, self.close) self.ui.setWindowTitle('GoTo') self.ui.lineEdit.returnPressed.connect(lambda: self.onReturnPressed())
Example 27
Project: qiew Author: mtivadar File: HexViewMode.py License: GNU General Public License v2.0 | 5 votes |
def initUI(self): self.setWindowTitle('Annotations') self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Shift+/"), self, self.close, self.close)
Example 28
Project: qiew Author: mtivadar File: bootsector.py License: GNU General Public License v2.0 | 5 votes |
def registerShortcuts(self, parent): self._parent = parent self.w = WHeaders(parent, self) self._writeData(self.w) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Alt+P"), parent, self._showit, self._showit) self.g = MyDialogGoto(parent, self) self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("Alt+G"), parent, self._g_showit, self._g_showit)] self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("F3"), parent, self.F3, self.F3)] self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("["), parent, self.skip_section_dw, self.skip_section_dw)] self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("]"), parent, self.skip_section_up, self.skip_section_up)]
Example 29
Project: qiew Author: mtivadar File: bootsector.py License: GNU General Public License v2.0 | 5 votes |
def initUI(self): self.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Alt+P"), self, self.close, self.close)
Example 30
Project: qiew Author: mtivadar File: apk.py License: GNU General Public License v2.0 | 5 votes |
def registerShortcuts(self, parent): self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("Alt+P"), parent, self.showPermissions, self.showPermissions)] self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("Alt+E"), parent, self.showEntrypoints, self.showEntrypoints)] self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("Alt+F"), parent, self.showFiles, self.showFiles)] self._Shortcuts += [QtWidgets.QShortcut(QtGui.QKeySequence("Alt+G"), parent, self._g_showit, self._g_showit)] return