Reputation: 14281
Can QT integrate with OS code? E.g on Windows I want to add a system tray application. On OS X I want the same application in the top bar. Is there a way that I can implement the os specific code myself and then plugin the qt code to that?
Upvotes: 0
Views: 191
Reputation: 27363
There's nothing about using Qt that would prevent you from also linking in Windows libraries and making Win32 API calls. On Windows, you'll use this API[MSDN]. On Mac OS, this one[Apple Dev].
Upvotes: 2