Re: [Interest] [ iOS ] How implement didFinishLaunchingWithOptions to open file associated with MyWidgetApp from another app?

2015-06-01 Thread Ben Lau
Objective-C provides a feature called category which could override any class even you don't have the header file. So you just need to override the openUrl of QIOSApplicationDelegate. Example code to override didFinishLaunchingWithOptions quickios/appdelegate.mm at master · benlau/quickios

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Nuno Santos
Hi, I just want to share with you that I have checked Qt from source: git clone https://code.qt.io/qt/qt5.git cd qt5 git checkout 5.5 perl init-repository and then applied this two patches by cherry picking: https://codereview.qt-project.org/#/c/111866/ https://codereview.qt-project.org/#/c/111

Re: [Interest] [ iOS ] How implement didFinishLaunchingWithOptions to open file associated with MyWidgetApp from another app?

2015-06-01 Thread Edward Sutton
Thank you for the links Robert. How would you hook into the application openURL from a Qt widget app? - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { // handle the URL here } “Open in MyApp”

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Nuno Santos
Tim, This is precisely the problem i’m experiencing. Andy Shaw, the assignee, posted a comment in the middle of May 2015: Andy Shaw added a comment - 06/May/15 4:03 PM - edited https://codereview.qt-project.org/#/c/111866/ submitted https://codereview.qt-project.org/111870 is also needed Do you

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Nuno Santos
Thiago, Yes! > On 01 Jun 2015, at 17:12, Thiago Macieira wrote: > > On Monday 01 June 2015 15:32:43 Nuno Santos wrote: >> qrc:/main.qml:1 module "QtQuick" is not installed >> qrc:/main.qml:2 module "QtQuick.Window" is not installed > > Did you add the necessary QT_IMPORT_PLUGIN to a .cpp file?

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Thiago Macieira
On Monday 01 June 2015 18:37:45 Ulf Hermann wrote: > On 06/01/2015 06:10 PM, Thiago Macieira wrote: > > On Monday 01 June 2015 15:01:14 Ulf Hermann wrote: > >> You probably have to add the following somewhere: > >> > >> LIBS += /path/to/libqmldbg_tcp.a > > > > but like I said, he shouldn't have t

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Ulf Hermann
On 06/01/2015 06:10 PM, Thiago Macieira wrote: > On Monday 01 June 2015 15:01:14 Ulf Hermann wrote: >> You probably have to add the following somewhere: >> >> LIBS += /path/to/libqmldbg_tcp.a > > but like I said, he shouldn't have to. That's a bug in QtQml that it uses > qmldbg_tcp without linking

Re: [Interest] Camera not worknig on IOS

2015-06-01 Thread Daniel França
Sounds good. Thanks for the updated information guys. Em seg, 1 de jun de 2015 às 18:08, Jason H escreveu: > Allegedly, June 11 is the target date for the RC. The string freeze is > supposed to happen today. > > > > Sent: Monday, June 01, 2015 at 11:56 AM > > From: "Lopes Yoann" > > To: "Jason

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Thiago Macieira
On Monday 01 June 2015 15:32:43 Nuno Santos wrote: > qrc:/main.qml:1 module "QtQuick" is not installed > qrc:/main.qml:2 module "QtQuick.Window" is not installed Did you add the necessary QT_IMPORT_PLUGIN to a .cpp file? Can you try QTPLUGIN += whatever instead of LIBS += for those plugins? That

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Thiago Macieira
On Monday 01 June 2015 15:01:14 Ulf Hermann wrote: > You probably have to add the following somewhere: > > LIBS += /path/to/libqmldbg_tcp.a but like I said, he shouldn't have to. That's a bug in QtQml that it uses qmldbg_tcp without linking to it. -- Thiago Macieira - thiago.macieira (AT) inte

Re: [Interest] Camera not worknig on IOS

2015-06-01 Thread Jason H
Allegedly, June 11 is the target date for the RC. The string freeze is supposed to happen today. > Sent: Monday, June 01, 2015 at 11:56 AM > From: "Lopes Yoann" > To: "Jason H" > Cc: "Edward Sutton" , "Gunnar Roth" > , "interest@qt-project.org" > Subject: Re: [Interest] Camera not worknig on

Re: [Interest] [ iOS ] How implement didFinishLaunchingWithOptions to open file associated with MyWidgetApp from another app?

2015-06-01 Thread Robert Iakobashvili
On Mon, Jun 1, 2015 at 6:29 PM, Edward Sutton wrote: > For example, the user receives a "report.myapp" file in Apple Mail app as a > file attachment. > > When user opens the file attachment, how do you offer "Open in MyWIdgetApp” > as one of the choices? Has anyone figured out how to do this or f

Re: [Interest] Camera not worknig on IOS

2015-06-01 Thread Lopes Yoann
Issues related to video recording are fixed for 5.5.0. — Yoann ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Camera not worknig on IOS

2015-06-01 Thread Jason H
  I think still capture is fine, aside from no ability to control the flash. I've been testing still camera capture on 5.4.1 for a few months now and it works. I'm not sure about video capture, but that would be a huge oversight if it didn't.   Here is my iOS .pro block: ios { QMAKE_INFO_PL

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Tim Blechmann
> 2015-06-01 15:30:48.854 Live[81151:5901261] _DPSDiscardEvents: > FlushEventsMatchingListFromQueue returned error (-50) > "/Applications/Ableton Live 9 Standard.app/Contents/MacOS" > "/Users/nsantos/Qt/5.4/clang_32_static/plugins" > QQmlApplicationEngine failed to load component > qrc:/main.qml:1

[Interest] [ iOS ] How implement didFinishLaunchingWithOptions to open file associated with MyWidgetApp from another app?

2015-06-01 Thread Edward Sutton
For example, the user receives a "report.myapp" file in Apple Mail app as a file attachment. When user opens the file attachment, how do you offer "Open in MyWIdgetApp” as one of the choices? Has anyone figured out how to do this or found an example? I use UIDocumentInteractionController in M

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Nuno Santos
Ulf, I have recompiled Qt without the -DQT_QML_NO_DEBUGGER I have also changed the .pro to include directory the libs: LIBS += /Users/nsantos/Qt/5.4/clang_32_static/qml/QtQuick.2/libqtquick2plugin.a LIBS += /Users/nsantos/Qt/5.4/clang_32_static/qml/QtQuick/Window.2/libwindowplugin.a

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Ulf Hermann
> macx:{ > CONFIG += lib_bundle shared > QTPLUGIN += qcocoa *qmldbg_tcp qmldbg_tcp_qtdeclarative* I guess this doesn't have any effect on static builds. I'm no qmake expert, though. Also, there is only one of them. It's called qmldbg_tcp. > QMAKE_POST_LINK = mv -f $(TARGET) > $$PW

Re: [Interest] [QtBluetooth] Pairing two devices

2015-06-01 Thread Claudiu Olteanu
I just saw the reply from Alex. I'm not sure why I didn't received the e-mail. Thanks for the help, Alex. I hope that the problems will be fixed soon. Best wishes, Claudiu On Monday, June 1, 2015 4:53 PM, Claudiu Olteanu wrote: Sorry for the format of the last message. I tried to pair t

Re: [Interest] [QtBluetooth] Pairing two devices

2015-06-01 Thread Claudiu Olteanu
Sorry for the format of the last message. I tried to pair the devices from the CLI using bluetoothctl tool and I observed that if I try to connect the devices without creating an agent first, it fails with the same error. [bluetooth]# pair 00:12:6F:2A:0B:6E Attempting to pair with 00:12:6F:2A:

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Nuno Santos
Ulf, I have followed your suggestion and with the same build of static Qt (with -DQT_QML_NO_DEBUGGER on) I have added the following plugins to the .pro file: QT += qml quick TARGET = drc TEMPLATE = lib DEFINES += VST macx:{ CONFIG += lib_bundle shared QTPLUGIN += qcocoa qmldbg_tcp qmld

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Ulf Hermann
> When I built Qt statically I had used this line: > > configure -prefix /Users/nsantos/Qt/5.4/clang_32_static -platform > macx-clang-32 -commercial -release -static -nomake examples -nomake tests > -opengl desktop -skip webkit -skip multimedia -D QT_QML_NO_DEBUGGER > > I had to use -DQT_QML_NO_D

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Nuno Santos
Ulf, Thanks for your reply. When I built Qt statically I had used this line: configure -prefix /Users/nsantos/Qt/5.4/clang_32_static -platform macx-clang-32 -commercial -release -static -nomake examples -nomake tests -opengl desktop -skip webkit -skip multimedia -D QT_QML_NO_DEBUGGER I had to

Re: [Interest] QtPlugins statically linked not loading

2015-06-01 Thread Ulf Hermann
Hi Nuno, > This is the .pro > [...] > LIBS += > /Users/nsantos/Qt/5.4/clang_32_static/qml/QtQuick.2/libqtquick2plugin.a > LIBS += > /Users/nsantos/Qt/5.4/clang_32_static/qml/QtQuick/Window.2/libwindowplugin.a > LIBS += > /Users/nsantos/Qt/5.4/clang_32_static/qml/QtQuick/Controls/

Re: [Interest] [QtBluetooth] Pairing two devices

2015-06-01 Thread Blasche Alexander
Hi Claudiu, Unfortunately there are a few pairing related issues which are still unresolved in QtBluetooth. 1.) The Bluez5 port is not 100% complete when compared to Bluez 4 (https://bugreports.qt.io/browse/QTBUG-38401) 2.) The API doesn't allow you to specify a PIN as required by your use c