Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Restore Mac Application Window after Cmd-H: Difference between revisions
Jump to navigation
Jump to search
(Fixed links) |
mNo edit summary |
||
Line 1: | Line 1: | ||
[[Category:HowTo]] | [[Category:HowTo]] | ||
[[Category:snippets]] | [[Category:snippets]] | ||
If you have hidden an OS X Application with Cmd-H (aka Apple-H = ⌘-H) the hidden window cannot be shown again by calling slot show(). In this case you must call | If you have hidden an OS X Application with Cmd-H (aka Apple-H = ⌘-H) the hidden window cannot be shown again by calling slot show(). In this case you must call | ||
Latest revision as of 14:10, 24 March 2016
If you have hidden an OS X Application with Cmd-H (aka Apple-H = ⌘-H) the hidden window cannot be shown again by calling slot show(). In this case you must call
raise();
// maybe additionally to activate the window:
activateWindow();
If you have installed a system tray icon with QSystemTrayIcon you can add a menu entry and connect the QAction's triggered() signal with the respecitve slots.