Hi Felipe,
It's nice to "see" you again. :D
Unfortunately Grob source code is not publicly available.
I guess it doesn't crash because it doesn't make use of webkit 2.0 (shipped with Qt 4.7) but...
Type: Posts; User: gnuton; Keyword(s):
Hi Felipe,
It's nice to "see" you again. :D
Unfortunately Grob source code is not publicly available.
I guess it doesn't crash because it doesn't make use of webkit 2.0 (shipped with Qt 4.7) but...
Hi,
documentation explains quite well how to use QProcess [1]
Once you have executed the process (see code snippet at [1]) you could use ::readAllStandardOutput() to get all stuff which are printed...
Hi,
I didn't test your app yet on my N9, but I noticed that the html file you load in the webview works nicely on grob.
Grob makes use of the webkit used by any other Qt app on the device.
If grob...
Hi,
to open the control panel from C++ using DBus you can see SettingsApplet::open() method here [1].
There is no easy way to track when the setting page is closed. Anyway you are not really...
Hi,
Wow, I never heard anything about this before.
At moment I cannot really understand how the QRC system can influence the GPS side and mess it up.
If you are still interested in this problem,...
Hi CaCO3,
the VKB is shown when a text entry widget receives the active focus.
You can implement "onActiveFocusChanged" slot to remove the focus or to give the focus to other elements in your UI.
If you are displaying some text in your delegate you can use JS regexp to hide the item. [1]
listview {
delegate: Text { visible: //here the JS regexp test}
}...
You are welcome. Fill free to ask more if you need.
But please open new threads if it's off-topic
Hi,
This topic has been already discussed here http://www.developer.nokia.com/Community/Discussion/showthread.php?226283-Grab-Volume-Keys-on-Harmattan
I agree with you, but I don't know the actual story behind the "fixed" tag.
For sure If they marked it as "fixed" they have found and fixed something that in their understading was the bug.
Wow, ok I haven't seen this problem on my device.
Do you know if this bug has been faced by other people too?
Has this problem been filed in bugzilla? if yes could you please tell me the ID?
Hi,
Just received an answer. In my understanding there are very few chance to see thjis bug fixed.
It was marked as fixed since the fix was integrated in PR 1.2.
But Soumya has reopened the bug...
Thanks for sharing.
I've just mailed couple of people just to understand what's going on with the bug.
I will try to push it forward as much as I can, but I cannot really give you any warranty.
I...
At this stage I don't think Nokia is going to add new features to Harmattan anymore. Unfortunately. :(
Your hint comes too late! :P
Could you please tell me the bug reference number or URL?
I will check why it has not been fixed yet even if it has high priority status.
Hi conxt,
so wlan settings are stored in gconf:
/home/developer $ gconftool-2 /system/osso/connectivity/IAP --all-dirs
/system/osso/connectivity/IAP/2ded83d7-076f-47a1-b957-4d6f132e56cc
...
Hi conxt,
this question is off-topic! :D It'a better to open a new thread for it.
Those info are anyway stored in GConf DB. I will tell u more as soon as a proper thread is opened.
Back to the...
Hi,
Do you mean all alarms were off or were they completely gone?
I had only one alarm on my N9, but it was off and I hadn't lost it during the switch.
In theory the phone should not remove. If...
Harmattan is a young system compared to others (Symbian, s40, android...).
It could be there is something wrong in the way it handles these situations.
Nokia devices, before to go to market, have...
Hi,
Since you cannot use MCE, you could launch the "internet connection" setting dialog with via DBus.
dbus-send --print-reply --session --dest=com.nokia.DuiControlPanel /...
Hi,
I've been using N9 for long time now and to be honest I never faced this problem, or at least I didn't noticed that.
What happens when you call when the phone has lost the connection?
Does...
Hi,
Correct your app can be unresponsive if long operations are computed in the main thread (the one which the UI runs).
We don't have any code to see and comment....
So what I can suggest you is...
Hi,
the graphicsview is a QWidget. If you instantiate it with
QGraphicsView *view1 = new QGraphicsView(scene),
you basically create a new dialog since the graphicsview doesn't have any parent....
Well, it could be a QFrame or whatever. The important thing as you said is the WA.
view()->parentWidget()->setWindowFlags(Qt::Popup | Qt::Window | Qt::FramelessWindowHint); doesn't really help...
Hi,
The "square" drawn behind the ComboBox list is a Dialog.
I guess that list needs the Qt::WA_TranslucentBackground attribute set with QWidget::setAttribute().