Pyside 同时滚动两个 qtextedits

Posted

技术标签:

【中文标题】Pyside 同时滚动两个 qtextedits【英文标题】:Pyside scroll two qtextedits simultaneously 【发布时间】:2012-08-03 02:26:25 【问题描述】:

我有两个子类。一个实现 qplaintextedit,另一个实现 qtextedit。 qtextedit 用于显示 qplaintextedit 的行号。我的问题是让两者同时滚动。我试过 self.viewport().scroll(),它实际上并没有做任何事情。我尝试连接 qscrollbars,但 qplaintextedit 的最大值小于 qtextedit 的最大值。我已经尝试过其他几种行号解决方案,但它们不允许您在它们上使用样式表。有没有一种同时滚动两者的方法,或者没有一种可以样式化的行号方法?我在 python 2.7 中使用 pyside。这是我目前正在使用的代码。

class NumberBar(QTextEdit):
def __init__(self):
    super(NumberBar,self).__init__()
    self.count = 1
    self.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
    self.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
    self.width = self.fontMetrics().width(unicode(10000))
    self.setFixedWidth(self.width)
    self.setStyleSheet("background:transparent;border:0px;")
    self.setTextInteractionFlags(Qt.NoTextInteraction)
    self.viewport().setCursor(Qt.ArrowCursor)
    self.curse = QTextCursor(self.document())
    self.curse.insertText(str(1))
def change(self, new):
    if new > self.count:
        self.curse.movePosition(self.curse.End)
        self.curse.insertBlock()
        self.curse.insertText(str(new+1))
        self.count = new
    else:
        self.curse.movePosition(self.curse.End)
        self.curse.select(self.curse.BlockUnderCursor)
        self.curse.removeSelectedText()
        self.count = new
    print self.verticalScrollBar().minimum(),self.verticalScrollBar().maximum()
def onload(self, new):
    while(new > self.count):
        self.curse.movePosition(self.curse.End)
        self.curse.insertBlock()
        self.curse.insertText(str(self.count+1))
        self.count += 1
def updateContents(self, rect, scroll):
    if scroll:
        print scroll
        self.viewport().scroll(0, scroll)
        self.update()
    else:
        self.update()

class Editor(QWidget):
    def __init__(self,text = None,name=None):
        super(Editor,self).__init__()
        self.layout = QHBoxLayout()
        self.layout.setContentsMargins(0,0,0,0)
        self.layout.setSpacing(0)
        self.number_bar = NumberBar()
        self.edit = TextEdit(self.number_bar,text)
        highlighter = highlight.Highlighter(self.edit.document(),name)
        #self.edit.blockCountChanged.connect(self.number_bar.adjustWidth)
        self.edit.updateRequest.connect(self.number_bar.updateContents)
        self.layout.addWidget(self.number_bar)
        self.layout.addWidget(self.edit)
        self.setLayout(self.layout)

class TextEdit(QPlainTextEdit):
    def __init__(self,numbar,text = None):
        super(TextEdit,self).__init__(text)
        sheet = open("sheet.css",'r').read()
        self.setStyleSheet(sheet)
        self.setLineWrapMode(self.NoWrap)
        self.setViewportMargins(0,0,0,0)
        self.document().blockCountChanged.connect(numbar.change)
        numbar.onload(0 if not text else text.count('\n'))
        self.numbar = numbar
        numbar.verticalScrollBar().show()

我已经尝试过代码here,但无法通过样式表设置样式。

【问题讨论】:

能否提供一些运行示例代码? 【参考方案1】:

有一个完整的示例可以满足您的需求。

Code Editor Example

翻译成 Python 应该不难。

【讨论】:

你能用样式表来设计它吗?这是我的要求之一。

以上是关于Pyside 同时滚动两个 qtextedits的主要内容,如果未能解决你的问题,请参考以下文章

同时安装pyside2和pyside6

将垂直滚动条添加到嵌入式 matplotlib 画布,同时保持其水平大小占据整个 QScrollArea

如何同时滚动两个 UITableView?

两个卷轴同时触发

同时滚动两个 UITableView 时 UIScrollView 不流畅?

一个模型,两个不同的视图 - PySide