-
What is the difference about them?
-
In Qt, if I have a hotkey for QPushButton, I can make it by “Alt + ?”, but if it’s for qaction, I can press “?” only
What is the difference about them? In Qt, if I have a hotkey for
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
In Windows, an accelerator key is application global; e.g. Alt+F4.
A shortcut key is part of the name of a menu item or button, where it can be underlined, and is available (without modifiers) when that menu item or button is directly available.
From Microsoft:
which seems to indicate that hot keys are system global.
To sum up:
I don’t know about specific meanings in Qt; for that see the Qt documentation.