本文整理汇总了Python中document.Document.setPrefix方法的典型用法代码示例。如果您正苦于以下问题:Python Document.setPrefix方法的具体用法?Python Document.setPrefix怎么用?Python Document.setPrefix使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类document.Document
的用法示例。
在下文中一共展示了Document.setPrefix方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: NewDocumentDialog
# 需要导入模块: from document import Document [as 别名]
# 或者: from document.Document import setPrefix [as 别名]
class NewDocumentDialog(QDialog):
openElementSignal = pyqtSignal(str)
def __init__(self, parent, project, document=None):
super(NewDocumentDialog, self).__init__(parent)
self.project = project
self.document = document
self.ui = Ui_NewDocumentDialog.Ui_NewDocumentDialog()
self.ui.setupUi(self)
self.accepted.connect(self.setDocument)
def setDocument(self):
title = unicode(self.ui.titleEdit.text())
prefix = unicode(self.ui.prefixEdit.text())
name = unicode(self.ui.nameEdit.text())
if (self.document is None):
self.document = Document()
self.document.setTitle(title)
self.document.setPrefix(prefix)
self.document.setName(name)
self.project.addDocument(self.document)
self.document.setProject(self.project)
self.openElementSignal.emit("document:" + self.document.getName())