--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -9,8 +9,13 @@ from PyQt6.QtCore import pyqtSlot, Qt, QCoreApplication, QPoint from PyQt6.QtWidgets import ( - QDialog, QDialogButtonBox, QHeaderView, QTreeWidgetItem, QLineEdit, QMenu, - QInputDialog + QDialog, + QDialogButtonBox, + QHeaderView, + QTreeWidgetItem, + QLineEdit, + QMenu, + QInputDialog, ) from EricWidgets.EricApplication import ericApp @@ -25,74 +30,71 @@ """ Class implementing a dialog to show a list of bookmarks. """ + def __init__(self, vcs, parent=None): """ Constructor - + @param vcs reference to the vcs object @param parent parent widget (QWidget) """ super().__init__(parent) self.setupUi(self) self.setWindowFlags(Qt.WindowType.Window) - + self.refreshButton = self.buttonBox.addButton( - self.tr("Refresh"), QDialogButtonBox.ButtonRole.ActionRole) - self.refreshButton.setToolTip( - self.tr("Press to refresh the bookmarks display")) + self.tr("Refresh"), QDialogButtonBox.ButtonRole.ActionRole + ) + self.refreshButton.setToolTip(self.tr("Press to refresh the bookmarks display")) self.refreshButton.setEnabled(False) - self.buttonBox.button( - QDialogButtonBox.StandardButton.Close).setEnabled(False) - self.buttonBox.button( - QDialogButtonBox.StandardButton.Cancel).setDefault(True) - + self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setEnabled(False) + self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel).setDefault(True) + self.vcs = vcs self.__bookmarksList = None self.__hgClient = vcs.getClient() self.__bookmarksDefined = False self.__currentRevision = "" - - self.bookmarksList.headerItem().setText( - self.bookmarksList.columnCount(), "") - self.bookmarksList.header().setSortIndicator( - 3, Qt.SortOrder.AscendingOrder) - + + self.bookmarksList.headerItem().setText(self.bookmarksList.columnCount(), "") + self.bookmarksList.header().setSortIndicator(3, Qt.SortOrder.AscendingOrder) + self.show() QCoreApplication.processEvents() - + def closeEvent(self, e): """ Protected slot implementing a close event handler. - + @param e close event (QCloseEvent) """ if self.__hgClient.isExecuting(): self.__hgClient.cancel() - + e.accept() - + def start(self, bookmarksList): """ Public slot to start the bookmarks command. - + @param bookmarksList reference to string list receiving the bookmarks (list of strings) """ self.bookmarksList.clear() self.__bookmarksDefined = False - + self.errorGroup.hide() - + self.intercept = False self.activateWindow() - + self.__bookmarksList = bookmarksList - del self.__bookmarksList[:] # clear the list - + del self.__bookmarksList[:] # clear the list + args = self.vcs.initCommand("bookmarks") - + self.refreshButton.setEnabled(False) - + out, err = self.__hgClient.runcommand(args) if err: self.__showError(err) @@ -102,84 +104,79 @@ if self.__hgClient.wasCanceled(): break self.__finish() - + def __finish(self): """ Private slot called when the process finished or the user pressed the button. """ self.refreshButton.setEnabled(True) - - self.buttonBox.button( - QDialogButtonBox.StandardButton.Close).setEnabled(True) - self.buttonBox.button( - QDialogButtonBox.StandardButton.Cancel).setEnabled(False) - self.buttonBox.button( - QDialogButtonBox.StandardButton.Close).setDefault(True) - self.buttonBox.button( - QDialogButtonBox.StandardButton.Close).setFocus( - Qt.FocusReason.OtherFocusReason) - + + self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setEnabled(True) + self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel).setEnabled(False) + self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setDefault(True) + self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setFocus( + Qt.FocusReason.OtherFocusReason + ) + if self.bookmarksList.topLevelItemCount() == 0: # no bookmarks defined - self.__generateItem( - self.tr("no bookmarks defined"), "", "", "") + self.__generateItem(self.tr("no bookmarks defined"), "", "", "") self.__bookmarksDefined = False else: self.__bookmarksDefined = True - + self.__resizeColumns() self.__resort() - + # restore current item if self.__currentRevision: items = self.bookmarksList.findItems( - self.__currentRevision, Qt.MatchFlag.MatchExactly, 0) + self.__currentRevision, Qt.MatchFlag.MatchExactly, 0 + ) if items: self.bookmarksList.setCurrentItem(items[0]) self.__currentRevision = "" self.bookmarksList.setFocus(Qt.FocusReason.OtherFocusReason) - + def on_buttonBox_clicked(self, button): """ Private slot called by a button of the button box clicked. - + @param button button that was clicked (QAbstractButton) """ - if button == self.buttonBox.button( - QDialogButtonBox.StandardButton.Close - ): + if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): self.close() - elif button == self.buttonBox.button( - QDialogButtonBox.StandardButton.Cancel - ): + elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): if self.__hgClient: self.__hgClient.cancel() else: self.__finish() elif button == self.refreshButton: self.on_refreshButton_clicked() - + def __resort(self): """ Private method to resort the tree. """ self.bookmarksList.sortItems( self.bookmarksList.sortColumn(), - self.bookmarksList.header().sortIndicatorOrder()) - + self.bookmarksList.header().sortIndicatorOrder(), + ) + def __resizeColumns(self): """ Private method to resize the list columns. """ self.bookmarksList.header().resizeSections( - QHeaderView.ResizeMode.ResizeToContents) + QHeaderView.ResizeMode.ResizeToContents + ) self.bookmarksList.header().setStretchLastSection(True) - + def __generateItem(self, revision, changeset, status, name): """ Private method to generate a bookmark item in the bookmarks list. - + @param revision revision of the bookmark (string) @param changeset changeset of the bookmark (string) @param status of the bookmark (string) @@ -198,11 +195,11 @@ else: # error message itm.setData(0, Qt.ItemDataRole.DisplayRole, revision) - + def __processOutputLine(self, line): """ Private method to process the lines of output. - + @param line output line to be processed (string) """ li = line.split() @@ -219,17 +216,17 @@ self.__generateItem(rev, changeset, status, name) if self.__bookmarksList is not None: self.__bookmarksList.append(name) - + def __showError(self, out): """ Private slot to show some error. - + @param out error to be shown (string) """ self.errorGroup.show() self.errors.insertPlainText(out) self.errors.ensureCursorVisible() - + @pyqtSlot() def on_refreshButton_clicked(self): """ @@ -241,14 +238,14 @@ self.__currentRevision = itm.text(0) else: self.__currentRevision = "" - + self.start(self.__bookmarksList) - + @pyqtSlot(QPoint) def on_bookmarksList_customContextMenuRequested(self, pos): """ Private slot to handle the context menu request. - + @param pos position the context menu was requetsed at @type QPoint """ @@ -257,36 +254,50 @@ menu = QMenu(self.bookmarksList) menu.addAction( UI.PixmapCache.getIcon("vcsSwitch"), - self.tr("Switch to"), self.__switchTo) + self.tr("Switch to"), + self.__switchTo, + ) menu.addSeparator() menu.addAction( UI.PixmapCache.getIcon("deleteBookmark"), - self.tr("Delete"), self.__deleteBookmark) + self.tr("Delete"), + self.__deleteBookmark, + ) menu.addAction( UI.PixmapCache.getIcon("renameBookmark"), - self.tr("Rename"), self.__renameBookmark) + self.tr("Rename"), + self.__renameBookmark, + ) menu.addSeparator() act = menu.addAction( UI.PixmapCache.getIcon("pullBookmark"), - self.tr("Pull"), self.__pullBookmark) + self.tr("Pull"), + self.__pullBookmark, + ) act.setEnabled(self.vcs.canPull()) act = menu.addAction( UI.PixmapCache.getIcon("pushBookmark"), - self.tr("Push"), self.__pushBookmark) + self.tr("Push"), + self.__pushBookmark, + ) act.setEnabled(self.vcs.canPush()) menu.addSeparator() act = menu.addAction( UI.PixmapCache.getIcon("pushBookmark"), - self.tr("Push Current"), self.__pushCurrentBookmark) + self.tr("Push Current"), + self.__pushCurrentBookmark, + ) act.setEnabled(self.vcs.canPush()) if self.vcs.version >= (5, 7): act = menu.addAction( UI.PixmapCache.getIcon("pushBookmark"), - self.tr("Push All"), self.__pushAllBookmarks) + self.tr("Push All"), + self.__pushAllBookmarks, + ) act.setEnabled(self.vcs.canPush()) - + menu.popup(self.bookmarksList.mapToGlobal(pos)) - + def __switchTo(self): """ Private slot to switch the working directory to the selected revision. @@ -299,15 +310,15 @@ res = EricMessageBox.yesNo( None, self.tr("Switch"), - self.tr( - """The project should be reread. Do this now?"""), - yesDefault=True) + self.tr("""The project should be reread. Do this now?"""), + yesDefault=True, + ) if res: ericApp().getObject("Project").reopenProject() return - + self.on_refreshButton_clicked() - + def __deleteBookmark(self): """ Private slot to delete the selected bookmark. @@ -318,12 +329,14 @@ yes = EricMessageBox.yesNo( self, self.tr("Delete Bookmark"), - self.tr("""<p>Shall the bookmark <b>{0}</b> really be""" - """ deleted?</p>""").format(bookmark)) + self.tr( + """<p>Shall the bookmark <b>{0}</b> really be""" """ deleted?</p>""" + ).format(bookmark), + ) if yes: self.vcs.hgBookmarkDelete(bookmark=bookmark) self.on_refreshButton_clicked() - + def __renameBookmark(self): """ Private slot to rename the selected bookmark. @@ -334,13 +347,15 @@ newName, ok = QInputDialog.getText( self, self.tr("Rename Bookmark"), - self.tr("<p>Enter the new name for bookmark <b>{0}</b>:</p>") - .format(bookmark), - QLineEdit.EchoMode.Normal) + self.tr("<p>Enter the new name for bookmark <b>{0}</b>:</p>").format( + bookmark + ), + QLineEdit.EchoMode.Normal, + ) if ok and bool(newName): self.vcs.hgBookmarkRename((bookmark, newName)) self.on_refreshButton_clicked() - + def __pullBookmark(self): """ Private slot to pull the selected bookmark. @@ -350,7 +365,7 @@ if bookmark: self.vcs.hgBookmarkPull(bookmark=bookmark) self.on_refreshButton_clicked() - + def __pushBookmark(self): """ Private slot to push the selected bookmark. @@ -360,14 +375,14 @@ if bookmark: self.vcs.hgBookmarkPush(bookmark=bookmark) self.on_refreshButton_clicked() - + def __pushCurrentBookmark(self): """ Private slot to push the current bookmark. """ self.vcs.hgBookmarkPush(current=True) self.on_refreshButton_clicked() - + def __pushAllBookmarks(self): """ Private slot to push all bookmarks.