PyQt5-QTextEdit 文本追加和分行

#!/usr/bin/env python3
# Author:1626478661
# Date:2016-09-06 15:28:21
# PyQt5 QTextEdit
from PyQt5 import QtWidgets, QtCore, QtGui
from PyQt5.QtWidgets import (QPushButton, QLineEdit, QTextEdit, QWidget, QHBoxLayout, QVBoxLayout, QApplication)
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QTextCursor
import sys
import time


class Windows(QWidget):
    def __init__(self):
        super(Windows, self).__init__()

        self.setWindowTitle('PyQt5 QTextEdit © QQ 1626478661')
        self.setFixedSize(300, 150)

        # IP address / Hostname
        self.IPHostnameEdit = QLineEdit()
        self.IPHostnameEdit.setPlaceholderText('IP address or Hostname')
        self.IPHostnameButton = QPushButton('追加')
        self.IPHostnameButton.clicked.connect(self.checkButton)

        self.IPHostnameButton02 = QPushButton('分行')
        self.IPHostnameButton02.clicked.connect(self.checkButton02)

        self.IPHostnameButton03 = QPushButton('调试')
        self.IPHostnameButton03.clicked.connect(self.getText)
        # Message / Log
        self.showLogText = QTextEdit()
        print(time.strftime("%F %T"))
        self.showLogText.setText("{0} initializing...".format(time.strftime("%F %T")))
        # self.showLogText.setText("""车道中心线\n车道中心线\n车道中心线""")

        # layout for IPHostname
        self.IPHostnameLayout = QHBoxLayout()
        self.IPHostnameLayout.addWidget(self.IPHostnameEdit)
        self.IPHostnameLayout.addWidget(self.IPHostnameButton)
        self.IPHostnameLayout.addWidget(self.IPHostnameButton02)
        self.IPHostnameLayout.addWidget(self.IPHostnameButton03)

        # layout
        self.mainLayout = QVBoxLayout()
        self.mainLayout.addLayout(self.IPHostnameLayout)
        self.mainLayout.addWidget(self.showLogText)

        self.setLayout(self.mainLayout)

        # Disable zoom- / zoom+
        self.setWindowFlags(Qt.WindowCloseButtonHint)

    # Function for check Button
    def checkButton(self):
        self.showLogText.moveCursor(QTextCursor.End)
        self.showLogText.insertPlainText(self.IPHostnameEdit.text())

    def checkButton02(self):
        self.showLogText.moveCursor(QTextCursor.End)
        self.showLogText.append(self.IPHostnameEdit.text())

    def getText(self):
        txt = self.showLogText.toPlainText()
        s = txt.split('\n')
        print(s)

app = QApplication(sys.argv)
win = Windows()
win.show()
app.exec_()

 

  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值