pyqt5 textEdit、lineEdit操作的示例代码
程序员文章站
2022-06-16 22:05:36
1.定义一个textedit/lineedit:(lineedit只需要将代码中的qtextedit改为qlineedit) self.textedit = qtwidgets.qtextedit(...
1.定义一个textedit/lineedit:(lineedit只需要将代码中的qtextedit改为qlineedit)
self.textedit = qtwidgets.qtextedit(dialog) self.textedit.setgeometry(qtcore.qrect(70, 90, 171, 391)) self.textedit.setobjectname("textedit") self.textedit.setreadonly(true)#设置为只读,即可以在代码中向textedit里面输入,但不能从界面上输入,没有这行代码即可以从界面输入
2.从代码中将字符串显示到textedit:
str='要显示的字符串' self.textedit.settext(str)
3.追加字符串:
str='要显示的字符串' self.textedit_2.append(str)
4.显示数字到textedit:数字必须要转换成字符串
count=10 str=str(count) self.textedit.settext(str)
5.读取textedit中的文字:textedit和lineedit中的文字读取方法是不一样的
str1 = self.textedit.toplaintext() #textedit 用toplaintext()方法 #linedit 直接用self.lineedit.text()即可获取
pyqt5 qtextedit控件操作
from pyqt5.qt import * import sys import math #超链接 class mytextedit(qtextedit): def mousepressevent(self,me): print(me.pos()) link_str=self.anchorat(me.pos()) if(len(link_str)>0): qdesktopservices.openurl(qurl(link_str)) return super().mousepressevent(me) class window(qwidget): def __init__(self): super().__init__() self.setwindowtitle("qtextedit的学习") self.resize(500,500) self.setwindowicon(qicon("d:\ico\ooopic_1540562292.ico")) self.setup_ui() def setup_ui(self): te=mytextedit(self) self.te=te te.move(100,100) te.resize(300,300) te.setstylesheet("background-color:cyan;") but=qpushbutton(self) but.move(50,50) but.settext("测试按钮") #self.占位文本的提示() self.文本内容的设置() #self.格式设置和合并() but.pressed.connect(self.but_test) #te.textcursor().inserttable(5,3) #te.inserthtml("xxx"*300+"<a name='lk' href='#itlike'>撩课</a>"+"aaa"*200) te.inserthtml("xxx"*300+"<a href='http://www.itlike.com'>撩课</a>"+"aaa"*200) te.textchanged.connect(self.text_change)#文本发生改变 te.selectionchanged.connect(self.selection_change)#选中的文本发生改变 te.copyavailable.connect(self.copy_a)#复制是否可用 def copy_a(self,yes): print("复制是否可用",yes) def selection_change(self): print("文本选中的内容发生了改变") def text_change(self): print("文本内容发生了改变") def but_test(self): #self.te.clear() #self.光标插入内容() #self.内容和格式的获取() #self.字体设置() #self.颜色设置() #self.字符设置() #self.常用编辑操作() #self. 只读设置() #self.ab功能测试() self.打开超链接() def 打开超链接(self): pass def ab功能测试(self): #self.te.settabchangesfocus(true) print(self.te.tabstopdistance()) self.te.settabstopdistance(100) def 只读设置(self): self.te.setreadonly(true) self.te.insertplaintext("itlike") def 滚动到锚点(self): self.te.scrolltoanchor("lk") def 常用编辑操作(self): #self.te.copy() #self.te.paste() #self.te.selectall() #self.te.setfocus() #qtextdocument.findbackward print(self.te.find("xx",qtextdocument.findbackward|qtextdocument.findcasesensitively)) self.te.setfocus() def 字符设置(self): tcf=qtextcharformat() tcf.setfontfamily("宋体") tcf.setfontpointsize(20) tcf.setfontcapitalization(qfont.capitalize) tcf.setforeground(qcolor(100,200,150)) self.te.setcurrentcharformat(tcf) tcf2=qtextcharformat() tcf2.setfontoverline(true) #self.te.setcurrentcharformat(tcf2) self.te.mergecurrentcharformat(tcf2) def 颜色设置(self): self.te.settextbackgroundcolor(qcolor(200,10,10)) self.te.settextcolor(qcolor(10,200,10)) def 字体设置(self): #qfontdialog.getfont() self.te.setfontfamily("幼圆") self.te.setfontweight(qfont.black) self.te.setfontitalic(true) self.te.setfontpointsize(30) self.te.setfontunderline(true) #font=qfont() #font.setstrikeout(true) #self.te.setcurrentfont(font) def 对齐方式(self): self.te.setalignment(qt.aligncenter) def 光标设置(self): print(self.te.cursorwidth()) if self.te.overwritemode(): self.te.setoverwritemode(false) self.te.setcursorwidth(1) else: self.te.setoverwritemode(true) self.te.setcursorwidth(10) def 覆盖模式的设置(self): self.te.setoverwritemode(true) print(self.te.overwritemode()) def 软换行模式(self): #self.te.setlinewrapmode(qtextedit.nowwrap) #self.te.setlinewrapmode(qtextedit.fixedpixelwidth) self.te.setlinewrapmode(qtextedit.fixedcolumnwidth) self.te.setlinewrapcolumnorwidth(8) def 自动格式化(self): qtextedit self.te.setautoformatting(qtextedit.autobulletlist)#录入*号自动产生格式 def 开始和结束编辑块(self): tc=self.te.textcursor() #tc.begineditblock() tc.inserttext("123") tc.insertblock() tc.inserttext("456") tc.insertblock() #tc.cndeditblock() tc.inserttext("789") tc.insertblock() def 位置相关(self): tc=self.te.textcursor()#获取光标 print("是否在段落的结尾",tc.atblockend) print("是否在段落的开始",tc.atblockstart()) print("是否在文档的结尾",tc.atend()) print("是否在文档的开始",tc.atstart()) print("在第几列",tc.columnnumber()) print("光标位置",tc.position()) print("在文本块中的位置",tc.positioninblock()) def 文本字符的删除(self): tc=self.te.textcursor() #tc.deletechar()#向右侧清除 tc.deletepreviouschar()#向左侧清除 self.te.setfocus() def 文本的其他操作(self): tc=self.te.textcursor() #print(tc.selectionstart())#获取选中起始 #print(tc.selectionend())#获取选中结束 #tc.clearselection()#清除选中 #self.te.settextcursor()#设置光标 #print(tc.hasselection()) tc.removeselectedtext() self.te.setfocus() def 文本选中内容的获取(self): tc=self.te.textcursor() print(tc.selectedtext()) qtextdocumentfragment print(tc.selection().toplaintext()) print(tc.selectedtablecells()) def 文本选中和清空(self): tc=self.te.textcursor() #tc.setposition(6,qtextcursor,keepanchor) #tc.moveposition(qtextcursor.up,qtextcursor.keepanchor,1) tc.select(qtextcursor.wordundercursor) self.te.settextcursor(tc) def 格式设置和合并(self): #设置上下间距 tc=self.te.textcursor() tcf=qtextcharformat() tcf.setfontfamily("幼圆") tcf.setfontpointsize(30) tcf.setfontoverline(true) tcf.setfontunderline(true) tc.setcharformat(tcf) return none #设置上下划线及字体大小 tc=self.te.textcursor() tcf=qtextcharformat() tcf.setfontfamily("幼圆") tcf.setfontpointsize(30) tcf.setfontoverline(true) tcf.setfontunderline(true) tc.setblockcharformat(tcf) pass def 内容和格式的获取(self): tc=self.te.textcursor() qtextline print(tc.block().text()) print(tc.blocknumber()) #print(tc.currentlist().count()) pass def 文本内容的设置(self): #设置普通文本内容 self.te.setplaintext("<h1>ooo</h1>") self.te.insertplaintext("<h1>ooo</h1>") print(self.te.toplaintext()) #富文本的操作 self.te.sethtml("<h1>ooo</h1>") self.te.inserthtml("<h6>社会我的顺哥</h6>") print(self.te.tohtml()) def 占位文本的提示(self): self.te.setplaceholdertext("请输入你的个人简介") def 光标插入内容(self): tc=self.te.textcursor()#获取焦点 tff=qtextframeformat() tff.setborder(10) tff.setborderbrush(qcolor(100,50,50)) tff.setrightmargin(50) tc.insertframe(tff) doc=self.te.document() root_frame=doc.rootframe() root_frame.setframeformat() return none tc=self.te.textcursor()#获取光标 tbf=qtextblockformat() tcf=qtextcharformat() tcf.setfontfamily("隶书") tcf.setfontitalic(true) tcf.setfontpointsize(20) tbf.setalignment(qt.alignright)#对齐 tbf.setrightmargin(100) tc.insertblock(tbf,tcf) self.te.setfocus()#焦点 return none #创建或插入添加表格 tc=self.te.textcursor() ttf=qtexttableformat() ttf.setalignment(qt.alignright) ttf.setcellpadding(6) ttf.setcellspacing(13) ttf.setcolumnwidthconstraints((qtextlength(qtextlength.percentagelength,50),qtextlength(qtextlength.percentagelength,40),qtextlength(qtextlength.percentagelength,10)))#单元格长度比例 table=tc.inserttable(5,3,ttf) table.appendcolumns(2) return none #设置对齐 tc=self.te.textcursor() #tl=tc.insertlist(qtextlistformat.listcircle) #tl=tc.insertlist(qtectlistformat.listdecimal) #tl=tc.createlist(qtextlistformat.listdecimal) tlf=qtextlistformat() tlf.setindent(3) tlf.setnumberprefix("<<") tlf.setnumbersuffix("<<") tlf.setstyle(qtextlistformat.listdecimal) tl=tc.createlist(tlf) qtextlist return none #插入普通文本或者富文本 tc=self.te.textcursor() tdf=qtextdocumentfragment.fromhtml("<h1>xxx</h1>") #tdf=qtextdocumentfragment.fromplaintext("<h1>xxx</h1>") tc.insertfragment(tdf) return none #插入图片 tc=self.te.textcursor() tif=qtextimageformat() tif.setname("d:\ico\ooopic_1517621187.ico") tif.setwidth(100) tif.setheight(100) tc.insertimage("d:\ico\mmmmm.jpg") return none #插入接 qtextcursor tcf=qtextcharformat() tcf.settooltip("撩课学院网址") tcf.setfontfamily("隶书") tcf.setfontpointsize(12) tc=self.te.textcursor() tc.inserttext("itlike.com",tcf) tc.inserthtml("<a href='http://www.itlike.com'>撩课</a>") if __name__=="__main__": app=qapplication(sys.argv) win=window() win.show() sys.exit(app.exec_())
到此这篇关于pyqt5 textedit、lineedit操作的示例代码的文章就介绍到这了,更多相关pyqt5 textedit、lineedit操作内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: Java中抽象类和接口介绍
下一篇: 链表全解析(C语言)