Trap click event on dock icon using Qt on Mac

后端 未结 3 2010
暖寄归人
暖寄归人 2021-01-24 09:05

I am trying to get dock click event on dock icon on Mac OS X. I am using Qt-Cocoa. Any help would be highly appreciated.

Thanks, Rahul

相关标签:
3条回答
  • 2021-01-24 09:49

    On Qt 5.9.1 you can also use a hack without any platform-specific code at all. See https://stackoverflow.com/a/46488514/8695355

    0 讨论(0)
  • 2021-01-24 09:56

    In Qt-Carbon, see Qt4 Mac Dock Icon Click. It explains how to install a reopen event handler.

    In Qt-Cocoa, you should get the application delegate with [[NSApplication sharedApplicaion] delegate] and add you own applicationShouldHandleReopen:hasVisibleWindows: method with class_addMethod. I have not actually tried this.

    0 讨论(0)
  • 2021-01-24 10:05

    I've done this for an open-source project. See the code here: https://github.com/KDAB/Charm/blob/master/Charm/MacApplicationCore.mm

    0 讨论(0)
提交回复
热议问题