|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/WebBrowser/Session/SessionManagerDialog.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_SessionManagerDialog(object): |
|
13 def setupUi(self, SessionManagerDialog): |
|
14 SessionManagerDialog.setObjectName("SessionManagerDialog") |
|
15 SessionManagerDialog.resize(500, 400) |
|
16 SessionManagerDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(SessionManagerDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.sessionsList = QtWidgets.QTreeWidget(parent=SessionManagerDialog) |
|
20 self.sessionsList.setAlternatingRowColors(True) |
|
21 self.sessionsList.setRootIsDecorated(False) |
|
22 self.sessionsList.setObjectName("sessionsList") |
|
23 self.gridLayout.addWidget(self.sessionsList, 0, 0, 1, 1) |
|
24 self.verticalLayout = QtWidgets.QVBoxLayout() |
|
25 self.verticalLayout.setObjectName("verticalLayout") |
|
26 self.newButton = QtWidgets.QPushButton(parent=SessionManagerDialog) |
|
27 self.newButton.setObjectName("newButton") |
|
28 self.verticalLayout.addWidget(self.newButton) |
|
29 self.renameButton = QtWidgets.QPushButton(parent=SessionManagerDialog) |
|
30 self.renameButton.setObjectName("renameButton") |
|
31 self.verticalLayout.addWidget(self.renameButton) |
|
32 self.cloneButton = QtWidgets.QPushButton(parent=SessionManagerDialog) |
|
33 self.cloneButton.setObjectName("cloneButton") |
|
34 self.verticalLayout.addWidget(self.cloneButton) |
|
35 self.deleteButton = QtWidgets.QPushButton(parent=SessionManagerDialog) |
|
36 self.deleteButton.setObjectName("deleteButton") |
|
37 self.verticalLayout.addWidget(self.deleteButton) |
|
38 self.switchButton = QtWidgets.QPushButton(parent=SessionManagerDialog) |
|
39 self.switchButton.setObjectName("switchButton") |
|
40 self.verticalLayout.addWidget(self.switchButton) |
|
41 spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) |
|
42 self.verticalLayout.addItem(spacerItem) |
|
43 self.gridLayout.addLayout(self.verticalLayout, 0, 1, 1, 1) |
|
44 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SessionManagerDialog) |
|
45 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
46 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
47 self.buttonBox.setObjectName("buttonBox") |
|
48 self.gridLayout.addWidget(self.buttonBox, 1, 0, 1, 2) |
|
49 |
|
50 self.retranslateUi(SessionManagerDialog) |
|
51 self.buttonBox.accepted.connect(SessionManagerDialog.accept) # type: ignore |
|
52 self.buttonBox.rejected.connect(SessionManagerDialog.reject) # type: ignore |
|
53 QtCore.QMetaObject.connectSlotsByName(SessionManagerDialog) |
|
54 |
|
55 def retranslateUi(self, SessionManagerDialog): |
|
56 _translate = QtCore.QCoreApplication.translate |
|
57 SessionManagerDialog.setWindowTitle(_translate("SessionManagerDialog", "Session Manager")) |
|
58 self.sessionsList.setToolTip(_translate("SessionManagerDialog", "Shows a list of available sessions")) |
|
59 self.sessionsList.headerItem().setText(0, _translate("SessionManagerDialog", "Session")) |
|
60 self.sessionsList.headerItem().setText(1, _translate("SessionManagerDialog", "Last Modified")) |
|
61 self.newButton.setToolTip(_translate("SessionManagerDialog", "Press to create a new session")) |
|
62 self.newButton.setText(_translate("SessionManagerDialog", "New")) |
|
63 self.renameButton.setToolTip(_translate("SessionManagerDialog", "Press to rename the selected session")) |
|
64 self.renameButton.setText(_translate("SessionManagerDialog", "Rename")) |
|
65 self.cloneButton.setToolTip(_translate("SessionManagerDialog", "Press to clone the selected session")) |
|
66 self.cloneButton.setText(_translate("SessionManagerDialog", "Clone")) |
|
67 self.deleteButton.setToolTip(_translate("SessionManagerDialog", "Press to delete the selected session")) |
|
68 self.deleteButton.setText(_translate("SessionManagerDialog", "Delete")) |
|
69 self.switchButton.setToolTip(_translate("SessionManagerDialog", "Press to switch to the selected session")) |
|
70 self.switchButton.setText(_translate("SessionManagerDialog", "Switch To")) |