src/eric7/PluginManager/Ui_PluginInstallDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/PluginManager/PluginInstallDialog.ui'
2 #
3 # Created by: PyQt6 UI code generator 6.7.0
4 #
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is
6 # run again. Do not edit this file unless you know what you are doing.
7
8
9 from PyQt6 import QtCore, QtGui, QtWidgets
10
11
12 class Ui_PluginInstallDialog(object):
13 def setupUi(self, PluginInstallDialog):
14 PluginInstallDialog.setObjectName("PluginInstallDialog")
15 PluginInstallDialog.resize(611, 362)
16 self.vboxlayout = QtWidgets.QVBoxLayout(PluginInstallDialog)
17 self.vboxlayout.setObjectName("vboxlayout")
18 self.wizard = QtWidgets.QStackedWidget(parent=PluginInstallDialog)
19 self.wizard.setObjectName("wizard")
20 self.selectionPage = QtWidgets.QWidget()
21 self.selectionPage.setObjectName("selectionPage")
22 self.gridlayout = QtWidgets.QGridLayout(self.selectionPage)
23 self.gridlayout.setContentsMargins(0, 0, 0, 0)
24 self.gridlayout.setVerticalSpacing(6)
25 self.gridlayout.setObjectName("gridlayout")
26 self.label = QtWidgets.QLabel(parent=self.selectionPage)
27 self.label.setObjectName("label")
28 self.gridlayout.addWidget(self.label, 0, 0, 1, 2)
29 self.archivesList = QtWidgets.QListWidget(parent=self.selectionPage)
30 self.archivesList.setAlternatingRowColors(True)
31 self.archivesList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
32 self.archivesList.setObjectName("archivesList")
33 self.gridlayout.addWidget(self.archivesList, 1, 0, 3, 1)
34 self.addArchivesButton = QtWidgets.QPushButton(parent=self.selectionPage)
35 self.addArchivesButton.setObjectName("addArchivesButton")
36 self.gridlayout.addWidget(self.addArchivesButton, 1, 1, 1, 1)
37 self.removeArchivesButton = QtWidgets.QPushButton(parent=self.selectionPage)
38 self.removeArchivesButton.setEnabled(False)
39 self.removeArchivesButton.setObjectName("removeArchivesButton")
40 self.gridlayout.addWidget(self.removeArchivesButton, 2, 1, 1, 1)
41 spacerItem = QtWidgets.QSpacerItem(20, 101, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
42 self.gridlayout.addItem(spacerItem, 3, 1, 1, 1)
43 self.wizard.addWidget(self.selectionPage)
44 self.destinationPage = QtWidgets.QWidget()
45 self.destinationPage.setObjectName("destinationPage")
46 self.vboxlayout1 = QtWidgets.QVBoxLayout(self.destinationPage)
47 self.vboxlayout1.setContentsMargins(0, 0, 0, 0)
48 self.vboxlayout1.setObjectName("vboxlayout1")
49 self.label_2 = QtWidgets.QLabel(parent=self.destinationPage)
50 self.label_2.setObjectName("label_2")
51 self.vboxlayout1.addWidget(self.label_2)
52 self.destinationCombo = QtWidgets.QComboBox(parent=self.destinationPage)
53 self.destinationCombo.setObjectName("destinationCombo")
54 self.vboxlayout1.addWidget(self.destinationCombo)
55 spacerItem1 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
56 self.vboxlayout1.addItem(spacerItem1)
57 self.wizard.addWidget(self.destinationPage)
58 self.summaryPage = QtWidgets.QWidget()
59 self.summaryPage.setObjectName("summaryPage")
60 self.vboxlayout2 = QtWidgets.QVBoxLayout(self.summaryPage)
61 self.vboxlayout2.setContentsMargins(0, 0, 0, 0)
62 self.vboxlayout2.setObjectName("vboxlayout2")
63 self.label_3 = QtWidgets.QLabel(parent=self.summaryPage)
64 self.label_3.setObjectName("label_3")
65 self.vboxlayout2.addWidget(self.label_3)
66 self.summaryEdit = QtWidgets.QTextEdit(parent=self.summaryPage)
67 self.summaryEdit.setReadOnly(True)
68 self.summaryEdit.setObjectName("summaryEdit")
69 self.vboxlayout2.addWidget(self.summaryEdit)
70 self.progress = QtWidgets.QProgressBar(parent=self.summaryPage)
71 self.progress.setProperty("value", 0)
72 self.progress.setObjectName("progress")
73 self.vboxlayout2.addWidget(self.progress)
74 self.wizard.addWidget(self.summaryPage)
75 self.vboxlayout.addWidget(self.wizard)
76 self.buttonBox = QtWidgets.QDialogButtonBox(parent=PluginInstallDialog)
77 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
78 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close)
79 self.buttonBox.setObjectName("buttonBox")
80 self.vboxlayout.addWidget(self.buttonBox)
81
82 self.retranslateUi(PluginInstallDialog)
83 self.wizard.setCurrentIndex(2)
84 QtCore.QMetaObject.connectSlotsByName(PluginInstallDialog)
85 PluginInstallDialog.setTabOrder(self.addArchivesButton, self.archivesList)
86 PluginInstallDialog.setTabOrder(self.archivesList, self.removeArchivesButton)
87 PluginInstallDialog.setTabOrder(self.removeArchivesButton, self.destinationCombo)
88 PluginInstallDialog.setTabOrder(self.destinationCombo, self.summaryEdit)
89 PluginInstallDialog.setTabOrder(self.summaryEdit, self.buttonBox)
90
91 def retranslateUi(self, PluginInstallDialog):
92 _translate = QtCore.QCoreApplication.translate
93 PluginInstallDialog.setWindowTitle(_translate("PluginInstallDialog", "Plugin Installation"))
94 self.label.setText(_translate("PluginInstallDialog", "<b>Enter the plugin archives to install</b>"))
95 self.archivesList.setSortingEnabled(True)
96 self.addArchivesButton.setToolTip(_translate("PluginInstallDialog", "Add plugin ZIP-archives via a file selection dialog"))
97 self.addArchivesButton.setText(_translate("PluginInstallDialog", "Add ..."))
98 self.removeArchivesButton.setToolTip(_translate("PluginInstallDialog", "Remove the selected entries from the list of plugin archives to be installed"))
99 self.removeArchivesButton.setText(_translate("PluginInstallDialog", "Remove"))
100 self.label_2.setText(_translate("PluginInstallDialog", "<b>Select the destination plugin directory</b>"))
101 self.destinationCombo.setToolTip(_translate("PluginInstallDialog", "Select the destination plugin area"))
102 self.label_3.setText(_translate("PluginInstallDialog", "<b>Installation Summary</b>"))
103 self.summaryEdit.setToolTip(_translate("PluginInstallDialog", "This shows the summary of the installation data"))
104 self.progress.setFormat(_translate("PluginInstallDialog", "%v/%m Files"))

eric ide

mercurial