-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow_ui.py
More file actions
executable file
·51 lines (44 loc) · 3.08 KB
/
MainWindow_ui.py
File metadata and controls
executable file
·51 lines (44 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '/Users/kylegolcynski/Documents/GitHub/Project-Creator/MainWindow.ui'
#
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_DocumentCreationWidget(object):
def setupUi(self, DocumentCreationWidget):
DocumentCreationWidget.setObjectName("DocumentCreationWidget")
DocumentCreationWidget.resize(400, 500)
self.verticalLayout = QtWidgets.QVBoxLayout(DocumentCreationWidget)
self.verticalLayout.setObjectName("verticalLayout")
self.templateList = QtWidgets.QListView(DocumentCreationWidget)
self.templateList.setObjectName("templateList")
self.verticalLayout.addWidget(self.templateList)
self.horizontalLayout = QtWidgets.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
self.destinationFolder = QtWidgets.QLineEdit(DocumentCreationWidget)
self.destinationFolder.setReadOnly(True)
self.destinationFolder.setObjectName("destinationFolder")
self.horizontalLayout.addWidget(self.destinationFolder)
self.browseButton = QtWidgets.QPushButton(DocumentCreationWidget)
self.browseButton.setObjectName("browseButton")
self.horizontalLayout.addWidget(self.browseButton)
self.verticalLayout.addLayout(self.horizontalLayout)
self.nameLineEdit = QtWidgets.QLineEdit(DocumentCreationWidget)
self.nameLineEdit.setObjectName("nameLineEdit")
self.verticalLayout.addWidget(self.nameLineEdit)
self.createButton = QtWidgets.QPushButton(DocumentCreationWidget)
self.createButton.setObjectName("createButton")
self.verticalLayout.addWidget(self.createButton)
self.retranslateUi(DocumentCreationWidget)
QtCore.QMetaObject.connectSlotsByName(DocumentCreationWidget)
def retranslateUi(self, DocumentCreationWidget):
_translate = QtCore.QCoreApplication.translate
DocumentCreationWidget.setWindowTitle(_translate("DocumentCreationWidget", "Document Creation From Template"))
self.destinationFolder.setToolTip(_translate("DocumentCreationWidget", "Choose an existing directory to save the new project in.<br />Click <i>Browse</i> if you would like to specify a different location."))
self.destinationFolder.setPlaceholderText(_translate("DocumentCreationWidget", "Location"))
self.browseButton.setText(_translate("DocumentCreationWidget", "Browse..."))
self.nameLineEdit.setToolTip(_translate("DocumentCreationWidget", "Enter the name of your project.<br />A new folder called <i>Name</i> will be created in <i>Location</i> with the following name.<br /><i>Name</i> must be a valid folder name that doesn\'t already exist inside <i>Location</i>."))
self.nameLineEdit.setPlaceholderText(_translate("DocumentCreationWidget", "Name"))
self.createButton.setText(_translate("DocumentCreationWidget", "Create Template"))