# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'app/ui/dlg_SearchDatabase.ui' # # Created by: PyQt5 UI code generator 5.15.4 # # 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_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(383, 270) self.verticalLayout = QtWidgets.QVBoxLayout(Dialog) self.verticalLayout.setObjectName("verticalLayout") self.gridLayout = QtWidgets.QGridLayout() self.gridLayout.setObjectName("gridLayout") self.label = QtWidgets.QLabel(Dialog) self.label.setObjectName("label") self.gridLayout.addWidget(self.label, 0, 0, 1, 1) self.searchString = QtWidgets.QLineEdit(Dialog) self.searchString.setObjectName("searchString") self.gridLayout.addWidget(self.searchString, 0, 1, 1, 1) self.verticalLayout.addLayout(self.gridLayout) self.matchList = QtWidgets.QListWidget(Dialog) self.matchList.setObjectName("matchList") self.verticalLayout.addWidget(self.matchList) self.dbPath = QtWidgets.QLabel(Dialog) self.dbPath.setText("") self.dbPath.setObjectName("dbPath") self.verticalLayout.addWidget(self.dbPath) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") spacerItem = QtWidgets.QSpacerItem(88, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.btnAdd = QtWidgets.QPushButton(Dialog) self.btnAdd.setDefault(True) self.btnAdd.setObjectName("btnAdd") self.horizontalLayout.addWidget(self.btnAdd) self.btnAddClose = QtWidgets.QPushButton(Dialog) self.btnAddClose.setObjectName("btnAddClose") self.horizontalLayout.addWidget(self.btnAddClose) self.btnClose = QtWidgets.QPushButton(Dialog) self.btnClose.setObjectName("btnClose") self.horizontalLayout.addWidget(self.btnClose) self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): _translate = QtCore.QCoreApplication.translate Dialog.setWindowTitle(_translate("Dialog", "Dialog")) self.label.setText(_translate("Dialog", "Title:")) self.btnAdd.setText(_translate("Dialog", "&Add")) self.btnAddClose.setText(_translate("Dialog", "A&dd and close")) self.btnClose.setText(_translate("Dialog", "&Close"))