We don't have a Qt plug-in installed for MSVS, and it makes me wonder how/whether it is possible to load resources (images, etc) to the application.
|
|
|
|
|
|
|
Yes, you can load ressources.
Unfortunately, the qrc Editor which create qrc files is part of the Qt Addin for VS... A) Use qmake
B) If you don't generate your vcproj file from your pro file, you can :
C) You can also use an external binary resources file In the application, you have to register the resource file : QResource::registerResource("/path/to/myresource.rcc"); For using resource file in the source code see the doc However, like cheez, I also suggest using qmake and pro file and do not edit properties by hand in Visual Studio... Hope this helps ! |
||||||||
|
|
|
Use the qrc executable to generate a cpp file which you can include in your project: /usr/local/Trolltech/Qt-4.5.1/bin/rcc -name core core/core.qrc -o build/release/core/qrc_core.cc See http://doc.trolltech.com/4.0/resources.html However, I strongly suggest using qmake or some other build system to automate this for you. |
||
