PDA

View Full Version : Nokia Open C++ Download



Granty
18th October 2010, 15:42
The "Nokia Open C++ plugin download" link is not valid anymore.
Does anybody know an alternative link ?

Lykurg
18th October 2010, 15:48
Why do you need it? Isn't Nokia Qt SDK 1.0 good enough? (http://www.forum.nokia.com/info/sw.nokia.com/id/e920da1a-5b18-42df-82c3-907413e525fb/Nokia_Qt_SDK.html)

Granty
18th October 2010, 17:52
Honestly, I don't know yet.

Can't get my simple app working on my E72, it "works" perfectly with the emulator though.

My ""app is merely a mainform with a pushbutton !






I learned that a proper Symbian development environment consists of Carbide, PERL, S60 SDK, Open C++ etc.

I try to set up this configuration.

As I understand it: QT 4.7 is not enough. At least not for good old fashioned Symbian devices.

Lykurg
18th October 2010, 18:44
Ok, I do not have any experiences with E72, but when I remember right they also have released a Nokia SDK with all inside (Java, Qt, Open C++...) Have a look for that.

Jon Heron
18th October 2010, 21:03
Lykurg is correct, Qt SDK has open c and perl built in, its all you need for basic Symbian development.
Perl and open c need to be added separately if you are using Carbide.c++ for development.
What is the error you are getting on the device?
What does your pro file look like?

If you decide to use Carbide you can find the latest version of open c HERE (http://www.forum.nokia.com/info/sw.nokia.com/id/91d89929-fb8c-4d66-bea0-227e42df9053/Open_C_SDK_Plug-In.html)

Here is where to get the Qt SDK 1.01 HERE (http://qt.nokia.com/downloads/)
Cheers,
Jon

Granty
19th October 2010, 19:23
This is the pro:


Project created by QtCreator 2010-09-30T16:58:22
#
#-------------------------------------------------

QT += core gui
QT += sql

TARGET = HalloWelt
TEMPLATE = app


SOURCES += main.cpp\
mainwindow.cpp

HEADERS += mainwindow.h \
connection.h \
LoadTextFile.h \
softkeys.h

FORMS += mainwindow.ui

CONFIG += mobility
MOBILITY =


symbian {
TARGET.UID3 = 0xe2c02847
# TARGET.CAPABILITY +=
TARGET.EPOCSTACKSIZE = 0x14000
TARGET.EPOCHEAPSIZE = 0x020000 0x800000
}

The error message on the device says:

"Function is not supported" if ui->pushButton->setText("PushButton")

If I deploy with a "labeled" pushButton the application terminates immediatley after it has started.

But Jon, didn't you point out in my other thread that Qt 4.7 is not suited for Symbian develoment ?

Greetings
Michael

Jon Heron
19th October 2010, 21:33
Hi Michael,


But Jon, didn't you point out in my other thread that Qt 4.7 is not suited for Symbian develoment ?
Yes, sorry about that, I didn't realize you were the same person, nor did I notice in this thread that you were using 4.7.
Download the Qt SDK from the link above and you will be off to the races!
Cheers,
Jon