fix: добавил icon во все конструкторы окон

This commit is contained in:
Почти Демон 2023-10-03 17:54:40 +03:00
parent 8e68316d7e
commit 6f20072457
6 changed files with 36 additions and 27 deletions

View File

@ -18,7 +18,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
import sys import sys
from PySide2.QtGui import QMovie
from PySide2.QtCore import QSize
from PySide2.QtGui import QMovie, QIcon
from PySide2.QtWidgets import QMainWindow from PySide2.QtWidgets import QMainWindow
from statapp.ui.ui_about_window import Ui_AboutWindow from statapp.ui.ui_about_window import Ui_AboutWindow
@ -47,3 +49,7 @@ class AboutWindow(QMainWindow):
version = importlib_metadata.version(__package__ or __name__) version = importlib_metadata.version(__package__ or __name__)
self.ui.versionLabel.setText(f"Версия: {version}") self.ui.versionLabel.setText(f"Версия: {version}")
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
self.setWindowIcon(icon)

View File

@ -17,11 +17,14 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from PySide2.QtCore import QSize
from PySide2.QtGui import QIcon
from PySide2.QtWidgets import QDialog, QHeaderView from PySide2.QtWidgets import QDialog, QHeaderView
from statapp.calculations import correlation_analysis from statapp.calculations import correlation_analysis
from statapp.models.correlation_analysis_model import CorrelationAnalysisModel from statapp.models.correlation_analysis_model import CorrelationAnalysisModel
from statapp.ui.ui_correlation_analysis_window import Ui_CorrelationAnalysisWindow from statapp.ui.ui_correlation_analysis_window import Ui_CorrelationAnalysisWindow
from statapp.utils import resource_path
class СorrelationAnalysisWindow(QDialog): class СorrelationAnalysisWindow(QDialog):
@ -35,3 +38,7 @@ class СorrelationAnalysisWindow(QDialog):
self.ui.tableView.setModel(self.model) self.ui.tableView.setModel(self.model)
header = self.ui.tableView.horizontalHeader() header = self.ui.tableView.horizontalHeader()
header.setSectionResizeMode(QHeaderView.ResizeMode.Stretch) header.setSectionResizeMode(QHeaderView.ResizeMode.Stretch)
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
self.setWindowIcon(icon)

View File

@ -17,12 +17,13 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from PySide2.QtCore import Slot from PySide2.QtCore import Slot, QSize
from PySide2.QtGui import QIcon
from PySide2.QtWidgets import QDialog from PySide2.QtWidgets import QDialog
from statapp.ui.ui_generate_factor_window import Ui_GenerateFactorWindow from statapp.ui.ui_generate_factor_window import Ui_GenerateFactorWindow
from statapp.models.combobox_model import ComboBoxModel from statapp.models.combobox_model import ComboBoxModel
from statapp.utils import resource_path
DIRECT_LINK = 0 DIRECT_LINK = 0
INDIRECT_LINK = 1 INDIRECT_LINK = 1
@ -43,6 +44,10 @@ class GenerateFactorWindow(QDialog):
self.ui.setupUi(self) self.ui.setupUi(self)
self.ui.typeComboBox.setModel(self._typeComboBox) self.ui.typeComboBox.setModel(self._typeComboBox)
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
self.setWindowIcon(icon)
@Slot() @Slot()
def on_generatePushButton_clicked(self): def on_generatePushButton_clicked(self):
self.typeConnection = self._typeComboBox.rawData(self.ui.typeComboBox.currentIndex())[0] self.typeConnection = self._typeComboBox.rawData(self.ui.typeComboBox.currentIndex())[0]

View File

