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. QWidget objects with Qt::Window flag set do not pass on ignored events
Forum Updated to NodeBB v4.3 + New Features

QWidget objects with Qt::Window flag set do not pass on ignored events

Scheduled Pinned Locked Moved Unsolved General and Desktop
20 Posts 3 Posters 6.0k 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.
  • kshegunovK kshegunov

    Override QWidget::event and inspect what the state of the event is after the call to the superclass' method. E.g:

    #include <qopenglwidget.h>
    
    class ChildWindow : public QOpenGLWidget
    {
        Q_OBJECT
    
    public:
        // ...
        bool event(QEvent * e) override
        {
            bool result = QOpenGLWidget::event(e);
            qDebug() << result << e->isAccepted();
    
            return result;
        }
    };
    

    Then report your findings here. In principle QWidget::event should propagate the event up the object tree. While I don't believe this should be dependent on the window flags, I'm not sure.

    Kind regards.

    ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #10

    @kshegunov As far as I can tell the docs mention nothing about this. On the other hand google finds a handful of people stuggling with this dating back half a decade or so. Maybe it's time to read some code :-|

    kshegunovK 1 Reply Last reply
    1
    • kshegunovK kshegunov

      Override QWidget::event and inspect what the state of the event is after the call to the superclass' method. E.g:

      #include <qopenglwidget.h>
      
      class ChildWindow : public QOpenGLWidget
      {
          Q_OBJECT
      
      public:
          // ...
          bool event(QEvent * e) override
          {
              bool result = QOpenGLWidget::event(e);
              qDebug() << result << e->isAccepted();
      
              return result;
          }
      };
      

      Then report your findings here. In principle QWidget::event should propagate the event up the object tree. While I don't believe this should be dependent on the window flags, I'm not sure.

      Kind regards.

      ? Offline
      ? Offline
      A Former User
      wrote on last edited by
      #11

      @kshegunov And yes, the base class implementation returns true although the event hasn't been accepted. So, to me, still looks as this happens on purpose.

      kshegunovK 1 Reply Last reply
      1
      • ? A Former User

        @kshegunov And yes, the base class implementation returns true although the event hasn't been accepted. So, to me, still looks as this happens on purpose.

        kshegunovK Offline
        kshegunovK Offline
        kshegunov
        Moderators
        wrote on last edited by
        #12

        Yes, because of this call and ultimately this. It appears key press events aren't propagated at all. Could someone please confirm that last part, and make sure that the window flags doesn't change behavior?

        Read and abide by the Qt Code of Conduct

        1 Reply Last reply
        1
        • ? A Former User

          @kshegunov As far as I can tell the docs mention nothing about this. On the other hand google finds a handful of people stuggling with this dating back half a decade or so. Maybe it's time to read some code :-|

          kshegunovK Offline
          kshegunovK Offline
          kshegunov
          Moderators
          wrote on last edited by kshegunov
          #13

          @Wieland said in QWidget objects with Qt::Window flag set do not pass on ignored events:

          As far as I can tell the docs mention nothing about this.

          They do[1, 2], but it's really vague.

          Read and abide by the Qt Code of Conduct

          ? 1 Reply Last reply
          1
          • kshegunovK kshegunov

            @Wieland said in QWidget objects with Qt::Window flag set do not pass on ignored events:

            As far as I can tell the docs mention nothing about this.

            They do[1, 2], but it's really vague.

            ? Offline
            ? Offline
            A Former User
            wrote on last edited by
            #14

            @kshegunov I meant it doesn't say anything about event propagation stopping on window boundaries.

            kshegunovK 1 Reply Last reply
            0
            • ? A Former User

              @kshegunov I meant it doesn't say anything about event propagation stopping on window boundaries.

              kshegunovK Offline
              kshegunovK Offline
              kshegunov
              Moderators
              wrote on last edited by
              #15

              @Wieland said in QWidget objects with Qt::Window flag set do not pass on ignored events:
              I see. Have you confirmed this is because of the flag? I'm not as convinced. I didn't see anything in the code to hint that the flags have any reflection on events propagation. I'd expect the same behavior (key presses not bubbling up) for any window flag that may be passed.

              Read and abide by the Qt Code of Conduct

              ? 1 Reply Last reply
              0
              • kshegunovK kshegunov

                @Wieland said in QWidget objects with Qt::Window flag set do not pass on ignored events:
                I see. Have you confirmed this is because of the flag? I'm not as convinced. I didn't see anything in the code to hint that the flags have any reflection on events propagation. I'd expect the same behavior (key presses not bubbling up) for any window flag that may be passed.

                ? Offline
                ? Offline
                A Former User
                wrote on last edited by A Former User
                #16

                @kshegunov Flags have some effect, e.g. the popup flag makes the window close on key pressed and then the event is accepted; but otherwise: no. The keyPressEvent() function doesn't do anything but ignore the event and then in the end event() returns true. Maybe there's more magic in the event dispatcher, but the code is quite hard to read.

                Edit: Key event propagation actually does work as expected with flag Qt:Widget on the child and when the event is being ignored. But I can't tell where the magic happens :-/

                1 Reply Last reply
                0
                • ? Offline
                  ? Offline
                  A Former User
                  wrote on last edited by
                  #17

                  Sorry, I give up. :-/

                  1 Reply Last reply
                  0
                  • A Offline
                    A Offline
                    amdreallyfast
                    wrote on last edited by
                    #18

                    Thanks anyway.

                    BTW, @kshegunov , I did experiment with overriding the Qt::event(...) method, and MainWindow was still getting nothing as long as the child widget was a window. Then I made the child not spawn as a window (instead as a sub-widget) and the ignored event was passed on just fine. For the time being, I'll just click on MainWindow and hit Esc. to close down the program. I don't want to deal with connecting everyone to the MainWindow via signal and slot just to tell it to close.

                    kshegunovK 1 Reply Last reply
                    0
                    • A amdreallyfast

                      Thanks anyway.

                      BTW, @kshegunov , I did experiment with overriding the Qt::event(...) method, and MainWindow was still getting nothing as long as the child widget was a window. Then I made the child not spawn as a window (instead as a sub-widget) and the ignored event was passed on just fine. For the time being, I'll just click on MainWindow and hit Esc. to close down the program. I don't want to deal with connecting everyone to the MainWindow via signal and slot just to tell it to close.

                      kshegunovK Offline
                      kshegunovK Offline
                      kshegunov
                      Moderators
                      wrote on last edited by kshegunov
                      #19

                      @amdreallyfast said in QWidget objects with Qt::Window flag set do not pass on ignored events:

                      I did experiment with overriding the Qt::event(...) method, and MainWindow was still getting nothing as long as the child widget was a window. Then I made the child not spawn as a window (instead as a sub-widget) and the ignored event was passed on just fine.

                      My best advice is to ask in the mailing list if this is intentional, and if it's not to file a bug report.

                      Read and abide by the Qt Code of Conduct

                      A 1 Reply Last reply
                      0
                      • kshegunovK kshegunov

                        @amdreallyfast said in QWidget objects with Qt::Window flag set do not pass on ignored events:

                        I did experiment with overriding the Qt::event(...) method, and MainWindow was still getting nothing as long as the child widget was a window. Then I made the child not spawn as a window (instead as a sub-widget) and the ignored event was passed on just fine.

                        My best advice is to ask in the mailing list if this is intentional, and if it's not to file a bug report.

                        A Offline
                        A Offline
                        amdreallyfast
                        wrote on last edited by
                        #20

                        @kshegunov

                        By "mailing list" do you mean the "interest" mailing list? I've already asked one question there and gotten no replies. It is quite busy with "how do I do this?" messages instead of unexpected behavior, so I don't know if I'm asking the right group.

                        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