0
votes
Using Win32 API in Qt OSE project
You could use win32 scopes in your .pro file;
win32:HEADERS+=mywinheader.h
or with .pri (pro include) files to compartmentalize it even more;
win32 …
3
votes
How to get the version info of a dll in C++
Looks like you need to access the VS_VERSION_INFO resource; http://www.microsoft.com/msj/0498/c0498.aspx
…
13
votes
Qt goes LGPL! On Windows, is it good enough to use instead of MFC?
Google Earth is written in Qt, and KDE, Adobe Album, Skype on Linux, the Roku Netflix player, Opera and a number of other commercial uses. The German Air Traffic Control (DFS) has a Qt-based system …
1
vote
Minimal Qt executable-size
This depends largely on your configuration and deployment method. You can of course compile as static which will exclude code which isn't used. You can also strip out things like exceptions and STL …
2
votes
Possible: Program executing Qt3 and Qt4 code?
This might be possible by namespacing Qt. From configure --help;
-qtnamespace <name> Wraps all Qt library code in 'namespace <name> {...}'.
…
1
vote
Embed external application under Windows
You can use ActiveQt for this - which allows both embedding Qt components inside ActiveX clients as well as hosting ActiveX components inside Qt applications. See also
…
