mirror of
https://github.com/pyqt/examples.git
synced 2025-08-24 18:47:09 +00:00
40 lines
1.8 KiB
Python
40 lines
1.8 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'dialog.ui'
|
||
|
#
|
||
|
# Created: Sun May 12 11:56:49 2013
|
||
|
# by: PyQt5 UI code generator 5.0-snapshot-b0831183bf83
|
||
|
#
|
||
|
# WARNING! All changes made in this file will be lost!
|
||
|
|
||
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
||
|
|
||
|
class Ui_Dialog(object):
|
||
|
def setupUi(self, Dialog):
|
||
|
Dialog.setObjectName("Dialog")
|
||
|
Dialog.resize(451, 322)
|
||
|
self.gridlayout = QtWidgets.QGridLayout(Dialog)
|
||
|
self.gridlayout.setObjectName("gridlayout")
|
||
|
self.loadFromFileButton = QtWidgets.QPushButton(Dialog)
|
||
|
self.loadFromFileButton.setObjectName("loadFromFileButton")
|
||
|
self.gridlayout.addWidget(self.loadFromFileButton, 0, 0, 1, 1)
|
||
|
self.label = QtWidgets.QLabel(Dialog)
|
||
|
self.label.setAlignment(QtCore.Qt.AlignCenter)
|
||
|
self.label.setWordWrap(True)
|
||
|
self.label.setObjectName("label")
|
||
|
self.gridlayout.addWidget(self.label, 1, 0, 1, 1)
|
||
|
self.loadFromSharedMemoryButton = QtWidgets.QPushButton(Dialog)
|
||
|
self.loadFromSharedMemoryButton.setObjectName("loadFromSharedMemoryButton")
|
||
|
self.gridlayout.addWidget(self.loadFromSharedMemoryButton, 2, 0, 1, 1)
|
||
|
|
||
|
self.retranslateUi(Dialog)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
||
|
|
||
|
def retranslateUi(self, Dialog):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
|
||
|
self.loadFromFileButton.setText(_translate("Dialog", "Load Image From File..."))
|
||
|
self.label.setText(_translate("Dialog", "Launch two of these dialogs. In the first, press the top button and load an image from a file. In the second, press the bottom button and display the loaded image from shared memory."))
|
||
|
self.loadFromSharedMemoryButton.setText(_translate("Dialog", "Display Image From Shared Memory"))
|
||
|
|