Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(38) | Call(38) | Derive(0) | Import(0)
src/p/y/pyqt5-HEAD/examples/mainwindows/separations.py pyqt5(Download)
self.createImage() else: QMessageBox.warning(self, "Cannot open file", "The selected file could not be opened.", QMessageBox.Cancel, QMessageBox.NoButton,
if not self.finalWidget.pixmap().save(newImageFile, 'PNG'): QMessageBox.warning(self, "Cannot save file", "The file could not be saved.", QMessageBox.Cancel, QMessageBox.NoButton, QMessageBox.NoButton) else: QMessageBox.warning(self, "Cannot save file",
src/p/y/pyqt5-HEAD/examples/mainwindows/sdi/sdi.py pyqt5(Download)
def maybeSave(self): if self.textEdit.document().isModified(): ret = QMessageBox.warning(self, "SDI", "The document has been modified.\nDo you want to save " "your changes?",
def loadFile(self, fileName): file = QFile(fileName) if not file.open(QFile.ReadOnly | QFile.Text): QMessageBox.warning(self, "SDI", "Cannot read file %s:\n%s." % (fileName, file.errorString()))
def saveFile(self, fileName): file = QFile(fileName) if not file.open(QFile.WriteOnly | QFile.Text): QMessageBox.warning(self, "SDI", "Cannot write file %s:\n%s." % (fileName, file.errorString()))
src/p/y/pyqt5-HEAD/examples/mainwindows/application/application.py pyqt5(Download)
def maybeSave(self): if self.textEdit.document().isModified(): ret = QMessageBox.warning(self, "Application", "The document has been modified.\nDo you want to save " "your changes?",
def loadFile(self, fileName): file = QFile(fileName) if not file.open(QFile.ReadOnly | QFile.Text): QMessageBox.warning(self, "Application", "Cannot read file %s:\n%s." % (fileName, file.errorString()))
def saveFile(self, fileName): file = QFile(fileName) if not file.open(QFile.WriteOnly | QFile.Text): QMessageBox.warning(self, "Application", "Cannot write file %s:\n%s." % (fileName, file.errorString()))
src/p/y/pyqt5-HEAD/examples/itemviews/puzzle/puzzle.py pyqt5(Download)
newImage = QPixmap() if not newImage.load(path): QMessageBox.warning(self, "Open Image", "The image file could not be loaded.", QMessageBox.Cancel)
src/p/y/pyqt5-HEAD/examples/draganddrop/puzzle/puzzle.py pyqt5(Download)
newImage = QPixmap() if not newImage.load(path): QMessageBox.warning(self, "Open Image", "The image file could not be loaded.", QMessageBox.Cancel)
src/p/y/pyqt5-HEAD/examples/richtext/orderform.py pyqt5(Download)
return answer = QMessageBox.warning(self, "Incomplete Form", "The form does not contain all the necessary information.\n" "Do you want to discard it?",
src/p/y/pyqt5-HEAD/examples/mainwindows/mdi/mdi.py pyqt5(Download)
def loadFile(self, fileName): file = QFile(fileName) if not file.open(QFile.ReadOnly | QFile.Text): QMessageBox.warning(self, "MDI", "Cannot read file %s:\n%s." % (fileName, file.errorString()))
def saveFile(self, fileName): file = QFile(fileName) if not file.open(QFile.WriteOnly | QFile.Text): QMessageBox.warning(self, "MDI",
def maybeSave(self): if self.document().isModified(): ret = QMessageBox.warning(self, "MDI", "'%s' has been modified.\nDo you want to save your " "changes?" % self.userFriendlyCurrentFile(),
src/p/y/pyqt5-HEAD/examples/network/http/http.py pyqt5(Download)
def sslErrors(self, reply, errors): errorString = ", ".join([str(error.errorString()) for error in errors]) ret = QMessageBox.warning(self, "HTTP Example", "One or more SSL errors has occurred: %s" % errorString,
src/p/y/pyqt5-HEAD/examples/tools/codecs/codecs.py pyqt5(Download)
inFile = QFile(fileName) if not inFile.open(QFile.ReadOnly): QMessageBox.warning(self, "Codecs", "Cannot read file %s:\n%s" % (fileName, inFile.errorString())) return
outFile = QFile(fileName) if not outFile.open(QFile.WriteOnly|QFile.Text): QMessageBox.warning(self, "Codecs", "Cannot write file %s:\n%s" % (fileName, outFile.errorString())) return
src/p/y/pyqt5-HEAD/examples/richtext/textedit/textedit.py pyqt5(Download)
return True ret = QMessageBox.warning(self, "Application", "The document has been modified.\n" "Do you want to save your changes?",
1 | 2 | 3 Next