Python PyQt4.QtGui.QSpacerItem() Examples
The following are 30
code examples of PyQt4.QtGui.QSpacerItem().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
PyQt4.QtGui
, or try the search function
.
Example #1
Source File: licenseDialog.py From youtube-dl-GUI with MIT License | 6 votes |
def setupUi(self, Dialog): Dialog.setObjectName(_fromUtf8("Dialog")) Dialog.resize(400, 300) self.verticalLayout = QtGui.QVBoxLayout(Dialog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.textEdit = QtGui.QTextEdit(Dialog) self.textEdit.setReadOnly(True) self.textEdit.setObjectName(_fromUtf8("textEdit")) self.verticalLayout.addWidget(self.textEdit) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.ExitButton = QtGui.QPushButton(Dialog) self.ExitButton.setObjectName(_fromUtf8("ExitButton")) self.horizontalLayout.addWidget(self.ExitButton) spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem1) self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog)
Example #2
Source File: ui_add_group_dialog.py From deosorg with GNU General Public License v3.0 | 6 votes |
def setupUi(self, AddGroupDialog): AddGroupDialog.setObjectName(_fromUtf8("AddGroupDialog")) AddGroupDialog.resize(415, 111) self.verticalLayout = QtGui.QVBoxLayout(AddGroupDialog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.label = QtGui.QLabel(AddGroupDialog) self.label.setObjectName(_fromUtf8("label")) self.verticalLayout.addWidget(self.label) self.newGroupEdit = QtGui.QLineEdit(AddGroupDialog) self.newGroupEdit.setMaxLength(64) self.newGroupEdit.setObjectName(_fromUtf8("newGroupEdit")) self.verticalLayout.addWidget(self.newGroupEdit) spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.buttonBox = QtGui.QDialogButtonBox(AddGroupDialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(AddGroupDialog) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), AddGroupDialog.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), AddGroupDialog.reject) QtCore.QMetaObject.connectSlotsByName(AddGroupDialog)
Example #3
Source File: ui_trezor_passphrase_dialog.py From deosorg with GNU General Public License v3.0 | 6 votes |
def setupUi(self, TrezorPassphraseDialog): TrezorPassphraseDialog.setObjectName(_fromUtf8("TrezorPassphraseDialog")) TrezorPassphraseDialog.resize(400, 133) self.verticalLayout = QtGui.QVBoxLayout(TrezorPassphraseDialog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.label = QtGui.QLabel(TrezorPassphraseDialog) self.label.setObjectName(_fromUtf8("label")) self.verticalLayout.addWidget(self.label) self.passphraseEdit = QtGui.QLineEdit(TrezorPassphraseDialog) self.passphraseEdit.setEchoMode(QtGui.QLineEdit.Password) self.passphraseEdit.setObjectName(_fromUtf8("passphraseEdit")) self.verticalLayout.addWidget(self.passphraseEdit) spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.buttonBox = QtGui.QDialogButtonBox(TrezorPassphraseDialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(TrezorPassphraseDialog) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), TrezorPassphraseDialog.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), TrezorPassphraseDialog.reject) QtCore.QMetaObject.connectSlotsByName(TrezorPassphraseDialog)
Example #4
Source File: Alert.py From darkc0de-old-stuff with GNU General Public License v3.0 | 6 votes |
def setupUi(self, Alert): Alert.setObjectName("Alert") Alert.resize(400, 93) self.verticalLayout = QtGui.QVBoxLayout(Alert) self.verticalLayout.setObjectName("verticalLayout") self.gridLayout = QtGui.QGridLayout() self.gridLayout.setObjectName("gridLayout") spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.gridLayout.addItem(spacerItem, 0, 0, 1, 1) self.label = QtGui.QLabel(Alert) self.label.setObjectName("label") self.gridLayout.addWidget(self.label, 0, 1, 1, 1) spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.gridLayout.addItem(spacerItem1, 0, 2, 1, 1) self.verticalLayout.addLayout(self.gridLayout) self.buttonBox = QtGui.QDialogButtonBox(Alert) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Alert) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), Alert.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), Alert.reject) QtCore.QMetaObject.connectSlotsByName(Alert)
Example #5
Source File: Alert.py From darkc0de-old-stuff with GNU General Public License v3.0 | 6 votes |
def setupUi(self, Alert): Alert.setObjectName("Alert") Alert.resize(400, 93) self.verticalLayout = QtGui.QVBoxLayout(Alert) self.verticalLayout.setObjectName("verticalLayout") self.gridLayout = QtGui.QGridLayout() self.gridLayout.setObjectName("gridLayout") spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.gridLayout.addItem(spacerItem, 0, 0, 1, 1) self.label = QtGui.QLabel(Alert) self.label.setObjectName("label") self.gridLayout.addWidget(self.label, 0, 1, 1, 1) spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.gridLayout.addItem(spacerItem1, 0, 2, 1, 1) self.verticalLayout.addLayout(self.gridLayout) self.buttonBox = QtGui.QDialogButtonBox(Alert) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Alert) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), Alert.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), Alert.reject) QtCore.QMetaObject.connectSlotsByName(Alert)
Example #6
Source File: ui_change_log.py From stdm with GNU General Public License v2.0 | 6 votes |
def setupUi(self, ChangeLog): ChangeLog.setObjectName(_fromUtf8("ChangeLog")) ChangeLog.resize(714, 557) self.verticalLayout = QtGui.QVBoxLayout(ChangeLog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.webView = QtWebKit.QWebView(ChangeLog) self.webView.setUrl(QtCore.QUrl(_fromUtf8("about:blank"))) self.webView.setObjectName(_fromUtf8("webView")) self.verticalLayout.addWidget(self.webView) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) self.buttonBox = QtGui.QDialogButtonBox(ChangeLog) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.horizontalLayout.addWidget(self.buttonBox) spacerItem = QtGui.QSpacerItem(600000, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(ChangeLog) QtCore.QMetaObject.connectSlotsByName(ChangeLog)
Example #7
Source File: Sniffer.py From SimpleSniffer with GNU General Public License v3.0 | 6 votes |
def initUI(self): grid = QtGui.QGridLayout() grid.addWidget(QtGui.QLabel(u'过滤规则:', parent=self), 0, 0, 1, 1) self.filter = QtGui.QLineEdit(parent=self) grid.addWidget(self.filter, 0, 1, 1, 1) # 创建ButtonBox,用户确定和取消 buttonBox = QtGui.QDialogButtonBox(parent=self) buttonBox.setOrientation(QtCore.Qt.Horizontal) # 设置为水平方向 buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) # 确定和取消两个按钮 # 连接信号和槽 buttonBox.accepted.connect(self.accept) # 确定 buttonBox.rejected.connect(self.reject) # 取消 # 垂直布局,布局表格及按钮 layout = QtGui.QVBoxLayout() # 加入前面创建的表格布局 layout.addLayout(grid) # 放一个间隔对象美化布局 spacerItem = QtGui.QSpacerItem(20, 48, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) layout.addItem(spacerItem) # ButtonBox layout.addWidget(buttonBox) self.setLayout(layout)
Example #8
Source File: plot_view.py From qkit with GNU General Public License v2.0 | 6 votes |
def setupView(self,Form): """Set up slots for views. The x- and y-values of higher dimensional datasets can be selected to be displayed in the 1d plot. Args: self: Object of the Ui_Form class. Form: PlotWindow object that inherits the used calls here from the underlying QWidget class. Returns: No return variable. The function operates on the given object. """ sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) self._addTraceSelectorIndicator(Form,sizePolicy,TraceSelector = "VTraceXSelector", TraceIndicator="VTraceXValue", prefix = self.selector_labels[3]+': ') self._addTraceSelectorIndicator(Form,sizePolicy,TraceSelector = "VTraceYSelector", TraceIndicator="VTraceYValue", prefix = self.selector_labels[4]+': ') spacerItem = QtGui.QSpacerItem(40, 1, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self._addIndicatorLabels(Form,sizePolicy,indicators=["PointX","PointY"])
Example #9
Source File: choose_from_list_dialog_UI_pyqt4.py From anima with MIT License | 5 votes |
def setupUi(self, Dialog): Dialog.setObjectName(_fromUtf8("Dialog")) Dialog.resize(478, 280) self.verticalLayout = QtGui.QVBoxLayout(Dialog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) self.listView = QtGui.QListView(Dialog) self.listView.setObjectName(_fromUtf8("listView")) self.horizontalLayout.addWidget(self.listView) self.verticalLayout_2 = QtGui.QVBoxLayout() self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2")) spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout_2.addItem(spacerItem) self.pushButton_2 = QtGui.QPushButton(Dialog) self.pushButton_2.setObjectName(_fromUtf8("pushButton_2")) self.verticalLayout_2.addWidget(self.pushButton_2) self.pushButton = QtGui.QPushButton(Dialog) self.pushButton.setObjectName(_fromUtf8("pushButton")) self.verticalLayout_2.addWidget(self.pushButton) spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout_2.addItem(spacerItem1) self.horizontalLayout.addLayout(self.verticalLayout_2) self.listView_2 = QtGui.QListView(Dialog) self.listView_2.setObjectName(_fromUtf8("listView_2")) self.horizontalLayout.addWidget(self.listView_2) self.verticalLayout.addLayout(self.horizontalLayout) self.buttonBox = QtGui.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Dialog) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), Dialog.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), Dialog.reject) QtCore.QMetaObject.connectSlotsByName(Dialog)
Example #10
Source File: settingDialog.py From LabelImgTool with MIT License | 5 votes |
def init_UI(self): main_v_layout = QtGui.QVBoxLayout() grid = QtGui.QGridLayout() grid.addWidget(self.createModeGroup(),0,0) grid.addWidget(self.createDEToptGroup(),1,0) grid.addWidget(self.createCLSoptGroup(),2,0) grid.addWidget(self.createSEGoptGroup(),3,0) grid.addWidget(self.createBRUoptGroup(),4,0) if self.__class__.task_mode == 0: self.DET_mode_rb.setChecked(True) self.DET_model_selected() elif self.__class__.task_mode == 1: self.SEG_mode_rb.setChecked(True) self.SEG_model_selected() elif self.__class__.task_mode == 2: self.CLS_mode_rb.setChecked(True) self.CLS_model_selected() elif self.__class__.task_mode == 3: self.BRU_mode_rb.setChecked(True) self.BRU_model_selected() buttonBox = QtGui.QDialogButtonBox(parent=self) buttonBox.setOrientation(QtCore.Qt.Horizontal) buttonBox.setStandardButtons( QtGui.QDialogButtonBox.Cancel | QtGui.QDialogButtonBox.Ok) buttonBox.accepted.connect(self.accept) buttonBox.rejected.connect(self.reject) main_v_layout.addLayout(grid) spacerItem = QtGui.QSpacerItem( 20, 48, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) main_v_layout.addItem(spacerItem) main_v_layout.addWidget(buttonBox) self.setLayout(main_v_layout)
Example #11
Source File: plot_view.py From qkit with GNU General Public License v2.0 | 5 votes |
def setupVector(self,Form): """Set up slots for value_vector. It is possible to plot the data over the x_axis and display the numeric values in a table. Args: self: Object of the Ui_Form class. Form: PlotWindow object that inherits the used calls here from the underlying QWidget class. Returns: No return variable. The function operates on the given object. """ self.PlotTypeSelector = QtGui.QComboBox(Form) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.PlotTypeSelector.sizePolicy().hasHeightForWidth()) self.PlotTypeSelector.setSizePolicy(sizePolicy) self.PlotTypeSelector.setObjectName(_fromUtf8("PlotTypeSelector")) self.PlotTypeSelector.addItem(_fromUtf8("")) self.PlotTypeSelector.addItem(_fromUtf8("")) self.horizontalLayout.addWidget(self.PlotTypeSelector) self.PlotTypeSelector.setItemText(0, _translate("Form", "Line Plot", None)) self.PlotTypeSelector.setItemText(1, _translate("Form", "Table", None)) spacerItem = QtGui.QSpacerItem(40, 1, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self._addIndicatorLabels(Form,sizePolicy,indicators=["PointX","PointY"])
Example #12
Source File: ui_geoodk_converter.py From stdm with GNU General Public License v2.0 | 5 votes |
def setupUi(self, Dialog): Dialog.setObjectName(_fromUtf8("Dialog")) Dialog.resize(404, 489) self.verticalLayout = QtGui.QVBoxLayout(Dialog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.vlnotification = QtGui.QVBoxLayout() self.vlnotification.setObjectName(_fromUtf8("vlnotification")) self.verticalLayout.addLayout(self.vlnotification) self.label_3 = QtGui.QLabel(Dialog) self.label_3.setObjectName(_fromUtf8("label_3")) self.verticalLayout.addWidget(self.label_3) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) self.chk_all = QtGui.QCheckBox(Dialog) self.chk_all.setObjectName(_fromUtf8("chk_all")) self.horizontalLayout.addWidget(self.chk_all) spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.btnShowOutputFolder = QtGui.QPushButton(Dialog) self.btnShowOutputFolder.setObjectName(_fromUtf8("btnShowOutputFolder")) self.horizontalLayout.addWidget(self.btnShowOutputFolder) self.verticalLayout.addLayout(self.horizontalLayout) self.trentities = QtGui.QTreeView(Dialog) self.trentities.setObjectName(_fromUtf8("trentities")) self.verticalLayout.addWidget(self.trentities) self.ck_social_tenure = QtGui.QCheckBox(Dialog) self.ck_social_tenure.setChecked(True) self.ck_social_tenure.setObjectName(_fromUtf8("ck_social_tenure")) self.verticalLayout.addWidget(self.ck_social_tenure) self.buttonBox = QtGui.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Close|QtGui.QDialogButtonBox.Save) self.buttonBox.setCenterButtons(False) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Dialog) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), Dialog.reject) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("clicked(QAbstractButton*)")), Dialog.accept) QtCore.QMetaObject.connectSlotsByName(Dialog)
Example #13
Source File: ui_copy_profile.py From stdm with GNU General Public License v2.0 | 5 votes |
def setupUi(self, dlgCopyProfile): dlgCopyProfile.setObjectName(_fromUtf8("dlgCopyProfile")) dlgCopyProfile.resize(467, 147) dlgCopyProfile.setMinimumSize(QtCore.QSize(0, 0)) self.formLayout = QtGui.QFormLayout(dlgCopyProfile) self.formLayout.setFieldGrowthPolicy(QtGui.QFormLayout.AllNonFixedFieldsGrow) self.formLayout.setObjectName(_fromUtf8("formLayout")) self.label_2 = QtGui.QLabel(dlgCopyProfile) self.label_2.setObjectName(_fromUtf8("label_2")) self.formLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.label_2) self.edtFromProfile = QtGui.QLineEdit(dlgCopyProfile) self.edtFromProfile.setReadOnly(True) self.edtFromProfile.setObjectName(_fromUtf8("edtFromProfile")) self.formLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.edtFromProfile) spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.formLayout.setItem(1, QtGui.QFormLayout.FieldRole, spacerItem) self.label = QtGui.QLabel(dlgCopyProfile) self.label.setMinimumSize(QtCore.QSize(60, 0)) self.label.setObjectName(_fromUtf8("label")) self.formLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.label) self.edtName = QtGui.QLineEdit(dlgCopyProfile) self.edtName.setObjectName(_fromUtf8("edtName")) self.formLayout.setWidget(2, QtGui.QFormLayout.FieldRole, self.edtName) self.label_3 = QtGui.QLabel(dlgCopyProfile) self.label_3.setObjectName(_fromUtf8("label_3")) self.formLayout.setWidget(4, QtGui.QFormLayout.LabelRole, self.label_3) self.edtDesc = QtGui.QLineEdit(dlgCopyProfile) self.edtDesc.setObjectName(_fromUtf8("edtDesc")) self.formLayout.setWidget(4, QtGui.QFormLayout.FieldRole, self.edtDesc) self.buttonBox = QtGui.QDialogButtonBox(dlgCopyProfile) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.formLayout.setWidget(5, QtGui.QFormLayout.FieldRole, self.buttonBox) spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.formLayout.setItem(3, QtGui.QFormLayout.FieldRole, spacerItem1) self.retranslateUi(dlgCopyProfile) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), dlgCopyProfile.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), dlgCopyProfile.reject) QtCore.QMetaObject.connectSlotsByName(dlgCopyProfile)
Example #14
Source File: ui_composer_photo_data_source.py From stdm with GNU General Public License v2.0 | 5 votes |
def setupUi(self, PhotoDataSourceEditor): PhotoDataSourceEditor.setObjectName(_fromUtf8("PhotoDataSourceEditor")) PhotoDataSourceEditor.resize(276, 298) self.gridLayout = QtGui.QGridLayout(PhotoDataSourceEditor) self.gridLayout.setVerticalSpacing(12) self.gridLayout.setObjectName(_fromUtf8("gridLayout")) self.vl_notification = QtGui.QVBoxLayout() self.vl_notification.setObjectName(_fromUtf8("vl_notification")) self.gridLayout.addLayout(self.vl_notification, 1, 0, 1, 2) self.label_4 = QtGui.QLabel(PhotoDataSourceEditor) self.label_4.setStyleSheet(_fromUtf8("padding: 2px; font-weight: bold; background-color: rgb(200, 200, 200);")) self.label_4.setObjectName(_fromUtf8("label_4")) self.gridLayout.addWidget(self.label_4, 0, 0, 1, 2) spacerItem = QtGui.QSpacerItem(20, 118, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.gridLayout.addItem(spacerItem, 4, 1, 1, 1) self.groupBox = QtGui.QGroupBox(PhotoDataSourceEditor) self.groupBox.setMinimumSize(QtCore.QSize(0, 0)) self.groupBox.setObjectName(_fromUtf8("groupBox")) self.gridLayout_2 = QtGui.QGridLayout(self.groupBox) self.gridLayout_2.setObjectName(_fromUtf8("gridLayout_2")) self.ref_table = ReferencedTableEditor(self.groupBox) self.ref_table.setObjectName(_fromUtf8("ref_table")) self.gridLayout_2.addWidget(self.ref_table, 0, 0, 1, 1) self.gridLayout.addWidget(self.groupBox, 2, 0, 1, 2) self.label = QtGui.QLabel(PhotoDataSourceEditor) self.label.setMaximumSize(QtCore.QSize(100, 16777215)) self.label.setObjectName(_fromUtf8("label")) self.gridLayout.addWidget(self.label, 3, 0, 1, 1) self.cbo_document_type = QtGui.QComboBox(PhotoDataSourceEditor) self.cbo_document_type.setMinimumSize(QtCore.QSize(0, 30)) self.cbo_document_type.setObjectName(_fromUtf8("cbo_document_type")) self.gridLayout.addWidget(self.cbo_document_type, 3, 1, 1, 1) self.retranslateUi(PhotoDataSourceEditor) QtCore.QMetaObject.connectSlotsByName(PhotoDataSourceEditor)
Example #15
Source File: ui_composer_table_source.py From stdm with GNU General Public License v2.0 | 5 votes |
def setupUi(self, TableDataSourceEditor): TableDataSourceEditor.setObjectName(_fromUtf8("TableDataSourceEditor")) TableDataSourceEditor.resize(276, 298) self.gridLayout = QtGui.QGridLayout(TableDataSourceEditor) self.gridLayout.setVerticalSpacing(10) self.gridLayout.setObjectName(_fromUtf8("gridLayout")) self.vl_notification = QtGui.QVBoxLayout() self.vl_notification.setObjectName(_fromUtf8("vl_notification")) self.gridLayout.addLayout(self.vl_notification, 1, 0, 1, 2) self.label_4 = QtGui.QLabel(TableDataSourceEditor) self.label_4.setStyleSheet(_fromUtf8("padding: 2px; font-weight: bold; background-color: rgb(200, 200, 200);")) self.label_4.setObjectName(_fromUtf8("label_4")) self.gridLayout.addWidget(self.label_4, 0, 0, 1, 2) spacerItem = QtGui.QSpacerItem(20, 118, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.gridLayout.addItem(spacerItem, 4, 1, 1, 1) self.ref_table = ReferencedTableEditor(TableDataSourceEditor) self.ref_table.setObjectName(_fromUtf8("ref_table")) self.gridLayout.addWidget(self.ref_table, 3, 0, 1, 2) self.label = QtGui.QLabel(TableDataSourceEditor) self.label.setMinimumSize(QtCore.QSize(0, 30)) self.label.setScaledContents(False) self.label.setWordWrap(True) self.label.setObjectName(_fromUtf8("label")) self.gridLayout.addWidget(self.label, 2, 0, 1, 2) self.retranslateUi(TableDataSourceEditor) QtCore.QMetaObject.connectSlotsByName(TableDataSourceEditor)
Example #16
Source File: version_updater_UI_pyqt4.py From anima with MIT License | 5 votes |
def setupUi(self, Dialog): Dialog.setObjectName(_fromUtf8("Dialog")) Dialog.setWindowModality(QtCore.Qt.ApplicationModal) Dialog.resize(1304, 753) self.verticalLayout = QtGui.QVBoxLayout(Dialog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.label = QtGui.QLabel(Dialog) self.label.setObjectName(_fromUtf8("label")) self.verticalLayout.addWidget(self.label) self.versions_treeView = QtGui.QTreeView(Dialog) self.versions_treeView.setObjectName(_fromUtf8("versions_treeView")) self.verticalLayout.addWidget(self.versions_treeView) self.horizontalWidget = QtGui.QWidget(Dialog) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.horizontalWidget.sizePolicy().hasHeightForWidth()) self.horizontalWidget.setSizePolicy(sizePolicy) self.horizontalWidget.setObjectName(_fromUtf8("horizontalWidget")) self.horizontalLayout = QtGui.QHBoxLayout(self.horizontalWidget) self.horizontalLayout.setMargin(0) self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.selectNone_pushButton = QtGui.QPushButton(self.horizontalWidget) self.selectNone_pushButton.setObjectName(_fromUtf8("selectNone_pushButton")) self.horizontalLayout.addWidget(self.selectNone_pushButton) self.selectAll_pushButton = QtGui.QPushButton(self.horizontalWidget) self.selectAll_pushButton.setObjectName(_fromUtf8("selectAll_pushButton")) self.horizontalLayout.addWidget(self.selectAll_pushButton) self.update_pushButton = QtGui.QPushButton(self.horizontalWidget) self.update_pushButton.setObjectName(_fromUtf8("update_pushButton")) self.horizontalLayout.addWidget(self.update_pushButton) self.cancel_pushButton = QtGui.QPushButton(self.horizontalWidget) self.cancel_pushButton.setObjectName(_fromUtf8("cancel_pushButton")) self.horizontalLayout.addWidget(self.cancel_pushButton) self.verticalLayout.addWidget(self.horizontalWidget) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog)
Example #17
Source File: universal_tool_template_v8.1.py From universal_tool_template.py with MIT License | 5 votes |
def qui(self, ui_list_string, parentObject_string='', opt=''): # pre-defined user short name syntax type_dict = { 'vbox': 'QVBoxLayout','hbox':'QHBoxLayout','grid':'QGridLayout', 'form':'QFormLayout', 'split': 'QSplitter', 'grp':'QGroupBox', 'tab':'QTabWidget', 'btn':'QPushButton', 'btnMsg':'QPushButton', 'label':'QLabel', 'input':'QLineEdit', 'check':'QCheckBox', 'choice':'QComboBox', 'txtEdit': 'LNTextEdit', 'txt': 'QTextEdit', 'tree': 'QTreeWidget', 'table': 'QTableWidget', 'space': 'QSpacerItem', } # get ui_list, creation or existing ui object ui_list = [x.strip() for x in ui_list_string.split('|')] for i in range(len(ui_list)): if ui_list[i] in self.uiList: # - exisiting object ui_list[i] = self.uiList[ui_list[i]] else: # - string creation: # get part info partInfo = ui_list[i].split(';',1) uiName = partInfo[0].split('@')[0] uiType = uiName.rsplit('_',1)[-1] if uiType in type_dict: uiType = type_dict[uiType] # set quickUI string format ui_list[i] = partInfo[0]+';'+uiType if len(partInfo)==1: # give empty button and label a place holder name if uiType in ('btn', 'btnMsg', 'QPushButton','label', 'QLabel'): ui_list[i] = partInfo[0]+';'+uiType + ';'+uiName elif len(partInfo)==2: ui_list[i]=ui_list[i]+";"+partInfo[1] # get parentObject or exisiting object parentObject = parentObject_string if parentObject in self.uiList: parentObject = self.uiList[parentObject] # process quickUI self.quickUI(ui_list, parentObject, opt)
Example #18
Source File: universal_tool_template_v7.3.py From universal_tool_template.py with MIT License | 5 votes |
def qui(self, ui_list_string, parentObject_string='', opt=''): # pre-defined user short name syntax type_dict = { 'vbox': 'QVBoxLayout','hbox':'QHBoxLayout','grid':'QGridLayout', 'form':'QFormLayout', 'split': 'QSplitter', 'grp':'QGroupBox', 'tab':'QTabWidget', 'btn':'QPushButton', 'btnMsg':'QPushButton', 'label':'QLabel', 'input':'QLineEdit', 'check':'QCheckBox', 'choice':'QComboBox', 'txtEdit': 'LNTextEdit', 'txt': 'QTextEdit', 'tree': 'QTreeWidget', 'space': 'QSpacerItem', } # get ui_list, creation or existing ui object ui_list = [x.strip() for x in ui_list_string.split('|')] for i in range(len(ui_list)): if ui_list[i] in self.uiList: # - exisiting object ui_list[i] = self.uiList[ui_list[i]] else: # - string creation: # get part info partInfo = ui_list[i].split(';',1) uiName = partInfo[0].split('@')[0] uiType = uiName.rsplit('_',1)[-1] if uiType in type_dict: uiType = type_dict[uiType] # set quickUI string format ui_list[i] = partInfo[0]+';'+uiType if len(partInfo)==1: # give empty button and label a place holder name if uiType in ('btn', 'btnMsg', 'QPushButton','label', 'QLabel'): ui_list[i] = partInfo[0]+';'+uiType + ';'+uiName elif len(partInfo)==2: ui_list[i]=ui_list[i]+";"+partInfo[1] # get parentObject or exisiting object parentObject = parentObject_string if parentObject in self.uiList: parentObject = self.uiList[parentObject] # process quickUI self.quickUI(ui_list, parentObject, opt)
Example #19
Source File: universal_tool_template_0803.py From universal_tool_template.py with MIT License | 5 votes |
def qui(self, ui_list_string, parentObject_string='', opt=''): # pre-defined user short name syntax type_dict = { 'vbox': 'QVBoxLayout','hbox':'QHBoxLayout','grid':'QGridLayout', 'form':'QFormLayout', 'split': 'QSplitter', 'grp':'QGroupBox', 'tab':'QTabWidget', 'btn':'QPushButton', 'btnMsg':'QPushButton', 'label':'QLabel', 'input':'QLineEdit', 'check':'QCheckBox', 'choice':'QComboBox', 'txt': 'QTextEdit', 'list': 'QListWidget', 'tree': 'QTreeWidget', 'table': 'QTableWidget', 'space': 'QSpacerItem', } # get ui_list, creation or existing ui object ui_list = [x.strip() for x in ui_list_string.split('|')] for i in range(len(ui_list)): if ui_list[i] in self.uiList: # - exisiting object ui_list[i] = self.uiList[ui_list[i]] else: # - string creation: # get part info partInfo = ui_list[i].split(';',1) uiName = partInfo[0].split('@')[0] uiType = uiName.rsplit('_',1)[-1] if uiType in type_dict: uiType = type_dict[uiType] # set quickUI string format ui_list[i] = partInfo[0]+';'+uiType if len(partInfo)==1: # give empty button and label a place holder name if uiType in ('btn', 'btnMsg', 'QPushButton','label', 'QLabel'): ui_list[i] = partInfo[0]+';'+uiType + ';'+uiName elif len(partInfo)==2: ui_list[i]=ui_list[i]+";"+partInfo[1] # get parentObject or exisiting object parentObject = parentObject_string if parentObject in self.uiList: parentObject = self.uiList[parentObject] # process quickUI self.quickUI(ui_list, parentObject, opt)
Example #20
Source File: infoWindowUI.py From tutorials with MIT License | 5 votes |
def setupUi(self, InfoWindow): InfoWindow.setObjectName(_fromUtf8("InfoWindow")) InfoWindow.resize(611, 396) self.verticalLayout = QtGui.QVBoxLayout(InfoWindow) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.infoLabel = QtGui.QLabel(InfoWindow) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.infoLabel.sizePolicy().hasHeightForWidth()) self.infoLabel.setSizePolicy(sizePolicy) self.infoLabel.setAlignment(QtCore.Qt.AlignCenter) self.infoLabel.setObjectName(_fromUtf8("infoLabel")) self.verticalLayout.addWidget(self.infoLabel) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.setInfoDumbButton = QtGui.QPushButton(InfoWindow) self.setInfoDumbButton.setObjectName(_fromUtf8("setInfoDumbButton")) self.horizontalLayout.addWidget(self.setInfoDumbButton) self.setInfoSmartButton = QtGui.QPushButton(InfoWindow) self.setInfoSmartButton.setObjectName(_fromUtf8("setInfoSmartButton")) self.horizontalLayout.addWidget(self.setInfoSmartButton) spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem1) self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(InfoWindow) QtCore.QMetaObject.connectSlotsByName(InfoWindow)
Example #21
Source File: UITranslator.py From universal_tool_template.py with MIT License | 5 votes |
def qui(self, ui_list_string, parentObject_string='', opt=''): # pre-defined user short name syntax type_dict = { 'vbox': 'QVBoxLayout','hbox':'QHBoxLayout','grid':'QGridLayout', 'form':'QFormLayout', 'split': 'QSplitter', 'grp':'QGroupBox', 'tab':'QTabWidget', 'btn':'QPushButton', 'btnMsg':'QPushButton', 'label':'QLabel', 'input':'QLineEdit', 'check':'QCheckBox', 'choice':'QComboBox', 'txtEdit': 'LNTextEdit', 'txt': 'QTextEdit', 'tree': 'QTreeWidget', 'table': 'QTableWidget', 'space': 'QSpacerItem', } # get ui_list, creation or existing ui object ui_list = [x.strip() for x in ui_list_string.split('|')] for i in range(len(ui_list)): if ui_list[i] in self.uiList: # - exisiting object ui_list[i] = self.uiList[ui_list[i]] else: # - string creation: # get part info partInfo = ui_list[i].split(';',1) uiName = partInfo[0].split('@')[0] uiType = uiName.rsplit('_',1)[-1] if uiType in type_dict: uiType = type_dict[uiType] # set quickUI string format ui_list[i] = partInfo[0]+';'+uiType if len(partInfo)==1: # give empty button and label a place holder name if uiType in ('btn', 'btnMsg', 'QPushButton','label', 'QLabel'): ui_list[i] = partInfo[0]+';'+uiType + ';'+uiName elif len(partInfo)==2: ui_list[i]=ui_list[i]+";"+partInfo[1] # get parentObject or exisiting object parentObject = parentObject_string if parentObject in self.uiList: parentObject = self.uiList[parentObject] # process quickUI self.quickUI(ui_list, parentObject, opt)
Example #22
Source File: universal_tool_template_0903.py From universal_tool_template.py with MIT License | 5 votes |
def qui(self, ui_list_string, parentObject_string='', opt=''): # pre-defined user short name syntax type_dict = { 'vbox': 'QVBoxLayout','hbox':'QHBoxLayout','grid':'QGridLayout', 'form':'QFormLayout', 'split': 'QSplitter', 'grp':'QGroupBox', 'tab':'QTabWidget', 'btn':'QPushButton', 'btnMsg':'QPushButton', 'label':'QLabel', 'input':'QLineEdit', 'check':'QCheckBox', 'choice':'QComboBox', 'txt': 'QTextEdit', 'list': 'QListWidget', 'tree': 'QTreeWidget', 'table': 'QTableWidget', 'space': 'QSpacerItem', } # get ui_list, creation or existing ui object ui_list = [x.strip() for x in ui_list_string.split('|')] for i in range(len(ui_list)): if ui_list[i] in self.uiList: # - exisiting object ui_list[i] = self.uiList[ui_list[i]] else: # - string creation: # get part info partInfo = ui_list[i].split(';',1) uiName = partInfo[0].split('@')[0] uiType = uiName.rsplit('_',1)[-1] if uiType in type_dict: uiType = type_dict[uiType] # set quickUI string format ui_list[i] = partInfo[0]+';'+uiType if len(partInfo)==1: # give empty button and label a place holder name if uiType in ('btn', 'btnMsg', 'QPushButton','label', 'QLabel'): ui_list[i] = partInfo[0]+';'+uiType + ';'+uiName elif len(partInfo)==2: ui_list[i]=ui_list[i]+";"+partInfo[1] # get parentObject or exisiting object parentObject = parentObject_string if parentObject in self.uiList: parentObject = self.uiList[parentObject] # process quickUI self.quickUI(ui_list, parentObject, opt)
Example #23
Source File: plot_view.py From qkit with GNU General Public License v2.0 | 4 votes |
def setupMatrix(self,Form): """Set up slots for value_matrix. The data can be plotted color coded as a 2d plot, as a 1d plot at a user selected value of the x_axis or the numerical values can be displayed in a table. Args: self: Object of the Ui_Form class. Form: PlotWindow object that inherits the used calls here from the underlying QWidget class. Returns: No return variable. The function operates on the given object. """ self.PlotTypeSelector = QtGui.QComboBox(Form) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Minimum) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.PlotTypeSelector.sizePolicy().hasHeightForWidth()) self.PlotTypeSelector.setSizePolicy(sizePolicy) self.PlotTypeSelector.setObjectName(_fromUtf8("PlotTypeSelector")) self.PlotTypeSelector.addItem(_fromUtf8("")) self.PlotTypeSelector.addItem(_fromUtf8("")) self.PlotTypeSelector.addItem(_fromUtf8("")) self.PlotTypeSelector.addItem(_fromUtf8("")) self.PlotTypeSelector.setItemText(0, _translate("Form", "Color Plot", None)) self.PlotTypeSelector.setItemText(1, _translate("Form", "Line Plot X", None)) self.PlotTypeSelector.setItemText(2, _translate("Form", "Line Plot Y", None)) self.PlotTypeSelector.setItemText(3, _translate("Form", "Table", None)) self.PlotTypeLayout = QtGui.QVBoxLayout() self.PlotTypeLayout.addWidget(self.PlotTypeSelector) # add a empty label to move the PlotTypeSelector to the top emptyL = QtGui.QLabel(Form) self.PlotTypeLayout.addWidget(emptyL) self.horizontalLayout.addLayout(self.PlotTypeLayout,stretch = -10) self._addTraceSelectorIndicator(Form,sizePolicy,TraceSelector = "TraceXSelector", TraceIndicator="TraceXValue", prefix = self.selector_labels[0]+': ') self._addTraceSelectorIndicator(Form,sizePolicy,TraceSelector = "TraceYSelector", TraceIndicator="TraceYValue", prefix = self.selector_labels[1]+': ') #The indicators should be located at the most right side of the bar spacerItem = QtGui.QSpacerItem(40, 1, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self._addIndicatorLabels(Form,sizePolicy, indicators=["PointX","PointY","PointZ"])
Example #24
Source File: calcWidgetUI.py From tutorials with MIT License | 4 votes |
def setupUi(self, Calculator): Calculator.setObjectName(_fromUtf8("Calculator")) Calculator.resize(461, 104) self.verticalLayout = QtGui.QVBoxLayout(Calculator) self.verticalLayout.setSpacing(-1) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setSpacing(10) self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) self.inputA = QtGui.QLineEdit(Calculator) self.inputA.setObjectName(_fromUtf8("inputA")) self.horizontalLayout.addWidget(self.inputA) self.operatorBox = QtGui.QComboBox(Calculator) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.operatorBox.sizePolicy().hasHeightForWidth()) self.operatorBox.setSizePolicy(sizePolicy) self.operatorBox.setMaximumSize(QtCore.QSize(50, 16777215)) self.operatorBox.setObjectName(_fromUtf8("operatorBox")) self.operatorBox.addItem(_fromUtf8("")) self.operatorBox.addItem(_fromUtf8("")) self.operatorBox.addItem(_fromUtf8("")) self.operatorBox.addItem(_fromUtf8("")) self.horizontalLayout.addWidget(self.operatorBox) self.inputB = QtGui.QLineEdit(Calculator) self.inputB.setObjectName(_fromUtf8("inputB")) self.horizontalLayout.addWidget(self.inputB) self.label = QtGui.QLabel(Calculator) font = QtGui.QFont() font.setBold(True) font.setWeight(75) self.label.setFont(font) self.label.setObjectName(_fromUtf8("label")) self.horizontalLayout.addWidget(self.label) self.result = QtGui.QLineEdit(Calculator) self.result.setReadOnly(True) self.result.setObjectName(_fromUtf8("result")) self.horizontalLayout.addWidget(self.result) self.verticalLayout.addLayout(self.horizontalLayout) spacerItem = QtGui.QSpacerItem(20, 0, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.horizontalLayout_2 = QtGui.QHBoxLayout() self.horizontalLayout_2.setSpacing(-1) self.horizontalLayout_2.setObjectName(_fromUtf8("horizontalLayout_2")) spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout_2.addItem(spacerItem1) self.clearButton = QtGui.QPushButton(Calculator) self.clearButton.setObjectName(_fromUtf8("clearButton")) self.horizontalLayout_2.addWidget(self.clearButton) self.verticalLayout.addLayout(self.horizontalLayout_2) self.retranslateUi(Calculator) QtCore.QMetaObject.connectSlotsByName(Calculator)
Example #25
Source File: ui_add_passwd_dialog.py From deosorg with GNU General Public License v3.0 | 4 votes |
def setupUi(self, AddPasswordDialog): AddPasswordDialog.setObjectName(_fromUtf8("AddPasswordDialog")) AddPasswordDialog.resize(400, 266) self.verticalLayout = QtGui.QVBoxLayout(AddPasswordDialog) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.label = QtGui.QLabel(AddPasswordDialog) self.label.setObjectName(_fromUtf8("label")) self.verticalLayout.addWidget(self.label) self.keyEdit = QtGui.QLineEdit(AddPasswordDialog) self.keyEdit.setMaxLength(64) self.keyEdit.setObjectName(_fromUtf8("keyEdit")) self.verticalLayout.addWidget(self.keyEdit) self.label_2 = QtGui.QLabel(AddPasswordDialog) self.label_2.setObjectName(_fromUtf8("label_2")) self.verticalLayout.addWidget(self.label_2) self.pwEdit1 = QtGui.QLineEdit(AddPasswordDialog) self.pwEdit1.setMaxLength(64) self.pwEdit1.setEchoMode(QtGui.QLineEdit.Password) self.pwEdit1.setObjectName(_fromUtf8("pwEdit1")) self.verticalLayout.addWidget(self.pwEdit1) self.label_3 = QtGui.QLabel(AddPasswordDialog) self.label_3.setObjectName(_fromUtf8("label_3")) self.verticalLayout.addWidget(self.label_3) self.pwEdit2 = QtGui.QLineEdit(AddPasswordDialog) self.pwEdit2.setText(_fromUtf8("")) self.pwEdit2.setMaxLength(64) self.pwEdit2.setEchoMode(QtGui.QLineEdit.Password) self.pwEdit2.setObjectName(_fromUtf8("pwEdit2")) self.verticalLayout.addWidget(self.pwEdit2) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.showHideButton = QtGui.QPushButton(AddPasswordDialog) self.showHideButton.setObjectName(_fromUtf8("showHideButton")) self.horizontalLayout.addWidget(self.showHideButton) self.verticalLayout.addLayout(self.horizontalLayout) spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem1) self.buttonBox = QtGui.QDialogButtonBox(AddPasswordDialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(AddPasswordDialog) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), AddPasswordDialog.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), AddPasswordDialog.reject) QtCore.QMetaObject.connectSlotsByName(AddPasswordDialog)
Example #26
Source File: dialogs.py From EpubMerge with GNU General Public License v3.0 | 4 votes |
def __init__(self, gui, header, prefs, icon, books, save_size_name='epubmerge:update list dialog'): SizePersistedDialog.__init__(self, gui, save_size_name) self.gui = gui self.setWindowTitle(header) self.setWindowIcon(icon) layout = QVBoxLayout(self) self.setLayout(layout) title_layout = ImageTitleLayout(self, 'images/icon.png', header) layout.addLayout(title_layout) books_layout = QHBoxLayout() layout.addLayout(books_layout) self.books_table = StoryListTableWidget(self) books_layout.addWidget(self.books_table) button_layout = QVBoxLayout() books_layout.addLayout(button_layout) spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) button_layout.addItem(spacerItem) self.move_up_button = QtGui.QToolButton(self) self.move_up_button.setToolTip(_('Move selected books up the list')) self.move_up_button.setIcon(QIcon(I('arrow-up.png'))) self.move_up_button.clicked.connect(self.books_table.move_rows_up) button_layout.addWidget(self.move_up_button) self.remove_button = QtGui.QToolButton(self) self.remove_button.setToolTip(_('Remove selected books from the list')) self.remove_button.setIcon(get_icon('list_remove.png')) self.remove_button.clicked.connect(self.remove_from_list) button_layout.addWidget(self.remove_button) self.move_down_button = QtGui.QToolButton(self) self.move_down_button.setToolTip(_('Move selected books down the list')) self.move_down_button.setIcon(QIcon(I('arrow-down.png'))) self.move_down_button.clicked.connect(self.books_table.move_rows_down) button_layout.addWidget(self.move_down_button) spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) button_layout.addItem(spacerItem1) options_layout = QHBoxLayout() button_box = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel) button_box.accepted.connect(self.accept) button_box.rejected.connect(self.reject) options_layout.addWidget(button_box) layout.addLayout(options_layout) # Cause our dialog size to be restored from prefs or created on first usage self.resize_dialog() self.books_table.populate_table(books)
Example #27
Source File: glyph_ui.py From tutorial-vtk-pyqt with MIT License | 4 votes |
def setupUi(self, MainWindow): MainWindow.setObjectName(_fromUtf8("MainWindow")) MainWindow.resize(800, 600) self.centralwidget = QtGui.QWidget(MainWindow) self.centralwidget.setObjectName(_fromUtf8("centralwidget")) self.horizontalLayout = QtGui.QHBoxLayout(self.centralwidget) self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) self.splitter = QtGui.QSplitter(self.centralwidget) self.splitter.setOrientation(QtCore.Qt.Horizontal) self.splitter.setObjectName(_fromUtf8("splitter")) self.frame = QtGui.QFrame(self.splitter) self.frame.setFrameShape(QtGui.QFrame.StyledPanel) self.frame.setFrameShadow(QtGui.QFrame.Raised) self.frame.setObjectName(_fromUtf8("frame")) self.verticalLayout = QtGui.QVBoxLayout(self.frame) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.label = QtGui.QLabel(self.frame) self.label.setObjectName(_fromUtf8("label")) self.verticalLayout.addWidget(self.label) self.threshold_slider = QtGui.QSlider(self.frame) self.threshold_slider.setOrientation(QtCore.Qt.Horizontal) self.threshold_slider.setObjectName(_fromUtf8("threshold_slider")) self.verticalLayout.addWidget(self.threshold_slider) spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.label_2 = QtGui.QLabel(self.frame) self.label_2.setObjectName(_fromUtf8("label_2")) self.verticalLayout.addWidget(self.label_2) self.vector_size = QtGui.QLabel(self.frame) self.vector_size.setFrameShape(QtGui.QFrame.StyledPanel) self.vector_size.setFrameShadow(QtGui.QFrame.Sunken) self.vector_size.setObjectName(_fromUtf8("vector_size")) self.verticalLayout.addWidget(self.vector_size) self.vtk_panel = QtGui.QFrame(self.splitter) self.vtk_panel.setFrameShape(QtGui.QFrame.StyledPanel) self.vtk_panel.setFrameShadow(QtGui.QFrame.Raised) self.vtk_panel.setObjectName(_fromUtf8("vtk_panel")) self.horizontalLayout.addWidget(self.splitter) MainWindow.setCentralWidget(self.centralwidget) self.menubar = QtGui.QMenuBar(MainWindow) self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 27)) self.menubar.setObjectName(_fromUtf8("menubar")) MainWindow.setMenuBar(self.menubar) self.statusbar = QtGui.QStatusBar(MainWindow) self.statusbar.setObjectName(_fromUtf8("statusbar")) MainWindow.setStatusBar(self.statusbar) self.retranslateUi(MainWindow) QtCore.QMetaObject.connectSlotsByName(MainWindow)
Example #28
Source File: remoteDialog.py From LabelImgTool with MIT License | 4 votes |
def __init__(self, parent=None): QtGui.QDialog.__init__(self, parent) self.resize(320, 100) self.setWindowTitle('set remote db') self.remote_cb = QtGui.QCheckBox("use remote database") if self.__class__.remote_mode: self.remote_cb.toggle() self.remote_cb.stateChanged.connect(self.set_remote_mode) grid = QtGui.QGridLayout() grid.addWidget(self.remote_cb, 0, 0, 1, 1) grid.addWidget( QtGui.QLabel( u'dowload image thread num', parent=self), 1, 0, 1, 1) self.thread_num = QtGui.QSpinBox() self.thread_num.setRange(1, 10) self.thread_num.setValue(self.__class__.dowload_thead_num) self.thread_num.valueChanged.connect(self.set_thread_num) grid.addWidget(self.thread_num, 1, 1, 1, 1) grid.addWidget( QtGui.QLabel( u'remote db url[123.57.438.245/]', parent=self), 2, 0, 1, 1) self.remote_url_line = QtGui.QLineEdit(parent=self) if self.__class__.remote_url: self.remote_url_line.setText(self.__class__.remote_url) grid.addWidget(self.remote_url_line, 2, 1, 1, 1) grid.addWidget( QtGui.QLabel( u'remote image list', parent=self), 3, 0, 1, 1) self.server_image_list = QtGui.QLineEdit(parent=self) if self.__class__.server_image_list: self.server_image_list.setText(self.__class__.server_image_list) grid.addWidget(self.server_image_list, 3, 1, 1, 1) buttonBox = QtGui.QDialogButtonBox(parent=self) buttonBox.setOrientation(QtCore.Qt.Horizontal) buttonBox.setStandardButtons( QtGui.QDialogButtonBox.Cancel | QtGui.QDialogButtonBox.Ok) buttonBox.accepted.connect(self.accept) buttonBox.rejected.connect(self.reject) layout = QtGui.QVBoxLayout() layout.addLayout(grid) spacerItem = QtGui.QSpacerItem( 20, 48, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) layout.addItem(spacerItem) layout.addWidget(buttonBox) self.setLayout(layout)
Example #29
Source File: calcWidgetUI.py From tutorials with MIT License | 4 votes |
def setupUi(self, Calculator): Calculator.setObjectName(_fromUtf8("Calculator")) Calculator.resize(461, 104) self.verticalLayout = QtGui.QVBoxLayout(Calculator) self.verticalLayout.setSpacing(-1) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setSpacing(10) self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) self.inputA = QtGui.QLineEdit(Calculator) self.inputA.setObjectName(_fromUtf8("inputA")) self.horizontalLayout.addWidget(self.inputA) self.operatorBox = QtGui.QComboBox(Calculator) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.operatorBox.sizePolicy().hasHeightForWidth()) self.operatorBox.setSizePolicy(sizePolicy) self.operatorBox.setMaximumSize(QtCore.QSize(50, 16777215)) self.operatorBox.setObjectName(_fromUtf8("operatorBox")) self.operatorBox.addItem(_fromUtf8("")) self.operatorBox.addItem(_fromUtf8("")) self.operatorBox.addItem(_fromUtf8("")) self.operatorBox.addItem(_fromUtf8("")) self.horizontalLayout.addWidget(self.operatorBox) self.inputB = QtGui.QLineEdit(Calculator) self.inputB.setObjectName(_fromUtf8("inputB")) self.horizontalLayout.addWidget(self.inputB) self.label = QtGui.QLabel(Calculator) font = QtGui.QFont() font.setBold(True) font.setWeight(75) self.label.setFont(font) self.label.setObjectName(_fromUtf8("label")) self.horizontalLayout.addWidget(self.label) self.result = QtGui.QLineEdit(Calculator) self.result.setReadOnly(True) self.result.setObjectName(_fromUtf8("result")) self.horizontalLayout.addWidget(self.result) self.verticalLayout.addLayout(self.horizontalLayout) spacerItem = QtGui.QSpacerItem(20, 0, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.horizontalLayout_2 = QtGui.QHBoxLayout() self.horizontalLayout_2.setSpacing(-1) self.horizontalLayout_2.setObjectName(_fromUtf8("horizontalLayout_2")) spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout_2.addItem(spacerItem1) self.clearButton = QtGui.QPushButton(Calculator) self.clearButton.setObjectName(_fromUtf8("clearButton")) self.horizontalLayout_2.addWidget(self.clearButton) self.verticalLayout.addLayout(self.horizontalLayout_2) self.retranslateUi(Calculator) QtCore.QMetaObject.connectSlotsByName(Calculator)
Example #30
Source File: universal_tool_template_1116.py From universal_tool_template.py with MIT License | 4 votes |
def __init__(self, parent=None, mode=0): QtWidgets.QMainWindow.__init__(self, parent) #------------------------------ # class variables #------------------------------ self.version = '0.1' self.date = '2017.01.01' self.log = 'no version log in user class' self.help = 'no help guide in user class' self.hotkey = {} self.uiList={} # for ui obj storage self.memoData = {} # key based variable data storage self.memoData['font_size_default'] = QtGui.QFont().pointSize() self.memoData['font_size'] = self.memoData['font_size_default'] self.memoData['last_export'] = '' self.memoData['last_import'] = '' self.name = self.__class__.__name__ self.location = '' if getattr(sys, 'frozen', False): # frozen - cx_freeze self.location = sys.executable else: # unfrozen self.location = os.path.realpath(sys.modules[self.__class__.__module__].__file__) self.iconPath = os.path.join(os.path.dirname(self.location),'icons',self.name+'.png') self.iconPix = QtGui.QPixmap(self.iconPath) self.icon = QtGui.QIcon(self.iconPath) self.fileType='.{0}_EXT'.format(self.name) #------------------------------ # core function variable #------------------------------ self.qui_core_dict = { 'vbox': 'QVBoxLayout','hbox':'QHBoxLayout','grid':'QGridLayout', 'form':'QFormLayout', 'split': 'QSplitter', 'grp':'QGroupBox', 'tab':'QTabWidget', 'btn':'QPushButton', 'btnMsg':'QPushButton', 'label':'QLabel', 'input':'QLineEdit', 'check':'QCheckBox', 'choice':'QComboBox', 'txt': 'QTextEdit', 'list': 'QListWidget', 'tree': 'QTreeWidget', 'table': 'QTableWidget', 'space': 'QSpacerItem', 'menu' : 'QMenu', 'menubar' : 'QMenuBar', } self.qui_user_dict = {}