Re: [Interest] Qt 5.8 build from source on OSX - Can't configure ssl - Feature 'openssl' was enabled, but the pre-condition '!features.securetransport && tests.openssl' failed.

2017-01-03 Thread Nuno Santos
Bingo! ;) > On 3 Jan 2017, at 22:54, Thiago Macieira wrote: > > On terça-feira, 3 de janeiro de 2017 22:30:16 BRST Nuno Santos wrote: >> Check config.log for details. >> >> >> config.log is empty >> >> What am I failing here? Any ideas? > > Rerun configure with -recheck. You probably erased

[Interest] Where are the pkgconfig files for Qt5.7 (mac)?

2017-01-03 Thread Aaron Lewis
I'm trying to compile Warzone2100 on mac, but But the configure script fails: configure:8912: $PKG_CONFIG --exists --print-errors "Qt5Core Qt5Gui Qt5Widgets Qt5Script" Package Qt5Core was not found in the pkg-config search path. Perhaps you should add the directory containing `Qt5Core.pc' to the

Re: [Interest] Platform dependent *.qrc entries

2017-01-03 Thread Jason H
You can't do what you want from a work-flow perspective. You need to be given/provide a list of files to provide, broken down in to common and platform-specific dirs. You need to specify the filenames, and refer to them in code. Potentially, you can provide the QRC in each platform directory sinc

Re: [Interest] Platform dependent *.qrc entries

2017-01-03 Thread Rainer Wiesenfarth
2017-01-03 23:50 GMT+01:00 Thiago Macieira : > On terça-feira, 3 de janeiro de 2017 21:31:52 BRST Bernhard B wrote: > > android{ > > RESOURCES += android.qrc > > } > > > > ios{ > >RESOURCES += ios.qrc > > } > > > > But as most of the resources are shared between all targets, keeping > thos

[Interest] 5.9 Wish: Reduce the QML model switching pain

2017-01-03 Thread Jason H
For C++ models, Qt uses .count. For JS models, it uses .length. When you find yourself in the unenviable position of having to provide a C++ model where a JS one would have sufficed, it's painful to have to change all the model.length-s to model.count-s. That's the "easy part". But the real ma

Re: [Interest] Qt 5.8 build from source on OSX - Can't configure ssl - Feature 'openssl' was enabled, but the pre-condition '!features.securetransport && tests.openssl' failed.

2017-01-03 Thread Thiago Macieira
On terça-feira, 3 de janeiro de 2017 22:30:16 BRST Nuno Santos wrote: > Check config.log for details. > > > config.log is empty > > What am I failing here? Any ideas? Rerun configure with -recheck. You probably erased the file to have only the information you wanted, but configure now caches t

Re: [Interest] Platform dependent *.qrc entries

2017-01-03 Thread Thiago Macieira
On terça-feira, 3 de janeiro de 2017 21:31:52 BRST Bernhard B wrote: > android{ > RESOURCES += android.qrc > } > > ios{ >RESOURCES += ios.qrc > } > > But as most of the resources are shared between all targets, keeping those > resource files in sync is really difficult. Is there a possibi

Re: [Interest] Building Qt 5.8 from source on Windows - x86-windows-msvc2015-pe-32bit may not produce code compatible with the Qt version 5.8.1 (x86-windows-unknown-pe-32bit)

2017-01-03 Thread Thiago Macieira
On terça-feira, 3 de janeiro de 2017 21:17:33 BRST Nuno Santos wrote: > Thiago, > > Any ideas? Am I unable to compile it on windows right now? It that it? > > Anything that I can do? You can compile on Windows. You never said or offered any evidence you couldn't. Qt Creator couldn't recognise

[Interest] Qt 5.8 build from source on OSX - Can't configure ssl - Feature 'openssl' was enabled, but the pre-condition '!features.securetransport && tests.openssl' failed.

2017-01-03 Thread Nuno Santos
Hi, I’m trying to compile Qt 5.8 from source with openssl-linked with the following configure command: ./configure -confirm-license -prefix /Users/nsantos/Qt/5.8/clang_64_5_8_beta_patched_static -platform macx-clang -commercial -debug-and-release -static -no-securetransport -openssl-linked -I

Re: [Interest] Fwd: Platform dependent *.qrc entries

2017-01-03 Thread Jason H
Well, it seem then that no, there isn't a built-in way to do waht you want.   The shared stuff should go in shared.qrc, and platform-specifics in %platform%.qrc But then you say: "But as most of the resources are shared between all targets, keeping those resource files in sync is really difficul

