symbian

access to sms inbox

雨燕双飞 提交于 2019-12-24 04:01:34
问题 How can I access the SMS inbox from an application (on Symbian s60)? Us it possible with j2me? How about C++ or Python? 回答1: Reading message from inbox in j2me is not possible if you want to read sms then you can send message using particular port and your j2me application should listen on that port otherwise you can go with symbian c++ where it is possible. 回答2: In j2me, you can't access the native message box related stuff like Inbox, Sent Message or etc. But it is possible in c++. I don't

access to sms inbox

北战南征 提交于 2019-12-24 04:01:04
问题 How can I access the SMS inbox from an application (on Symbian s60)? Us it possible with j2me? How about C++ or Python? 回答1: Reading message from inbox in j2me is not possible if you want to read sms then you can send message using particular port and your j2me application should listen on that port otherwise you can go with symbian c++ where it is possible. 回答2: In j2me, you can't access the native message box related stuff like Inbox, Sent Message or etc. But it is possible in c++. I don't

QML Qt openUrlExternally

一个人想着一个人 提交于 2019-12-23 07:46:30
问题 I've just discovered strange behavior when using this code Qt.openUrlExternally(someurl); I would like to let my users open facebook sharer url, but I cannot use this code, as it does nothing. Tested on S60 5th and Symbian^3 devices (C5, C7, 5230, N8) So please tell me (if you know) 1) Is there any BUG about this component/behavior ? (I searched and didn't found anything) 2) How can i make C++ component to do the same thing ?` (If it is solution) Thanks Edit I found example for creating C++

How to place one widget over another in Qt

亡梦爱人 提交于 2019-12-22 03:48:43
问题 i have a window in Qt, on that i am drawing a picture. now i want to place the progressbar over it. how can i do that?.. steps i am following to do Create a window, Draw picture in paint event of window Then create QGridLayout layout, add your window Display over it. suppose i want to add progress bar, over a portion of picture window. how can i do that i dont think its possible to implement in window paint event. please assist me Thanks 回答1: You can add the progress bar as child of your

OpenSSL RSA encryption with no padding fails to encrypt correctly

自古美人都是妖i 提交于 2019-12-21 20:23:30
问题 We're trying to perform RSA encryption using the "RSA_public_encrypt()" method (openSSL on Symbian), but we're not quite succeeding. The encryption itself succeeds, but the encrypted text (which we try to match to a hash) isn't what it should be (on other platforms, we checked this were we now it is working correctly and we get different values here). We think this is probably due to the input which isn't provided in the correct format to the "RSA_public_encrypt()" method. The code: #define

What is the best practices in switching between application windows in Qt?

末鹿安然 提交于 2019-12-21 20:08:42
问题 I have an application with the following UI forms deriving from QMainWindow LoginWindow TasksWindow DetailsWindow I'm supposed to login into the application in the LoginWindow where I will move to the TasksWindow. In the TasksWindow, I will choose an item from a combo box, and then I should move to the DetailsWindow and populate data related to that item. On the DetailsWindow, I will have a menu action to return me back to the TasksWindow. Currently, what I have in mind (and what I've tried)

Qt or Symbian C++? [closed]

社会主义新天地 提交于 2019-12-20 09:46:23
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 years ago . I am planing to develop on Symbian systems but I am not familiar with it. I know (might be) the most popular way of developing on Symbian is Symbian C++, and I also heard of Qt. What's the difference between them? If I want my app run on most of the Symbian systems, which

how to find the running process and kill the process in QT?

跟風遠走 提交于 2019-12-20 06:37:02
问题 i am developing a very simple application for nokia mobile.my task is to find what are all the process currently running ? after that i have to kill(exit that application i.e camera or musicplayer) that process! i have tried to find some simple method in Qprocess but there is no function to listout the current process. is there any possible way in NokiaQT or i have to use symbianC++???? 回答1: Qt does not provide an API to do this. You will need to use the appropriate OS API instead. I'm not

How to translate language in Qt on the fly

最后都变了- 提交于 2019-12-18 05:11:12
问题 I am using Translator and linguist to translate language in my application in Qt symbain, But I want to do this on the fly (on run time), I have tried the solution given by the developer network but it is not working for me #include "languagetranslator.h" #include "constants.h" #include <QSettings> #include <HelperClasses/Strings.h> #include <QTranslator> #include <AppStatus/appstatus.h> #include <QApplication> QTranslator* LanguageTranslator::current = 0; LanguageTranslator: