setupEM 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {setupem-0.2.0 → setupem-0.2.1}/PKG-INFO +1 -1
- {setupem-0.2.0 → setupem-0.2.1}/pyproject.toml +1 -1
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM/setupEM.py +4 -3
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM/setupThermal.py +4 -6
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM.egg-info/PKG-INFO +1 -1
- {setupem-0.2.0 → setupem-0.2.1}/README.md +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/setup.cfg +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM/__init__.py +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM/__main__.py +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM/data/SG13G2_100um.xml +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM/data/SG13G2_200um.xml +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM/data/SG13G2_nosub.xml +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM.egg-info/SOURCES.txt +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM.egg-info/dependency_links.txt +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM.egg-info/entry_points.txt +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM.egg-info/requires.txt +0 -0
- {setupem-0.2.0 → setupem-0.2.1}/src/setupEM.egg-info/top_level.txt +0 -0
|
@@ -200,7 +200,7 @@ class FileInputTab(QWidget):
|
|
|
200
200
|
self.main_layout.setAlignment(Qt.AlignTop)
|
|
201
201
|
|
|
202
202
|
# ---------- GDSII FILE GROUP ----------
|
|
203
|
-
left_label_width =
|
|
203
|
+
left_label_width = 220
|
|
204
204
|
|
|
205
205
|
self.gds_group = QGroupBox("GDSII Layout File")
|
|
206
206
|
self.gds_layout = QVBoxLayout()
|
|
@@ -221,15 +221,16 @@ class FileInputTab(QWidget):
|
|
|
221
221
|
|
|
222
222
|
|
|
223
223
|
self.cellname_layout = QHBoxLayout()
|
|
224
|
-
label = QLabel("Cellname
|
|
224
|
+
label = QLabel("Cellname")
|
|
225
225
|
label.setFixedWidth(left_label_width)
|
|
226
226
|
self.cellname_layout.addWidget(label)
|
|
227
|
-
label.setFixedWidth(left_label_width)
|
|
228
227
|
self.cellname_box = QComboBox()
|
|
229
228
|
self.cellname_box.setFixedWidth(250)
|
|
230
229
|
self.cellname_box.setStyleSheet(COMBO_STYLE_OPTIONAL)
|
|
231
230
|
self.cellname_box.addItems([""])
|
|
232
231
|
self.cellname_layout.addWidget(self.cellname_box)
|
|
232
|
+
self.cellname_label2 = QLabel(" (leave empty for default)")
|
|
233
|
+
self.cellname_layout.addWidget(self.cellname_label2)
|
|
233
234
|
self.cellname_layout.addStretch()
|
|
234
235
|
self.gds_layout.addLayout(self.cellname_layout)
|
|
235
236
|
|
|
@@ -199,8 +199,7 @@ class FileInputTab(QWidget):
|
|
|
199
199
|
self.main_layout.setAlignment(Qt.AlignTop)
|
|
200
200
|
|
|
201
201
|
# ---------- GDSII FILE GROUP ----------
|
|
202
|
-
|
|
203
|
-
left_label_width = 200
|
|
202
|
+
left_label_width = 220
|
|
204
203
|
|
|
205
204
|
self.gds_group = QGroupBox("GDSII Layout File")
|
|
206
205
|
self.gds_layout = QVBoxLayout()
|
|
@@ -221,15 +220,16 @@ class FileInputTab(QWidget):
|
|
|
221
220
|
|
|
222
221
|
|
|
223
222
|
self.cellname_layout = QHBoxLayout()
|
|
224
|
-
label = QLabel("Cellname
|
|
223
|
+
label = QLabel("Cellname")
|
|
225
224
|
label.setFixedWidth(left_label_width)
|
|
226
225
|
self.cellname_layout.addWidget(label)
|
|
227
|
-
label.setFixedWidth(left_label_width)
|
|
228
226
|
self.cellname_box = QComboBox()
|
|
229
227
|
self.cellname_box.setFixedWidth(250)
|
|
230
228
|
self.cellname_box.setStyleSheet(COMBO_STYLE_OPTIONAL)
|
|
231
229
|
self.cellname_box.addItems([""])
|
|
232
230
|
self.cellname_layout.addWidget(self.cellname_box)
|
|
231
|
+
self.cellname_label2 = QLabel(" (leave empty for default)")
|
|
232
|
+
self.cellname_layout.addWidget(self.cellname_label2)
|
|
233
233
|
self.cellname_layout.addStretch()
|
|
234
234
|
self.gds_layout.addLayout(self.cellname_layout)
|
|
235
235
|
|
|
@@ -248,7 +248,6 @@ class FileInputTab(QWidget):
|
|
|
248
248
|
self.gds_layout.addLayout(self.purpose_layout)
|
|
249
249
|
|
|
250
250
|
|
|
251
|
-
|
|
252
251
|
self.viamerge_layout = QHBoxLayout()
|
|
253
252
|
self.viamerge_label1 = QLabel("Merge via arrays with spacing ")
|
|
254
253
|
self.viamerge_label1.setFixedWidth(left_label_width)
|
|
@@ -273,7 +272,6 @@ class FileInputTab(QWidget):
|
|
|
273
272
|
|
|
274
273
|
self.gds_group.setLayout(self.gds_layout)
|
|
275
274
|
|
|
276
|
-
|
|
277
275
|
# ---------- XML FILE GROUP ----------
|
|
278
276
|
|
|
279
277
|
self.XML_group = QGroupBox("XML Stackup File")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|