chacham15
chacham15

Reputation: 14281

Can QT integrate natively with windows?

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

Answers (1)

sblom
sblom

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

Related Questions