Hi,
I've recently installed the new Nokia Qt SDK for windows, with the Simulator environment, however i can't seem to access my image files, and can't seem to find the C: and E: drive locations for the simulator...
Currently i use this on the Phone:
And on the N97 emulator i do:Code:QString GetDrive() { TParsePtrC appparser(CEikonEnv::Static()->EikAppUi()->Application()->AppFullName()); TPtrC drive = appparser.Drive(); return QString::fromUtf16(drive.Ptr(),drive.Length()); } //Elswhere i load the images: #define UIDIR "/private/EA82CEF3/ui/" svgClock.load(GetDrive() + QString(UIDIR "clock.svg"));
I have svg files in a 'ui' subdirectory of my application, put there using the DEPLOYMENT optionCode:QString GetDrive() { return QString("C:"); }
in the .pro file.
Does anyone know where i can find them, and how i can access them from the Simulator environment?Code:UiFiles.sources += \ images/clock.svg \ images/compass.svg UiFiles.path = ./ui DEPLOYMENT += UiFiles