@ -17,10 +17,12 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from PySide2.QtCore import Slot from PySide2.QtCore import Slot, QSize
from PySide2.QtGui import QIcon
from PySide2.QtWidgets import QDialog from PySide2.QtWidgets import QDialog
from statapp.ui.ui_generate_window import Ui_GenerateWindow from statapp.ui.ui_generate_window import Ui_GenerateWindow
from statapp.utils import resource_path
class GenerateWindow(QDialog): class GenerateWindow(QDialog):
@ -32,6 +34,11 @@ class GenerateWindow(QDialog):
self.ui = Ui_GenerateWindow() self.ui = Ui_GenerateWindow()
self.ui.setupUi(self) self.ui.setupUi(self)
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
self.setWindowIcon(icon)
@Slot() @Slot()
def on_generatePushButton_clicked(self): def on_generatePushButton_clicked(self):

View File

@ -112,10 +112,6 @@ class MainWindow(QMainWindow):
def on_generateYaction_triggered(self): def on_generateYaction_triggered(self):
gw = GenerateWindow() gw = GenerateWindow()
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
gw.setWindowIcon(icon)
if gw.exec(): if gw.exec():
y = np.random.normal(gw.mat, gw.deviation, size=(gw.count, 1)) y = np.random.normal(gw.mat, gw.deviation, size=(gw.count, 1))
self.model.updateAllData(y.round(2)) self.model.updateAllData(y.round(2))
@ -126,10 +122,6 @@ class MainWindow(QMainWindow):
def on_generateXaction_triggered(self): def on_generateXaction_triggered(self):
gfw = GenerateFactorWindow() gfw = GenerateFactorWindow()
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
gfw.setWindowIcon(icon)
if gfw.exec(): if gfw.exec():
data = self.model.getData() data = self.model.getData()
y = self.model.getY() y = self.model.getY()
@ -146,31 +138,16 @@ class MainWindow(QMainWindow):
def on_aboutmenuaction_triggered(self): def on_aboutmenuaction_triggered(self):
global about_window global about_window
about_window = AboutWindow() about_window = AboutWindow()
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
about_window.setWindowIcon(icon)
about_window.show() about_window.show()
@Slot() @Slot()
def on_varianceAnalysisAction_triggered(self): def on_varianceAnalysisAction_triggered(self):
dw = VarianceAnalysisWindow(self.model.getData()) dw = VarianceAnalysisWindow(self.model.getData())
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
dw.setWindowIcon(icon)
dw.exec() dw.exec()
@Slot() @Slot()
def on_correlationAnalisisAction_triggered(self): def on_correlationAnalisisAction_triggered(self):
dw = СorrelationAnalysisWindow(self.model.getData()) dw = СorrelationAnalysisWindow(self.model.getData())
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
dw.setWindowIcon(icon)
dw.exec() dw.exec()
def closeEvent(self, event): def closeEvent(self, event):

View File

@ -17,11 +17,14 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from PySide2.QtCore import QSize
from PySide2.QtGui import QIcon
from PySide2.QtWidgets import QDialog, QHeaderView from PySide2.QtWidgets import QDialog, QHeaderView
from statapp.calculations import variance_analysis from statapp.calculations import variance_analysis
from statapp.models.variance_analysis_model import VarianceAnalysisModel from statapp.models.variance_analysis_model import VarianceAnalysisModel
from statapp.ui.ui_variance_analysis_window import Ui_VarianceAnalysisWindow from statapp.ui.ui_variance_analysis_window import Ui_VarianceAnalysisWindow
from statapp.utils import resource_path
class VarianceAnalysisWindow(QDialog): class VarianceAnalysisWindow(QDialog):
@ -35,3 +38,7 @@ class VarianceAnalysisWindow(QDialog):
self.ui.tableView.setModel(self.model) self.ui.tableView.setModel(self.model)
header = self.ui.tableView.horizontalHeader() header = self.ui.tableView.horizontalHeader()
header.setSectionResizeMode(QHeaderView.ResizeMode.Stretch) header.setSectionResizeMode(QHeaderView.ResizeMode.Stretch)
icon = QIcon()
icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off)
self.setWindowIcon(icon)