Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 592595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:45:22+00:00 2026-05-13T15:45:22+00:00

I am creating a small PyQt application and got stuck up in MouseOver effect.

  • 0

I am creating a small PyQt application and got stuck up in MouseOver effect.

I have a QMainWindow which has three buttons named createProfileButton, downloadPackagesButton and installPackagesButton. All these are of type QPushButton

Now I have created a Label which will hold the text when someone hovers the mouse over any of these button. I checked the documentation and came to know that it can be handled using over-riding

  • focusInEvent(self, QFocusEvent)
  • focusOutEvent(self, QFocusEvent)

methods of the button. Now this means that I have to extend QPushButton for each of the three buttons and each one of them have to an object for one class. I tried hunting for the signal which is emitted when mouse is hovered or taken away from the button, but in vain. All help I got on the net was to implement these two methods.

Isnt extending a class and creating one of each an overkill? A signal would be neat, unfortunately, I couldn’t find any signal.

  • http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/html/qpushbutton.html – Has no signals
  • http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/html/qabstractbutton.html – Has clicked, released, pressed and toggled signals
  • http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/html/qwidget.html – Has only one method

So I checked the whole inheritance hierarchy and found no signal for FocusIn and FocusOut

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T15:45:22+00:00Added an answer on May 13, 2026 at 3:45 pm

    As you stated, no signals exist for this functionality. You have two basic options.

    Option 1 – Subclass:

    class FocusEmittingButton(QPushButton):
        #...
        def focusInEvent(self, event):
            # emit your signal
    

    You can then connect to that signal in your client code. Also, if necessary, you can use designer’s Promote To feature to promote each button to the FocusEmittingButton type. You’ll only need to subclass once, and then make sure the different buttons are all of the same type.

    Option 2 – Use QApplication.focusChanged

    You can also leverage QApplication.focusChanged(oldQWidget, newQWidget). By doing so, you won’t need to subclass and override the focus events. Instead, you connect to the QApplication.focusChanged signal and then respond in a handler.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a small application on an embedded device that has a boa web
I am creating small django application which holds some few questions (and answers for
I'm creating a small service, which needs to have ability for custom themes. I
I am creating a small modal form that is used in Winforms application. It
I am creating a small application that will be deployed on Window. The database
I am creating a small silverlight widget which pronounces a word and highlights each
I'm creating a small code plugin which allows you to do some things with
I creating a small desktop application using Qt and Poco on Mac OS X
I'm creating a small project which will manipulate some internal components of the project(big
I'm creating a small application that I will distribute via NuGet. My web app

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.