Re: [Interest] Building Qt 5.8 from source on Windows - x86-windows-msvc2015-pe-32bit may not produce code compatible with the Qt version 5.8.1 (x86-windows-unknown-pe-32bit)

2017-01-03 Thread Nuno Santos
Thiago, Any ideas? Am I unable to compile it on windows right now? It that it? Anything that I can do? Thanks, Regards, Nuno > On 3 Jan 2017, at 19:24, Thiago Macieira wrote: > > On terça-feira, 3 de janeiro de 2017 18:42:23 BRST Nuno Santos wrote: >> SET QMAKESPEC=win32-msvc > > My guess

[Interest] Fwd: Platform dependent *.qrc entries

2017-01-03 Thread Bernhard B
Hi Jason, thanks for your answer! Maybe I am misunderstanding something here, but isn't that something that happens at runtime? I always thought that all the platform dependent resources are bundled in the resources file and the file selector only selects the right resource for the platform the a

Re: [Interest] Platform dependent *.qrc entries

2017-01-03 Thread Jason H
File Selectors? http://www.ics.com/blog/mastering-qt-file-selectors   +{selector} /      Sent: Tuesday, January 03, 2017 at 3:31 PM From: "Bernhard B" To: interest@qt-project.org Subject: [Interest] Platform dependent *.qrc entries Hi,   is it somehow possible to add a resource to th

[Interest] Platform dependent *.qrc entries

