symbian

tools for doing c++/java symbian development

こ雲淡風輕ζ 提交于 2019-12-11 18:19:48
问题 I want to do some small application development for S60 3rd edition, FP2 of OS version 9.3 (target platform). What are the steps i need to do to start my development? what development OS do i need? windows or linux? Can i install carbide/java/c++ for linux? What is the preferred approach? http://www.developer.nokia.com/Resources/Tools_and_downloads/Other/ http://en.wikipedia.org/wiki/Carbide.c%2B%2B really confusing info in those wiki pages. it seems to suggest that i need symbian OS device

Not able to get the type of MessageType in email app of symbian 3rd

孤人 提交于 2019-12-11 12:37:11
问题 I want to develpoe an app which sends email from IMAP4 settings of the phone. And I am following this perticular wiki. RSendAs send; User::LeaveIfError(send.Connect()); CleanupClosePushL(send); RSendAsMessage sendMsg; sendMsg.CreateL(send,**KUidMsgTypeSMTP** ); CleanupClosePushL(sendMsg); sendMsg.SetSubjectL(_L("Incident Capture.")); sendMsg.AddRecipientL(_L("abc@xyz.com"),RSendAsMessage::ESendAsRecipientTo); sendMsg.SetBodyTextL(_L("Image Attached")); TRequestStatus status; //add attachment

Intercept incoming SMS

和自甴很熟 提交于 2019-12-11 03:53:38
问题 I would like to know what are the options for intercepting an SMS. I want to be able to launch some code to handle the SMS when it is received. Any advise on whether this is technically possible and what options I have if there is more than one way, would be greatly appreciated. Thanks Paul 回答1: Since you have so many tags, it's hard to tell which OS you're actually developing for. On the iPhone, you cannot "snoop in" on SMS messages without the help of a patched Kernel (jailbreak). 回答2: I

Qt - Mysterious segfaults on worker thread

痞子三分冷 提交于 2019-12-11 03:19:53
问题 I'm instantiating QSystemDeviceInfo on a worker thread, but it causes a segfault. int BatteryInfo::getLevel() { QSystemDeviceInfo sysDevInfo; //segfault happens when I step on to this line return sysDevInfo.batteryLevel(); } Is the class thread-safe, or does the problem lie elsewhere? EDIT: With further debugging I also noticed that native Symbian calls segfault as well. Best regards 回答1: Me and my friend found this issue as well on Symbian Qt Mobilty 1.0. He reported an issue QtMobility

How to set Application Icon in QT on Symbian?

有些话、适合烂在心里 提交于 2019-12-10 21:37:02
问题 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 回答1: That should do it. Works for me. Things to check: Have you run qmake and rebuilt the project after editing the .pro file? In emulator environment, have you restarted the emulator? Check that your PKG file has rules to install both

Symbian: Is it possible to get access to a list of contacts through an application?

天大地大妈咪最大 提交于 2019-12-10 18:59:02
问题 There are at least two ways that I know of to write a Symbian application: 1. J2ME 2. A native application. My question is, does the SDK/API for either of those methods (or any other method) grant me (at least) read-only access to contact information (names/numbers/etc) on the phone itself? Does this in any way depend on the specific phone being used? 回答1: In C++, you can use e.g. the Contacts Model API. There's an example in Forum Nokia. In J2ME, you need to be working on a phone that has

Qt: define Tab Order programmatically

不问归期 提交于 2019-12-10 16:27:28
问题 I've created 2 widget with Desinger (Widget1 and Widget2) , each one has it's tab order defined. A third widget (Widget3 )is defined programmatically and contains the above 2 widget in a vertical layout. In on a symbian non touch device. When I focus on widget3 I want to give the focus to widget1. Then go from widget1 to widget2 using the phone arrow when I reach the end of the widget1 tab chain. What is the proper way of doing this? 回答1: From Qt Documentation for, void QWidget::setTabOrder (

Central Button Soft key LWUIT

无人久伴 提交于 2019-12-10 16:26:16
问题 This might seem like a very trivial problem but I have spent quite some time on this without finding a viable solution. Nokia devices have a central select button,which allows us to assign soft keys to it. According to my requirement, I need to assign a specific command as the soft key. For instance it might be "Play" on one screen and "Select" on other. Note that I have a default select command already set using: setDefaultCommand((Command) v.elementAt(v.size() - 1)); which is always the

Different editions of Symbian

流过昼夜 提交于 2019-12-10 07:17:35
问题 I have to built a project in Symbian. I am having and confusion and had some question related to Symbian version. What is the difference between Symbian^3 , S60 3rd edition and S60 5th edition ? Is there any major difference as coding point of view with Symbian^3, S60 3rd edition, S60 5th edition? Does the code built in S60 3rd edition will work in S60 5th edition or code built in Sybmian^3 will work in S60 3rd edition, S60 5th edition or vice versa? Which IDE do we have to use for Symbian^3,

Auto start service in symbian

 ̄綄美尐妖づ 提交于 2019-12-08 13:31:05
问题 I have a question about symbian service. is that possible to create a service that automatically start with system ? Thanks for your help. 回答1: Go through the Startup List Management API to make an auto start application. How to auto start a program in symbian 回答2: If you are developing a Qt application this is the guide you are looking for: Autostart Qt applications at boot on Symbian devices 来源: https://stackoverflow.com/questions/6236676/auto-start-service-in-symbian