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. Mouse release event not received
Qt 6.11 is out! See what's new in the release blog

Mouse release event not received

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 985 Views 2 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.
  • G Offline
    G Offline
    GrahamLa
    wrote on last edited by
    #1

    Hi
    I have a widget for which I have implemented mouse press and release event handlers -

    	void mousePressEvent(QMouseEvent  *mouseEvent);
    	void mouseReleaseEvent(QMouseEvent  *mouseEvent);
    

    My problem is that mousePressEvent is called whereas mouseReleaseEvent is not.

    What are the possible causes of this?

    Thanks

    jsulmJ 1 Reply Last reply
    0
    • G GrahamLa

      Hi
      I have a widget for which I have implemented mouse press and release event handlers -

      	void mousePressEvent(QMouseEvent  *mouseEvent);
      	void mouseReleaseEvent(QMouseEvent  *mouseEvent);
      

      My problem is that mousePressEvent is called whereas mouseReleaseEvent is not.

      What are the possible causes of this?

      Thanks

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @GrahamLa Add "override" and see whether it builds:

      void mouseReleaseEvent(QMouseEvent  *mouseEvent) override;
      

      And how do you check whether it is called or not?
      Also what is the base class?

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      3

      • Login

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