我想通过QtGui.QClipboard
从QApplication()
复制粘贴
QtGui.QClipboard
具有mimedata()
方法。
我可以从网站复制和粘贴。
例如,我从这里Matahari Wikipedia
复制我将其粘贴到示例文本编辑器窗口中。
首先,粘贴的文本如下:
并按Key_1保存其内容。
重新执行我的代码,然后按Key_2加载内容。
所以...
保存的内容始终更改为黑色。
为什么?
我通过打印mimedata.html()检查了html。
结果,
<!--StartFragment--><span style="display: inline !important; float: none; background-color: transparent; color: rgb(0, 0, 0); font-family: "Linux Libertine","Georgia","Times",serif; font-size: 28.8px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 37.44px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">Matahari</span><!--EndFragment-->
您可以看到颜色为(0,0,0)。所以这个html是黑色的。
因此,我尝试执行以下操作:
clipboard = QtGui.QApplication.clipboard()
html = clipboard.mimeData().html()
print(html)
html = html.replace("color: rgb(0, 0, 0);","color: rgb(255, 255, 255);")
clipboard.mimeData().setHtml(html)
此执行的结果:
<!--StartFragment--><span style="display: inline !important; float: none; background-color: transparent; color: rgb(255, 255, 255); font-family: "Linux Libertine","Georgia","Times",serif; font-size: 28.8px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 37.44px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">Matahari</span><!--EndFragment-->
我可以做到。我可以将颜色(0,0.0)更改为(255,255,255)
我重新保存并重新加载它,但结果没有改变。
我想将内容从黑色更改为白色。
我该怎么办?
这是用于保存和重新加载的示例代码。
from PySide import QtGui
from PySide import QtCore
import sys
import os
class TextEdit(QtGui.QTextEdit):
def __init__(self,parent=None):
super(TextEdit,self).__init__(parent=None)
def keyPressEvent(self,event):
if event.key() == QtCore.Qt.Key_1:
self.save()
return
elif event.key() == QtCore.Qt.Key_2:
self.load()
return
elif event.key() == QtCore.Qt.Key_V:
self.copy_paste()
return
return QtGui.QTextEdit.keyPressEvent(self,event)
def save(self):
print(os.getcwd()+"copy_paste_test.dat")
file = QtCore.QFile(os.getcwd()+"copy_paste_test.dat")
file.open(QtCore.QFile.ReadWrite)
out = QtCore.QDataStream(file)
out.writeQString(self.toHtml())
file.close()
def load(self):
file = QtCore.QFile(os.getcwd()+"copy_paste_test.dat")
file.open(QtCore.QFile.ReadOnly)
out = QtCore.QDataStream(file)
self.insertHtml(out.readQString())
file.close()
def copy_paste(self):
clipboard = QtGui.QApplication.clipboard()
self.insertFromMimeData(clipboard.mimeData())
def main():
try:
QtGui.QApplication([])
except Exception as e:
print(e)
textedit = TextEdit()
textedit.show()
sys.exit(QtGui.QApplication.exec_())
if __name__ == "__main__":
main()
答案 0 :(得分:0)
您应该在save()方法中检查toHtml()。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'MS UI Gothic'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Linux Libertine,Georgia,Times,serif'; color:#000000; background-color:#000000;">Matahari</span></p></body></html>
您可以看到背景颜色:#000000
因此,您必须将其更改为background-color:#FFFFFF
toHtml = self.toHtml()
toHtml = toHtml.replace("background-color:#000000;","background-color:#FFFFFF;")
out.writeQString(toHtml)