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

  • SEARCH
  • Home
  • 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 8962713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T16:11:32+00:00 2026-06-15T16:11:32+00:00

I have a flowlayout that shows movie thumbnails (subclassed qwidgets). When I click a

  • 0

I have a flowlayout that shows movie thumbnails (subclassed qwidgets). When I click a thumbnail, it’s marked as selected by setting a stylesheet to it (css border). What I want to do is, if I 1) click another thumbnail, or 2) click the widget that holds the flowlayout, it should be marked as unselected.

I’ve currently implemented the mousePressEvent(QMouseEvent *) method to draw the border when the thumbnail is clicked. I’m not sure how to proceed with marking it as unselected. Thanks.

  • 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-06-15T16:11:33+00:00Added an answer on June 15, 2026 at 4:11 pm

    You can store link to currently selected widget somewhere and unselect it when selecting some other.
    Something like this:

    someClass::someClass():
    activeWidget(0)
    {
        for(......)
        {
            subclassedQWidget *w = new subclassedQWidget(this);
            // ......
            // ......
            QObject::connect(w, SIGNAL(iAmClicked()), this, SLOT(someoneClicked()))
        }
    
    }
    
    someClass::someoneClicked()
    {
        subclassedQWidget *caller = (subclassedQWidget*)QObject::sender();
        if (caller == activeWidget) {return;} //Do nothing when active widget clicked
        if (activeWidget) activeWidget->unSelect();
        if (caller)
        {
            caller->select();
            activeWidget = caller;
        }
    }
    

    in mousePressEvent in Your subclassedQWidget You simply emit iAmClicked()

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

Sidebar

Related Questions

I have a groupbox that holds a flowlayout panel and the flowlayout panel holds
I have a JScrollPane with FlowLayout that I want to have a fixed width.
I have a JDialog and inside it I have a JPanel that uses FlowLayout
I have a JPanel that uses a FlowLayout and contains many JButtons. The buttons
I have a JPanel that uses FlowLayout. I add a number of JLabels to
Most layout managers have no-argument constructors (that is, you can create a FlowLayout with
I have two panels: main_panel child_panel The main_panel layout is set using: main_panel.setLayout(flowlayout) I
I have the following code: package example; import java.awt.BorderLayout; import java.awt.FlowLayout; import javax.swing.JFrame; import
I have a CollectionView using the standard FlowLayout class with horizontal scrolling and a
I have a JTabbedPane with a custom tab component. That component contains a JLabel

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.