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 8056805
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:49:49+00:00 2026-06-05T08:49:49+00:00

I have a QHeaderView subclass inside a QTreeView subclass, the header provides information to

  • 0

I have a QHeaderViewsubclass inside a QTreeView subclass, the header provides information to the delegates which affects how they paint themselves. The header receives mouse events that controls these values.

I also wanted my delegate editor widgets to provide the same functionality, but rather than copy and pasting the code that translates the mouse values into values the header could use, I thought it would be easier to re-send the QMouseEvent onto it.

So I copy the event and send it on (as noted in the docs):

QMouseEvent e( event->type(), event->pos(), event->button(),
               event->buttons(), event->modifiers() );
Sy_application::sendEvent( &header_, &e );

Only header_ never receives it. Posting the event has the same effect:

QMouseEvent* e = new QMouseEvent( QEvent::MouseButtonPress, event->pos(),
                                  event->button(), event->buttons(),
                                  event->modifiers() );
Sy_application::postEvent( &header_, e );

Why is header_ not receiving the event?

  • 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-05T08:49:50+00:00Added an answer on June 5, 2026 at 8:49 am

    It seems my comment, about nothing in the parent classes causing this, must have been wrong. As an experiment I overrode event(QEvent* event) in my header class to call the mouse handlers manually, and now it works perfectly:

    bool Sy_timeLineHeader::event( QEvent* event )
    {
        switch ( event->type() ) {
        case QEvent::MouseButtonPress:
            mousePressEvent( static_cast< QMouseEvent* >( event ) ); break;
        case QEvent::MouseButtonRelease:
            mouseReleaseEvent( static_cast< QMouseEvent* >( event ) ); break;
        case QEvent::MouseMove:
            mouseMoveEvent( static_cast< QMouseEvent* >( event ) ); break;
        default:
            return QHeaderView::event( event );
        }
    
        return true;
    }
    

    It hasn’t affected the way the header operates normally, at least in so far as the way I am using it.

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

Sidebar

Related Questions

I have this main.xml layout which has a fixed header and footer. The body
I currently have a UIView subclass that acts as my header view for my
I have a class called HeaderView which I use all over my application: public
Have a simple one-off tasks which needs a progress bar. OpenSSL has a useful
I have a problem with adding a listview as a header in my listview
I have two buttons which i add it in one in table-footer and other
Have anyone used Redmine Documentor which lets you convert PHP to HTML to Redmine
I have a UISlider in a section header. Sliding the slider will change the
I am looking to create a common header for an android activity and have
Have just started using Visual Studio Professional's built-in unit testing features, which as I

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.