[Interest] Showing QGuiApplication/QML application on a given HWND ref.

2015-06-02 Thread Nuno Santos
Hi, When we start a new QGuiApplication, it handles the Window creation on each platform. Now imagine that someone would give us a window ref and we wanted to put our Qt application running on it. Is this possible? I’m building a plugin for an host program that provides the window for the p

[Interest] Modal busyIndicator in Android

2015-06-02 Thread Federico Buti
Hi list, in the attempt to look as native as possible, I've defined a QML busy indicator for Android as follows: Dialog { property alias text: labelWorking.text standardButtons: StandardButton.NoButton RowLayout { BusyIndicator { id:busy opacity:

Re: [Interest] Qml .rcc by module?

2015-06-02 Thread Jérôme Godbout
Yeah, it would be nice, if I push the idea even further, you could have your qml inside ressource too (.qml files inside the .rcc files), that would also be nice. Mostly the external are not qml scripts but images, movies and other files that the Qml will be usings. The problems we are facing is m

Re: [Interest] Qml .rcc by module?

2015-06-02 Thread m...@rpzdesign.com
Gerome: Hopefully I understand what you mean. Looks like you are trying to load externalized QML resources dynamically. QML Dynamic options: Loader->Source() (Url or Localfile) Loader->SourceComponent() Dynamic C++: QmlEngine->loadData()/load() QmlComponent->setData()/loadUrl() I have yet to

[Interest] Qml .rcc by module?

2015-06-02 Thread Jérôme Godbout
Hi, It may seem odd, but I'm looking to have some resources bundle that could be generated for some qml modules and only used when the module is used or import. Here's what I'm looking to do: - App.exe --performAction1 - ModuleA 1.0 (qmldir, some .qml) - ModuleA.rcc (images, font,

Re: [Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Alexander Ivash
Thank you guys, jenkins looks like a right way to go! 2015-06-02 16:12 GMT+03:00 alexander golks : > hi, > > we are using jenkins, for windows currently only, but: > > - we use dependencies during a build, having multiple libraries build > first and the depending users build afterwards > - severa

Re: [Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread alexander golks
hi, we are using jenkins, for windows currently only, but: - we use dependencies during a build, having multiple libraries build first and the depending users build afterwards - several different custom build steps for some projects - calls to cygwin and cmd line scripts // must pay attention

Re: [Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Edward Sutton
Jenkins has a plug-in or two for Qt. I do not use them. My jenkins jobs consist of manual calls to qmake, scripts and stuff. No magic. Basically recreating the commands I see in Qt Creator’s compiler window. This may give an overview: http://www.egeek.me/2012/07/10/jenkins-and-qt/ -Ed On

Re: [Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Alexander Ivash
Thank you, I will take a look! But does it have support for Qt-based projects, or custom build steps with manual launching 'qmake' / 'xxxdeploy' tools are required? 2015-06-02 15:17 GMT+03:00 Edward Sutton : > I use Jenkins for building releases for Android, iOS, Linux, OS X, and > Windows. > >

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

2015-06-02 Thread Edward Sutton
Thank you Ben, Categories works! I do not understand how. No header file and it somehow works without having to initialize it to the instance of UIApplication. I put a breakpoint in openURL. When I open an email attachment, my app is launched, and the breakpoint is hit. Magic. #include

Re: [Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Edward Sutton
I use Jenkins for building releases for Android, iOS, Linux, OS X, and Windows. https://jenkins-ci.org/ I have a job that builds an Android APK ready for Google Play Store deployment. On iOS I still have work to do. I need to figure out how to do a command line, sign, archive, and package bef

[Interest] cross-platform CI for mobile Qt-based projects (iOS / android)

2015-06-02 Thread Alexander Ivash
Does such a thing exist at the moment? If no, I'd appreciate any hints on implementing this (At the moment I'm looking at the 'builbot', but not sure if this is the best option). ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.or