symbian

Member offset macro - need details

Please take a look at this macro. It is used in Symbian OS SDK, which compiler is based on GCC (< 4 version of it). #ifndef _FOFF #if __GNUC__ < 4 #define _FOFF(c,f) (((TInt)&(((c *)0x1000)->f))-0x1000) #else #define _FOFF(c,f) __builtin_offsetof(c,f) #endif #endif I understand that it is calculating offset to specif...

display short animation when connecting the plug charge & when unplug the charger in nokia e72, Symbian s60

how to display a short animation when connecting the plug charge & when unplug the charger ? ...

[Symbian] Using Browser Control's PostUrlL API

Hi All, I'm trying to POST some multipart form data to my server using a Browser Control. The PostUrlL(); Method Panics with KERN-EXEC 3 as soon as it is invoked. Here's a snippet similar to the one I'm using in my code. // These LITerals are copied to pointer vars below _LIT8(K_txt_Boundary, "0xABeR1122EEFFx0"); _LIT8(K_CT_Multipart...

set softkeys on qt for symbian

On E63 or similar smart phones,there can be three softkeys(the left and right one always named "OK" or "Cancel" and the middle one always named "Select" or 'Query" alike actions' name) on the screen.QAction has this method: void setSoftKeyRole ( SoftKeyRole softKeyRole ) ,and SoftKeyRole goes these descriptions: QAction::NoSoftKe...

QtMobility bearer management

I'm creating a Qt Symbian application and need to connect to internet. In some way I need to let the user choose a connection ONCE when the app starts or use the DEFAULT connection if that is enabled. Before I just used qt_SetDefaultIap() to set the connection on start. It worked perfect but now I need to use QtMobility instead. I have ...

How to set Application Icon in QT on Symbian?

Hi! How can I set an app icon in QT on Symbian? I read here http://doc.qt.nokia.com/4.6/appicon.html about hot to set it but it doesn't work for me. I created SVG-Tiny icon(file) and wrote ICON = Resource/ico.svg in the pro file. What is wrong? Thanks in advance ...

Please let me know its an functionality behaviour or not

Hi all, I am having an listview filled with the items, by default the 0th item will be selected. If I try to navigate the list using mobile keypad its not gaining focus, instead i need to use my mobile select key for focus. In this process my mobile left soft key gets change do “Done” I don’t know why this “Done” menu is appearing in my...

Automatic pointer for Symbian

Is there any kind of automatic pointer, similar to auto_ptr or scoped_ptr, for Symbian? ...

Starting app on startup in Symbian S60

How do I make my application come at startup? Im using a Nokia N97 phone emulator on my pc .... I'm developing using java for Symbian S60 5th edition. Please help Thanks ...

How to download files from HTTP in Symbian C++?

Hi! I need to download file from HTTP in Symbian C++. Can somebody tell me, how I can do this, couse I cannot find it in Google? ...

Programming for Nokia phone ?

What is best way to develop for nokia phones ? symbian programing or html applications ? how to start symbian programming. i am not able to find the nokia carbide software anymore. which software is used to program ? ...

How to switch view in Symbian C++?

Hi! I'm just trying to switch between Test1View and Test2View on Symbian S60 3rd FP2 edition in Symbian C++ language. I have some components on both of them, but Test2 is for another operations than Test1, so I need to switch it to Test2. I read on Nokia Forum about it, but I cannot find working code. Can somebody tell me how I can do th...

Reading from XML file using XmlHandler class from Forum Nokia - Symbian C++

Hi! I'm trying to use XmlHandler class ( link to Forum Nokia with code of XmlHandler Class ) on Symbian S60 3rd FP2 edition to read xml files. I have in my function this code: CXmlHandler *iXmlHandler; TFileName fileName; iXmlHandler = CXmlHandler::NewL(); fileName.Append( KConfigFile ); iXmlHandler->StartParsingWithAoL( fileName ); ...

Make a phone call with qt 4.6.3

Hi, I need to trigger a phone call from a Qt application. I looked to previous post without find a complete answer. I need to make it with qt 4.6.3. I'm quite new to symbian development, I'm using the last nokiaSDK. It MUST work ONLY on n97 and E71. Can Anybody provide a solution? May be a solution exec an extenal process using QProces...

what is easiest way to save mms in pc?

dear friends, i want to save received mms in my pc through data cable or bluetooth automatically. any one guide me which phone supports functionality like this or is there any specific software available to achieve this? any help would be appreciated. ...

Uninstall a J2ME application through J2ME code?

Is there any way to do this? I found some Symbian C++ codes that could do it but nothing in J2ME. I have a J2ME certificate and don't have Symbian C++ certificate. Thanks in advance, Ashish. ...

QT Symbian etel3rdparty library

Hi, I am new to symbian enviroment, i am trying to build an application using QT Symbian, i need to use etel3rdparty.lib and header also , i have included the lib path and include path also, but i am getting a lot of compilation error. like as follows from c:\NokiaQtSDK\Symbian\SDK\epoc32\include/e32const.h:9, from c:\NokiaQtSDK\Symb...

how to use CTelephony API with QT Symbian

Hi, i want to use CTelephony API in QT Symbian project but after including etel3rdparty.h and etel3rdparty.lib as library and header in .pro file like this: LIBS += C:/NokiaQtSDK/Symbian/SDK/epoc32/release/armv5/lib/etel3rdparty.lib INCLUDEPATH += C:/NokiaQtSDK/Symbian/SDK/epoc32/include i am getting a lot of compilation errors. Plea...

Are local objects destructed in the case of a leave on Symbian?

On Symbian, if a function exits because of a leave, are the destructors of its local (automatic) variables called? From what I've tried on the emulator, they are. But then, why use the Cleanup Stack rather then smart pointers? ...

how to test file server plugin on Symbian emulator?

I am developing a simple file server plugin that intercepts requests. I want to test it. Because of the TCB capabilities I can't put it on a real device. How can I test it on Symbian^3 emulator? I am new to platform developments. I need help. ...