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?
Share
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].