Adding Hotkeys
-
wrote on 12 Jun 2013, 23:15 last edited by
Hey!
So I am building my browser and I was wondering if there was a way that I could add hotkeys. For example option/alt would highlight the searchbar, or command-f makes the window fullscreen.
I have the fullscreen code right here:
@void MainWindow::on_actionFullscreen_triggered()
{
setWindowState(Qt::WindowFullScreen);
}
@
Is there a way to add hotkey functionality to this code? Thanks! -
wrote on 13 Jun 2013, 03:44 last edited by
Yes, you can use QAction or QShortcut.
-
wrote on 13 Jun 2013, 04:28 last edited by
As 1+1=2 says you can set shortcut to action.
@actionFullscreen - >setShortcut(QKeySequence(Qt::CTRL + Qt::Key_F));@ -
wrote on 14 Jun 2013, 22:02 last edited by
Ok, thank you both!
Haha its a lot simpler then I thought it would be!
probably a n00b question, but thanks all the same! -
wrote on 14 Jun 2013, 22:12 last edited by
Oh yeah, what are the arrow keys and what is Key_Forward?
1/5