Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How to redirect Wheel events of QWidget to QTextEdit ?
Qt 6.11 is out! See what's new in the release blog

How to redirect Wheel events of QWidget to QTextEdit ?

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 1.3k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    redstoneleo
    wrote on last edited by
    #1

    when you turn the mouse wheel while the mouse cursor is not on the QTextEdit ,the scroll bars will not move in such case ,but I still want to move the scroll bars by mouse wheel ,so how can I implement this function ?
    I know some software like Microsoft Word have this feature .

    I implement this feature like the following ,but when you move the scroll bars to the top or bottom by mouse wheel ,an error would occur : maximum recursion depth exceeded while calling a Python object.
    anyone can help ?
    @
    import sys
    from PyQt4.QtGui import *
    from PyQt4.QtCore import *
    class BoxLayout(QWidget):
    def init(self, parent=None):
    super(BoxLayout, self).init(parent)
    self.resize(100, 300)

        ok = QPushButton("OK")
        cancel = QPushButton("Cancel")
        self.textEdit = QTextEdit("""This function returns true if the contents of the MIME data object, specified by source , can be decoded and inserted into the document. It is called for example when during a drag operation the mouse enters this widget and it is necessary to determine whether it is possible to accept the drag and drop operation.""")
        
        vbox = QVBoxLayout()
        vbox.addWidget(self.textEdit)
        vbox.addWidget(ok)
        vbox.addWidget(cancel)
        self.setLayout(vbox)
    

    self.textEdit.installEventFilter(self)

    def eventFilter(self, obj, event):

    if obj == self.textEdit:

    if event.type() == QEvent.Wheel:

    self.textEdit.wheelEvent(event)

    return True

    else:

    return False

    else:

    return QMainWindow.eventFilter(self, obj, event)

    def wheelEvent(self, event):
        self.textEdit.wheelEvent(event)
    

    app = QApplication(sys.argv)
    qb = BoxLayout()
    qb.show()
    sys.exit(app.exec_())
    @

    1 Reply Last reply
    0
    • JeroentjehomeJ Offline
      JeroentjehomeJ Offline
      Jeroentjehome
      wrote on last edited by
      #2

      Hmm, You might need to redirect the mouseEvent for the "parent" qidget or even for the MainWindow where all widgets are placed. Or maybe check out eventFilters. The widget that has "focus" will get the event, so you need to redirect it.

      Greetz, Jeroen

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved