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. QPushButton in QMessageBox missing key shortcut underline on initial display

QPushButton in QMessageBox missing key shortcut underline on initial display

Scheduled Pinned Locked Moved Solved General and Desktop
qpushbuttonqmessageboxshortcutunderline
24 Posts 4 Posters 13.6k Views
  • 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.
  • H Offline
    H Offline
    Harry123
    wrote on last edited by Harry123
    #1

    I'm under Windows, and I add several QPushButtons to a QMessageBox. A shortcut key is specified by an ampersand before the preferred character in each text.

    When the message box is initially displayed, the shortcut keys of all buttons are not marked by an underline, but :

    1. The button does execute if I type the shortcut key in spite of the missing underline.
    2. If I press the Alt key, the shortcut underline appears on all buttons and stays displayed after I release the Alt key.

    This lack of an initial visual cue may cause the end-user to assume that shortcuts were not provided.

    Is there something I should do to force the display of the shortcut underlines when the message box is initially displayed ?

    H J 2 Replies Last reply
    0
    • mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by mrjj
      #2

      Hi
      I think its default on windows NOT to show underscore.
      At least all other new programs I have - does this.
      This is win 7.

      This settings seems to be controlled via
      Open Control Panel / Ease of Access Center / Make the Keyboard easier to use.
      Underline keyboard shortcuts and access keys.

      H 1 Reply Last reply
      0
      • mrjjM mrjj

        Hi
        I think its default on windows NOT to show underscore.
        At least all other new programs I have - does this.
        This is win 7.

        This settings seems to be controlled via
        Open Control Panel / Ease of Access Center / Make the Keyboard easier to use.
        Underline keyboard shortcuts and access keys.

        H Offline
        H Offline
        Harry123
        wrote on last edited by
        #3

        @mrjj

        I don't know if there is a default. Most programs display underlines in dialogs but some don't.
        For example wordpad and notepad and Word do have them on the "save before exit" dialog (Windows 7).
        It might be something to do with how one calls the Windows API.

        1 Reply Last reply
        0
        • mrjjM Offline
          mrjjM Offline
          mrjj
          Lifetime Qt Champion
          wrote on last edited by mrjj
          #4

          it is.
          found setting.

          This settings seems to be controlled via
          Open Control Panel / Ease of Access Center / Make the Keyboard easier to use.
          Underline keyboard shortcuts and access keys.

          H 1 Reply Last reply
          1
          • mrjjM mrjj

            it is.
            found setting.

            This settings seems to be controlled via
            Open Control Panel / Ease of Access Center / Make the Keyboard easier to use.
            Underline keyboard shortcuts and access keys.

            H Offline
            H Offline
            Harry123
            wrote on last edited by
            #5

            @mrjj

            You are right that this setting forces the initial display of the underlines in QMessageBox buttons.
            However, for most programs underlines are displayed with or without this setting.

            Without this setting, I have tried out several program of mine that display dialogs, and find that some display underlines and some don't.

            Weirder and weirder.

            1 Reply Last reply
            0
            • mrjjM Offline
              mrjjM Offline
              mrjj
              Lifetime Qt Champion
              wrote on last edited by
              #6

              well My word 2010 did change for fileopen dialog.
              Also my notepad++.

              But there must be a way to show always in windows API as
              some of my programs always show it. Even same buttons.

              http://stackoverflow.com/questions/14054036/show-hotkeys-at-all-times
              here they use sendmessage to turn it on. Should also be possible in
              Qt if no Qt way exists.

              H 1 Reply Last reply
              0
              • mrjjM mrjj

                well My word 2010 did change for fileopen dialog.
                Also my notepad++.

                But there must be a way to show always in windows API as
                some of my programs always show it. Even same buttons.

                http://stackoverflow.com/questions/14054036/show-hotkeys-at-all-times
                here they use sendmessage to turn it on. Should also be possible in
                Qt if no Qt way exists.

                H Offline
                H Offline
                Harry123
                wrote on last edited by
                #7

                @mrjj

                Yes, my thought exactly.

                My code now works and displays the underlines.
                It looks like this :

                QKeyEvent event(QEvent::KeyPress, Qt::Key_Alt, Qt::NoModifier);
                QApplication::sendEvent(msgBox, &event);
                msgBox->exec();
                
                

                However, I would prefer a solution which is less of a kludge, if anyone has a better idea.

                1 Reply Last reply
                2
                • H Harry123

                  I'm under Windows, and I add several QPushButtons to a QMessageBox. A shortcut key is specified by an ampersand before the preferred character in each text.

                  When the message box is initially displayed, the shortcut keys of all buttons are not marked by an underline, but :

                  1. The button does execute if I type the shortcut key in spite of the missing underline.
                  2. If I press the Alt key, the shortcut underline appears on all buttons and stays displayed after I release the Alt key.

                  This lack of an initial visual cue may cause the end-user to assume that shortcuts were not provided.

                  Is there something I should do to force the display of the shortcut underlines when the message box is initially displayed ?

                  H Offline
                  H Offline
                  Harry123
                  wrote on last edited by Harry123
                  #8

                  This is definitely a Qt design decision to by default paint buttons without shortcut underlines.

                  I have searched in the sources and found that QWindowsStyle::eventFilter() in qwindowsstyle.cpp does check for Qt::Key_Alt and then repaints all children, all this after calling an internal function named seenAlt().

                  As it skips all QWidgets having the styleHint of QStyle::SH_UnderlineShortcut, it seems like this is what is missing from my QPushButtons.

                  How do I add this styleHint to my buttons when creating them ?

                  1 Reply Last reply
                  0
                  • mrjjM Offline
                    mrjjM Offline
                    mrjj
                    Lifetime Qt Champion
                    wrote on last edited by
                    #9

                    @Harry123 said:
                    aha. that is good digging around.
                    QStyle::SH_UnderlineShortcut seems to belong to the style used by the application.

                    Im really not sure how to set for a buttons as such. Normally you use a QStyle
                    in paintEvent for a custom button/widget.

                    I guess one would have to provide a custom QStyle that somehow altered
                    this setting.
                    http://doc.qt.io/qt-5.5/qapplication.html#setStyle

                    kshegunovK 1 Reply Last reply
                    0
                    • mrjjM mrjj

                      @Harry123 said:
                      aha. that is good digging around.
                      QStyle::SH_UnderlineShortcut seems to belong to the style used by the application.

                      Im really not sure how to set for a buttons as such. Normally you use a QStyle
                      in paintEvent for a custom button/widget.

                      I guess one would have to provide a custom QStyle that somehow altered
                      this setting.
                      http://doc.qt.io/qt-5.5/qapplication.html#setStyle

                      kshegunovK Away
                      kshegunovK Away
                      kshegunov
                      Moderators
                      wrote on last edited by
                      #10

                      @Harry123
                      Try the qt_set_sequence_auto_mnemonic function.

                      Kind regards.

                      Read and abide by the Qt Code of Conduct

                      H 1 Reply Last reply
                      1
                      • kshegunovK kshegunov

                        @Harry123
                        Try the qt_set_sequence_auto_mnemonic function.

                        Kind regards.

                        H Offline
                        H Offline
                        Harry123
                        wrote on last edited by
                        #11

                        @kshegunov

                        qt_set_sequence_auto_mnemonic is not found by the linker.
                        In which library is it supposed to be ?
                        I have both Qt5Gui and Qt5Core in the link.

                        kshegunovK 1 Reply Last reply
                        0
                        • H Harry123

                          @kshegunov

                          qt_set_sequence_auto_mnemonic is not found by the linker.
                          In which library is it supposed to be ?
                          I have both Qt5Gui and Qt5Core in the link.

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

                          @Harry123
                          My guess would be in the gui module, but I have never used it so I'm not 100% sure. I checked and on my 5.6 build I found it in libQt5Gui.so:

                          0000000000138d02 T _Z29qt_set_sequence_auto_mnemonicb
                          

                          So, the answer is: it is located in the gui module.

                          Read and abide by the Qt Code of Conduct

                          H 1 Reply Last reply
                          0
                          • kshegunovK kshegunov

                            @Harry123
                            My guess would be in the gui module, but I have never used it so I'm not 100% sure. I checked and on my 5.6 build I found it in libQt5Gui.so:

                            0000000000138d02 T _Z29qt_set_sequence_auto_mnemonicb
                            

                            So, the answer is: it is located in the gui module.

                            H Offline
                            H Offline
                            Harry123
                            wrote on last edited by
                            #13

                            @kshegunov

                            Unfortunately it seems to be missing from the Windows build.

                            kshegunovK 1 Reply Last reply
                            0
                            • H Harry123

                              @kshegunov

                              Unfortunately it seems to be missing from the Windows build.

                              kshegunovK Away
                              kshegunovK Away
                              kshegunov
                              Moderators
                              wrote on last edited by
                              #14

                              @Harry123
                              Your claim seemed somewhat dubious, so even if I don't actively develop on windows I've loaded the gui module and searched through it with the dependency walker. The symbol is there (Qt 5.5.1 installed with Qt maintenance tool), see the screenshot, and it is exported.
                              qt_set_sequence_auto_mnemonic
                              I don't know what error exactly you're getting but you should be able to use the function if declared properly (as mentioned in the documentation I sourced in my previous post).

                              Read and abide by the Qt Code of Conduct

                              H 1 Reply Last reply
                              0
                              • kshegunovK kshegunov

                                @Harry123
                                Your claim seemed somewhat dubious, so even if I don't actively develop on windows I've loaded the gui module and searched through it with the dependency walker. The symbol is there (Qt 5.5.1 installed with Qt maintenance tool), see the screenshot, and it is exported.
                                qt_set_sequence_auto_mnemonic
                                I don't know what error exactly you're getting but you should be able to use the function if declared properly (as mentioned in the documentation I sourced in my previous post).

                                H Offline
                                H Offline
                                Harry123
                                wrote on last edited by
                                #15

                                @kshegunov

                                Sorry, my claim was more than dubious - unfortunately I put the call in a section of extern "C".
                                Stupid mistake, but this is a complicated body of code.

                                Results: calling qt_set_sequence_auto_mnemonic with the parameters of either true or false did not restore the underlines.

                                kshegunovK 1 Reply Last reply
                                0
                                • H Harry123

                                  @kshegunov

                                  Sorry, my claim was more than dubious - unfortunately I put the call in a section of extern "C".
                                  Stupid mistake, but this is a complicated body of code.

                                  Results: calling qt_set_sequence_auto_mnemonic with the parameters of either true or false did not restore the underlines.

                                  kshegunovK Away
                                  kshegunovK Away
                                  kshegunov
                                  Moderators
                                  wrote on last edited by
                                  #16

                                  @Harry123

                                  Results: calling qt_set_sequence_auto_mnemonic with the parameters of either true or false did not restore the underlines.

                                  That's unfortunate. Another thing you could try is to set a global proxy style for your application and manually force the QStyle::SH_UnderlineShortcut flag.

                                  Kind regards.

                                  Read and abide by the Qt Code of Conduct

                                  H 1 Reply Last reply
                                  1
                                  • kshegunovK kshegunov

                                    @Harry123

                                    Results: calling qt_set_sequence_auto_mnemonic with the parameters of either true or false did not restore the underlines.

                                    That's unfortunate. Another thing you could try is to set a global proxy style for your application and manually force the QStyle::SH_UnderlineShortcut flag.

                                    Kind regards.

                                    H Offline
                                    H Offline
                                    Harry123
                                    wrote on last edited by Harry123
                                    #17

                                    @kshegunov

                                    This works. I modified the example in the link with :

                                        if (hint == QStyle::SH_UnderlineShortcut)
                                            return 1;
                                    

                                    I now have underlines. Much better than faking an Alt key and it works for all future dialogs.

                                    Very many thanks.

                                    kshegunovK 1 Reply Last reply
                                    0
                                    • H Harry123

                                      @kshegunov

                                      This works. I modified the example in the link with :

                                          if (hint == QStyle::SH_UnderlineShortcut)
                                              return 1;
                                      

                                      I now have underlines. Much better than faking an Alt key and it works for all future dialogs.

                                      Very many thanks.

                                      kshegunovK Away
                                      kshegunovK Away
                                      kshegunov
                                      Moderators
                                      wrote on last edited by
                                      #18

                                      @Harry123

                                      faking an Alt key

                                      Well, this could also have unforeseeable side effects as well (if for example some widget has a shortcut bound to that key), so it's a bit hackish.

                                      Very many thanks.

                                      You're most welcome.

                                      Read and abide by the Qt Code of Conduct

                                      H 1 Reply Last reply
                                      0
                                      • kshegunovK kshegunov

                                        @Harry123

                                        faking an Alt key

                                        Well, this could also have unforeseeable side effects as well (if for example some widget has a shortcut bound to that key), so it's a bit hackish.

                                        Very many thanks.

                                        You're most welcome.

                                        H Offline
                                        H Offline
                                        Harry123
                                        wrote on last edited by Harry123
                                        #19

                                        @kshegunov

                                        The only question that is left, is why isn't QStyle::SH_UnderlineShortcut the default .

                                        kshegunovK 1 Reply Last reply
                                        0
                                        • H Harry123

                                          @kshegunov

                                          The only question that is left, is why isn't QStyle::SH_UnderlineShortcut the default .

                                          kshegunovK Away
                                          kshegunovK Away
                                          kshegunov
                                          Moderators
                                          wrote on last edited by
                                          #20

                                          @Harry123
                                          I'd say the default is determined by the OS settings, and Qt simply wouldn't presume to override it. That'd explain why when you change the settings systemwide the behavior changes accordingly.

                                          Read and abide by the Qt Code of Conduct

                                          H 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