2017-01-03 Thread Bernhard B
Hi, is it somehow possible to add a resource to the resources file (*.qrc) depending on the targeted platform? I have a few resources that are only needed on specific targets (e.q Android, iOS). Now I would like to make sure that those resources are only added on the targeted platform (to prevent

Re: [Interest] Building Qt 5.8 from source on Windows - x86-windows-msvc2015-pe-32bit may not produce code compatible with the Qt version 5.8.1 (x86-windows-unknown-pe-32bit)

2017-01-03 Thread Thiago Macieira
On terça-feira, 3 de janeiro de 2017 18:42:23 BRST Nuno Santos wrote: > SET QMAKESPEC=win32-msvc My guess is that this change to the way we store mkspecs in Qt 5.8 broke the detection on Qt Creator. > SET QMAKE_MSC_VER=1900 Don't do this. It's useless and misleading, because qmake does not read

Re: [Interest] QMAKE_ASSET_CATALOGS

2017-01-03 Thread Jason H
Is there more comprehensive documentation? I have been deploying Qt-based iOS apps for years, and I am currently using: launch_images_actual.files = $$PWD/ios/Launch.xib $$PWD/ios/launchimage-ios7-portr...@2x.png QMAKE_BUNDLE_DATA += launch_images_actual ios_icon.files = $$files($$PWD/ios/AppIco

Re: [Interest] QMAKE_ASSET_CATALOGS

2017-01-03 Thread Jake Petroules
Asset catalogs in QMAKE_BUNDLE_DATA are deprecated in 5.7.1 Simply add the path to your xcassets bundle to QMAKE_ASSET_CATALOGS, like so: QMAKE_ASSET_CATALOGS += path/to/resources.xcassets You can also set the name of the app icon and launch image like so: QMAKE_ASSET_CATALOGS_APP_ICON = AppIco

[Interest] Building Qt 5.8 from source on Windows - x86-windows-msvc2015-pe-32bit may not produce code compatible with the Qt version 5.8.1 (x86-windows-unknown-pe-32bit)

2017-01-03 Thread Nuno Santos
Hi, I'm trying to build Qt 5.8 from source and I'm having problems I have never had when building previous versions. This is what I do to build it: With git bash: - git clone git://code.qt.io/qt/qt5.git - cd qt5 - perl init-repository With windows command prompt - I run the following .bat

Re: [Interest] QMAKE_ASSET_CATALOGS

2017-01-03 Thread bralchenko
While not exactly QMAKE_ASSET_CATALOGS, but that’s how we manage assets, including iOS specific files. This is iOS section of the pro file. # iOS ios { deployment.files = $$PWD/assets QMAKE_BUNDLE_DATA += deployment assets_catalogs.files = $$files($$PWD/ios_files/*.xcassets) QM

Re: [Interest] QtDesigner needs redesign.

2017-01-03 Thread André Pönitz
On Mon, Jan 02, 2017 at 01:40:51PM +, Shawn Rutledge wrote: > > > On 2 Jan 2017, at 14:15, Thiago Macieira > > wrote: > > > > On segunda-feira, 2 de janeiro de 2017 13:55:43 BRST Serge K via > > Interest wrote: > >> Is there anybody now creating NEW QtDesigner? Are there at least > >> plans

Re: [Interest] 2017

2017-01-03 Thread René J . V . Bertin
On Tuesday January 3 2017 16:05:07 Shawn Rutledge wrote: >If nobody has done that yet, it’s quite predictable that someone will pretty >soon. (googles) ok maybe https://github.com/RealVNC/wayland-developer-preview >but I haven’t tried it... That still requires the Weston reference server, but

Re: [Interest] QtDesigner needs redesign.

2017-01-03 Thread Bob Hood
On 1/3/2017 10:26 AM, André Pönitz wrote: My *personal* approach is to use Desiner only to play around to get layout and resizing behaviour right, but re-do the actual implementation in code, either from scratch or based on uic output. Indeed, this is precisely how I use it in my workflow as we

Re: [Interest] QtDesigner needs redesign.

2017-01-03 Thread André Pönitz
On Mon, Jan 02, 2017 at 01:55:43PM +0300, Serge K via Interest wrote: > I used QtCreator with older Qt versions. Now I use QtCreator 4.0.1 > with Qt5.6.1 but I cannot see major difference between it's QtDesigner > and old one. There is none. > Through years Designer remains the same with ugly > f

[Interest] Android: This application failed to start because it could not find or load the Qt platform plugin "android"

2017-01-03 Thread Wassmuth, Christian
Hallo, I've tried to build Qt for android from the 5.8 branch in git. The build succeeded without error, but when I try to run an app against this version, I get the following error: F libuntitled1.so: kernel/qguiapplication.cpp:1132 (void init_platform(const QString&, const QString&, const QS

[Interest] QMAKE_ASSET_CATALOGS

2017-01-03 Thread mark diener
Anybody know how to make QMAKE_ASSET_CATALOGS actually work. No working example on net. Qt 5.7.1 OSX building for IOS ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] 2017

2017-01-03 Thread André Pönitz
On Tue, Jan 03, 2017 at 01:50:06PM -0200, Thiago Macieira wrote: > On terça-feira, 3 de janeiro de 2017 16:19:27 BRST René J.V. Bertin wrote: > > >Another alternative of course is to use some other client-server protocol > > >such that only the “model” of MVC is on the server, and UI rendering > >

Re: [Interest] 2017

2017-01-03 Thread Shawn Rutledge
> On 3 Jan 2017, at 16:19, René J.V. Bertin wrote: > > On Tuesday January 3 2017 13:57:51 Shawn Rutledge wrote: > >>> As to remote use: I thought that wasn't the point of Wayland at all? >> >> They keep saying to go on using X11 or VNC or whatever existing solution you >> like. > > They cou

Re: [Interest] 2017

2017-01-03 Thread Thiago Macieira
On terça-feira, 3 de janeiro de 2017 16:19:27 BRST René J.V. Bertin wrote: > >Another alternative of course is to use some other client-server protocol > >such that only the “model” of MVC is on the server, and UI rendering > >instructions are sent across the network instead of actual rendered > >g

Re: [Interest] [Qt3D] Crash when changing an entity's parent many times

2017-01-03 Thread Xavier Bigand
Hi, Sorry for the delay, I just tested with Qt5.8 RC and it now works. Thank you and happy new year. 2016-10-26 17:19 GMT+02:00 Sean Harmer : > Hi, > > can you file a JIRA with a small test case please? > > Cheers, > > Sean > > On 26/10/2016 16:16, Xavier Bigand wrote: > >> Yes I had this issue

Re: [Interest] 2017

2017-01-03 Thread René J . V . Bertin
On Tuesday January 3 2017 13:57:51 Shawn Rutledge wrote: >> As to remote use: I thought that wasn't the point of Wayland at all? > >They keep saying to go on using X11 or VNC or whatever existing solution you >like. They could implement their own VNC compositor then ;) >But then, if Wayland wi

Re: [Interest] How to provide a component to a QML item?

2017-01-03 Thread Jérôme Godbout
StandardScreenWithSpecificContent { id: component_ property var myOptions: ['foo', 'bar'] property alias delegate: repeater_.delegate Repeater { id: repeater_ model: component_.myOptions delegate: StandardScreenContent { property string myContent:

Re: [Interest] 2017

2017-01-03 Thread Shawn Rutledge
> On 3 Jan 2017, at 15:07, Ulf Hermann wrote: >> Another alternative of course is to use some other client-server protocol >> such that only the “model” of MVC is on the server, and UI rendering >> instructions are sent across the network instead of actual rendered >> graphics. For example lo

Re: [Interest] 2017

2017-01-03 Thread Ulf Hermann
Another alternative of course is to use some other client-server protocol such that only the “model” of MVC is on the server, and UI rendering instructions are sent across the network instead of actual rendered graphics. For example load QML over the network and run it locally. For some rea

Re: [Interest] 2017

2017-01-03 Thread Shawn Rutledge
> On 3 Jan 2017, at 12:45, René J.V. Bertin wrote: > I haven't given that much thought, but yes, I think the idea would be to have > a "rootless" Wayland compositor that displays windows alongside native > windows, much like Xquartz can do. An important appeal to the XQuartz > maintainer I spo

Re: [Interest] 2017

2017-01-03 Thread Thiago Macieira
On terça-feira, 3 de janeiro de 2017 10:37:56 BRST René J.V. Bertin wrote: > As a side-note: I've been discussing Wayland on Mac with one of the XQuartz > maintainers. He likes the idea, but there's no one working on it right now, > and the Wayland libraries depend on a couple of functions that are

Re: [Interest] 2017

2017-01-03 Thread René J . V . Bertin
On Tuesday January 03 2017 10:12:50 Shawn Rutledge wrote: > > aren't that suitable for remote execution anyway. That *was* a bit my > > motivation to start tinkering with the xcb QPA, but I've since discovered > > that it's very nice for local use, too. Esp. being able to run Konsole on > > al

Re: [Interest] Again trouble with SCXML donedata

2017-01-03 Thread Ulf Hermann
Hello, [...] EventConnection { stateMachine: p.stateMachine events: ["done.state.Leave"] onOccurred: { console.log("done: " + event.name + " [" + event.data + "]") } } [...] done.state.* events are internal. You can expos

[Interest] SSO with kerberos/active directory

2017-01-03 Thread Mathias Waack
We would like to add sso to an older Qt application. It is a client-server architecture, the clients running on both Linux and Windows, the server runs on Linux. The client is QWidget-based. We are running some sso-enabled web-apps in the same environment, but I cannot find the right link into

Re: [Interest] 2017

2017-01-03 Thread Shawn Rutledge
> On 3 Jan 2017, at 10:37, René J.V. Bertin wrote: > > On Tuesday January 3 2017 08:55:13 Shawn Rutledge wrote: >> Are there obstacles to getting it working without the X server? > > I'm not sure I understand what you mean? Just not sure what you are trying to achieve and why… but you explaine

Re: [Interest] 2017

2017-01-03 Thread Kevin Funk
On Tuesday, 3 January 2017 08:55:13 CET Shawn Rutledge wrote: > > On 2 Jan 2017, at 22:46, René J.V. Bertin wrote: > > > > Best wishes for 2017! > > > > Accompanied by a "postcard" from the realm of the impossible, just because > > I'm quite auto-satisfied with the result: a KDE's KDevelop 5.3 a

Re: [Interest] 2017

2017-01-03 Thread René J . V . Bertin
On Tuesday January 3 2017 08:55:13 Shawn Rutledge wrote: >Cool! Qool? ;) >Are there obstacles to getting it working without the X server? I'm not sure I understand what you mean? What I'm doing is the apparently really not supported approach: - build Qt5 as normal on Mac (though patched to i

[Interest] Again trouble with SCXML donedata

2017-01-03 Thread Bublitz, Wolf
Hallo, at the end of last year I have already ask for some help concerning the SCXML donedata event (was not emitted) with the former SCXML preview module of Qt 5.7. Noch I have updated to Qt 5.8 RC but I am still facing the same problem. I have the following final state in my state machine:

Re: [Interest] 2017

2017-01-03 Thread Shawn Rutledge
> On 2 Jan 2017, at 22:46, René J.V. Bertin wrote: > > Best wishes for 2017! > > Accompanied by a "postcard" from the realm of the impossible, just because > I'm quite auto-satisfied with the result: a KDE's KDevelop 5.3 and Konsole > 16.12 running with Qt 5.7.1 and the XCB QPA on Mac OS X 10