Fri, 07 Jun 2024 10:05:06 +0200
Changed code structure and install script to include the Ui_*.py files in the code repository and do not compile *.ui files at installation time anymore. This is to cope with a backward incompatible change of Qt 6.7.0.
# -*- coding: utf-8 -*- # Copyright (c) 2014 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a dialog to enter options used to start a project in the VCS. """ from PyQt6.QtWidgets import QDialog from .Ui_GitOptionsDialog import Ui_GitOptionsDialog class GitOptionsDialog(QDialog, Ui_GitOptionsDialog): """ Class implementing a dialog to enter options used to start a project in the repository. """ def __init__(self, parent=None): """ Constructor @param parent parent widget @type QWidget """ super().__init__(parent) self.setupUi(self) msh = self.minimumSizeHint() self.resize(max(self.width(), msh.width()), msh.height()) def getData(self): """ Public slot to retrieve the data entered into the dialog. @return a dictionary containing the data entered @rtype dict """ vcsdatadict = { "message": self.vcsLogEdit.text(), } return vcsdatadict