Re: [Interest] Building Qt for iOS as shared libraries

2015-12-04 Thread Rollastre Prostrit
Oh, nice. And 5.7 will not be available before 2nd February 2016? Or there can it be downloaded before? Thanks. -Original Message- From: Interest [mailto:interest-boun...@qt-project.org] On Behalf Of Thiago Macieira Sent: 3. desember 2015 07:45 To: interest@qt-project.org Subject: Re:

Re: [Interest] Do Camera.videoRecorder options matter?

2015-12-04 Thread Lopes Yoann
If all you care about is changing the capture resolution and frame rate, you can also use Camera.viewfinder.resolution, Camera.viewfinder.minimumFrameRate and Camera.viewfinder.maximumFrameRate. > On 03 Dec 2015, at 14:58, Jason H wrote: > > What would it take to get them

Re: [Interest] New Qt5.6 Beta snapshot Qt Creator not-repainint on OS X ?

2015-12-04 Thread Edward Sutton
The OS X rpath problem is fixed in new Qt5.6 Beta snapshot. Thank you. And Qt Creator appears usable. I just need to resize window to force a repaint when I open a project. -Ed On Dec 4, 2015, at 9:31 AM, Edward Sutton > wrote:

[Interest] New Qt5.6 Beta snapshot Qt Creator not-repainint on OS X ?

2015-12-04 Thread Edward Sutton
Previous snapshots had an OS X rpath issue that stopped me from using it. I was excited that the latest Qt 5.6 snapshot might finally be usable on OS X. Previous snapshots and OS X path problems. Qt Creator 3.5.82 (3.6.0-rc1) appears to freeze but is actually not re-painting: 1. Launch Qt

[Interest] iOS Violation constraint using WebView

2015-12-04 Thread Gian Maxera
Hello, I’m using the same approach of the example for viewing Youtube video using mobile WebView, but I’m getting a strange error on iOS 9 I can press play and the video start to play. The video go to fullscreen and I can rotate the device to landscape but when I do I got the following error:

Re: [Interest] Qmake: execute two different link steps?

2015-12-04 Thread André Hartmann
Wow. With full example :) Thanks a lot Elvis, this works indeed fine. I've also added the following common lines to myProg-sources.pri: QT += core network QT -= gui CONFIG += console CONFIG -= app_bundle TEMPLATE = app List of sources goes here... The both .pro files now simply contain the

Re: [Interest] Do Camera.videoRecorder options matter?

2015-12-04 Thread Jason H
Well file size is the real issue. Which is governed largely by those factors. If there was a way to do it with bitrate alone, I would entertain that. That is interesting to know. I was initially trying to record using Camera.CaptureViewFinder, but got a message about it not being connected.

Re: [Interest] QML and ScrollView

2015-12-04 Thread Jérôme Godbout
What you may want to try is something similar to this, note the parent of GridLayout is a flickarable item and not the scrollview, this flickerable does'nt have any size it take the children size, so you need to bind to scrollview sizing to resize the width properly: Item { id: component width:

Re: [Interest] QML and ScrollView

2015-12-04 Thread rpzrpz...@gmail.com
Do mockup of your desired screen on smartphone and tablet. Share that with group. www.balsamiq.com -> 30 day trial -> PDF screen shot. md On 12/4/2015 10:24 AM, Mike Jackson wrote: *To:* "Qt Project" >

Re: [Interest] QML and ScrollView

2015-12-04 Thread Mike Jackson
Thanks for the tips. I have tried all of them and nothing is working. I will try to explain what I want and maybe someone can tell me what I am doing wrong. I want a scrollable grid layout. In the grid layout are pairs of “Label” and “Text Field” not unlike the Form Layout for a normal

[Interest] Clearing plugin windows focus

2015-12-04 Thread Nuno Santos
Hi, When I open a Qt Plugin window on a existing app on Mac using QMacNativeWidget, I can avoid it having focus by setting the attribute Qt::WA_ShowWithoutActivating The problem is that as soon as I interact with its content, it gets focus and I can’t reverse this state. I would like to

[Interest] QML undefined Reference if object is in a TabView

2015-12-04 Thread Mike Jackson
I am working on a QML application and after the last issues were solved I am attempting to refactor the code so that common sets of QML codes are in their own .qml files. The issue that I am having is that now that I am using TabView{} and associated “Tab” widgets, when I go to reference a

[Interest] Qml extend basic types methods

2015-12-04 Thread Jérôme Godbout
Hi, anybody known if and how it is possible to extends the available methods to Qt.vector3d, Qt.vector2d, Qt.vector4d... and the like. Maybe like in javascript we can do: String.prototype.myCustomMethod = function(str) { ... } We are refactoring code, we had all this function into a Qml

[Interest] Best text rendering choice for a console type application

2015-12-04 Thread Jason Dolan
Hey everyone, I wanted to get your input on something I’m working on. I’m taking over an old abandoned project that is a Qt Wrapper around Putty(http://www.putty.org/ ). So far I’ve put a lot of work into it so that it works with the newest version of putty It supports

Re: [Interest] QNetworkInterface working differently on Qt5?

2015-12-04 Thread Tom Isaacson
> Fixed in https://codereview.qt-project.org/142861. > > It now reports: > > Interface: "vlan0" > index: 14 > flags: Up,Running,Broadcast,Multicast > type: QNetworkInterface::InterfaceType(Ethernet) > hw address: 5C:51:4F:7C:49:F8 > address 0:

[Interest] Text.fontSizeMode: effectivePixelSize?

2015-12-04 Thread Jason H
When I layout text for a screen, and am using Text.fontSizeMode, I'd like to be able to determine the current size of the font so that I can size other Text* accordingly. "The font size of fitted text has a minimum bound specified by the minimumPointSize or minimumPixelSize property and

Re: [Interest] QML and ScrollView

2015-12-04 Thread Mike Jackson
THANK YOU!!!. With a few tweaks this works exactly as I wanted. I will study the code to fully understand what is going on. Thanks to everyone who gave me hints and possible solutions. — Mike Jackson > On Dec 4, 2015, at 12:41 PM, Jérôme Godbout wrote: > > What you may