[Interest] Regression in 5.4.0rc Fusion or I'm doing something wrong?

2014-12-03 Thread Stanislav Baiduzhyi
Hi All, I've upgraded Qt from 5.3.2 to 5.4.0rc yesterday (openSUSE 13.2 KDE:Qt5 repository), and noticed following issue with it: https://drive.google.com/open?id=0B5Kp-cB1sXJrX2xUSUswNUtwM28authuser=0 Front window is KDE4 Krusader with Oxygen, left window is Qupzilla-qt5 preferences. Notice

Re: [Interest] Opening media library in Qt/Qml on iOS/Android to choose picture

2014-12-03 Thread Mike Krus
You need to do this using the native SDK. For iOS, see https://www.youtube.com/watch?v=HNQpJG2F6ow https://www.youtube.com/watch?v=HNQpJG2F6ow https://github.com/richardmg/qtdd13_qmlapp https://github.com/richardmg/qtdd13_qmlapp Mike On 2 Dec 2014, at 15:42, Nuno Santos

Re: [Interest] Opening media library in Qt/Qml on iOS/Android to choose picture

2014-12-03 Thread Nuno Santos
Awesome! :) Thanks! Nuno On 03 Dec 2014, at 08:21, Mike Krus mike.k...@gmail.com wrote: You need to do this using the native SDK. For iOS, see https://www.youtube.com/watch?v=HNQpJG2F6ow https://www.youtube.com/watch?v=HNQpJG2F6ow https://github.com/richardmg/qtdd13_qmlapp

[Interest] QSettings mystery

2014-12-03 Thread Nuno Santos
Hi, I’m being faced with a mystery. I’m using QSettings to save my application settings and I have used the filename method to find the path to the file where the settings are being saved. After deleting the file and starting the app again, there are settings persisting. I have already tried

Re: [Interest] QSettings mystery

2014-12-03 Thread Samuel Gaist
Hi, If the system didn't change since last version, the preferences are cached by cfprefsd, so you have to call defaults delete [your bundle identifier] on the command line. If that doesn't work, you'll have to kill cfprefsd. Beware to only kill the one for your user. Hope it helps Samuel

Re: [Interest] QSettings mystery

2014-12-03 Thread Nuno Santos
Hum… interesting. I will try it. One more question. While i’m targeting this app to iOS and Android, the main development is made on the computer to accelerate development. One curious fact is that the file is pointing to the bundle identifier com.imaginando.lk.LK.plist but I don’t have that

[Interest] QML Camera api question

2014-12-03 Thread Harri Pasanen
Reading the QML Camera api docs I can see a way to set exposure modes. But I don't seem to find a way to query the list of supported exposure modes. QCameraExposure::isExposureModeSupported() would seem to be the function to call in C++, but how to do that from QML? Same goes for

Re: [Interest] Opening Qt/Qml window inside host app

2014-12-03 Thread Nuno Santos
Tim, I cannot tell you exactly how it is working. That was what I supposed as well. I even considered not calling exec and call app-processEvents(); on a regular basis somehow. This is what I have: IVstWrapper::IVstWrapper(audioMasterCallback audioMaster) : AudioEffectX (audioMaster,

Re: [Interest] QSettings mystery

2014-12-03 Thread Till Oliver Knoll
Am 03.12.2014 um 17:15 schrieb Nuno Santos nunosan...@imaginando.pt: Hum… interesting. I will try it. One more question. While i’m targeting this app to iOS and Android, the main development is made on the computer to accelerate development. One curious fact is that the file is

Re: [Interest] QSettings mystery

2014-12-03 Thread Samuel Gaist
On 3 déc. 2014, at 21:39, Till Oliver Knoll till.oliver.kn...@gmail.com wrote: Am 03.12.2014 um 17:15 schrieb Nuno Santos nunosan...@imaginando.pt: Hum… interesting. I will try it. One more question. While i’m targeting this app to iOS and Android, the main development is made on the

Re: [Interest] QSettings mystery

2014-12-03 Thread Till Oliver Knoll
Am 03.12.2014 um 21:39 schrieb Till Oliver Knoll till.oliver.kn...@gmail.com: Am 03.12.2014 um 17:15 schrieb Nuno Santos nunosan...@imaginando.pt: Hum… interesting. I will try it. One more question. While i’m targeting this app to iOS and Android, the main development is made on the

[Interest] [qt-iOS] How to specify a Framework as optional?

2014-12-03 Thread Liang Jian
Hello everyone, I want to use Photos Framework in a Qt project, so I specify the Framework in *.pro file as below: LIBS += -framework Photos It works, but since Photos Framework was introduced in iOS 8.0, my app won't run in iOS 7.0. Using xcode I can specify Photos Framework as

[Interest] [qt-iOS] API for Apps to Forbid Custom Keyboards

2014-12-03 Thread Robert Iakobashvili
Hi, Apps may wish to allow/forbid certain extension point identifiers.in iOS-8. For example, from the link below: http://stackoverflow.com/questions/25911004/is-it-possible-for-an-app-to-disallow-custom-keyboard-in-ios-8 To disable custom keyboard in your app completely override the

Re: [Interest] [qt-iOS] API for Apps to Forbid Custom Keyboards

2014-12-03 Thread Till Oliver Knoll
Am 04.12.2014 um 07:40 schrieb Robert Iakobashvili corobe...@gmail.com: ... To disable custom keyboard in your app completely override the application:shouldAllowExtensionPointIdentifier: (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSString

Re: [Interest] [qt-iOS] How to specify a Framework as optional?

2014-12-03 Thread Till Oliver Knoll
... LIBS += -framework Photos It works, but since Photos Framework was introduced in iOS 8.0, my app won't run in iOS 7.0 https://developer.apple.com/library/mac/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/WeakLinking.html See at the bottom: -weak_framework