[Interest] Android activities Navigation using Qt5.4

2014-11-05 Thread Ramakanthreddy Kesireddy
Hi, Is the page transition between activities is slow using Qt 5.4 on Android though I checked the single Activity application on Nexus 5 which runs fine? Am considering Qt even for cross-mobile platform deployment(compared to other frameworks) though I had been using predominantly using the s

[Interest] How to change volume of the audio playing

2014-11-05 Thread Jha Sonakumar
Hi, I have been facing issues regarding audio playing on the board Freescale IMX 6 ( QPA is EGLFS, Display -HDMI).The application,which i deploy on the above board, has been developed using QtQuick 2.0. QtMultimedia supports volume 0.0 to 1.0,it seems the board supports minimum volume 1.0. S

Re: [Interest] Qt 5.4 Android with Android 5.0 ART vs JNI/Dalvik

2014-11-05 Thread Stromme Christian
On Nov 6, 2014 2:48 AM, "m...@rpzdesign.com" wrote: > > Has anybody gotten a sense of whether Qt 5.4 will handle Android 5.0 > Lollipop along with the JNI/C/C++ interface layer. The JNI interface has not changed and should work as before. > > Dalvik is being replace by ART (A new java run time)

[Interest] Qt 5.4 Android with Android 5.0 ART vs JNI/Dalvik

2014-11-05 Thread m...@rpzdesign.com
Has anybody gotten a sense of whether Qt 5.4 will handle Android 5.0 Lollipop along with the JNI/C/C++ interface layer. Dalvik is being replace by ART (A new java run time) It seems like a major hassle is coming down the pike for those using JNI/C/C++ development Has anybody got experience with

Re: [Interest] Qt articles from developer.nokia.com

2014-11-05 Thread Oleg Shparber
It's possible to export wiki contents in MediaWiki XML here: http://developer.nokia.com/community/wiki/index.php?title=Special:Export I don't know how to download all related files. On Wed, Nov 5, 2014 at 9:44 AM, Pau Garcia i Quiles wrote: > Hello, > > Microsoft acquired parts of Nokia, includ

Re: [Interest] Qt articles from developer.nokia.com

2014-11-05 Thread Thiago Macieira
On Wednesday 05 November 2014 18:54:03 René J.V. Bertin wrote: > On Wednesday November 05 2014 18:44:12 Pau Garcia i Quiles wrote: > > There are many articles about development with Qt and most of them are > > still valid: > > > > http://developer.nokia.com/community/wiki/Generating_random-value_i

Re: [Interest] Qt articles from developer.nokia.com

2014-11-05 Thread René J . V . Bertin
On Wednesday November 05 2014 18:44:12 Pau Garcia i Quiles wrote: > There are many articles about development with Qt and most of them are > still valid: > > http://developer.nokia.com/community/wiki/Generating_random-value_integers_in_Qt > > http://developer.nokia.com/community/wiki/Qr_Decoder

[Interest] Qt articles from developer.nokia.com

2014-11-05 Thread Pau Garcia i Quiles
Hello, Microsoft acquired parts of Nokia, including some Qt-related resources. Now http://developer.nokia.com redirects to Microsoft and there is a warning stating most of the articles will be soon moved to the Windows Phone Developer site. There are many articles about development with Qt and m

Re: [Interest] How to use QSGSimpleTextureNode?

2014-11-05 Thread Gunnar Sletta
On 04 Nov 2014, at 23:20, Nuno Santos wrote: > Gunnar, > > I have implemented a really basic node for text rendering on scene graph > based on my previous approach but adapter to Qt API. The setup code is below. > I can already draw a string on OpenGL but the characters are not smooth at > s

Re: [Interest] How to use QSGClipNode?

2014-11-05 Thread Gunnar Sletta
A clip node will clip its children, not its siblings :) cheers, Gunnar On 04 Nov 2014, at 18:52, Nuno Santos wrote: > Hi, > > I was wondering how I could use QSGClipNode to clip what is being drawn out > of a node rect. > > I’m trying to instantiate a QSGClipNode on the node I want to clip.

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Filip Piechocki
I give up :) If you've found that you can set some environment variables and they are described on this page - what more can I tell? Just read this page. And I don't know what width and height you've set. And I don't know where those 2000x800 come from. To be honest - now I am not sure what the pro

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Jha Sonakumar
We already set the width and height. From: Filip Piechocki Sent: Wednesday, November 5, 2014 6:00 PM To: Jha Sonakumar Cc: interest@qt-project.org Interest Subject: Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device How you know tha

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Jha Sonakumar
Hi Filip, As described in the reference doc. : http://qt-project.org/doc/qt-5/embedded-linux.html Is it possible to set environment-variable to get the display of required width and height? Please guide me in this regard. BR SonaKumar From: interest-bounc

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Filip Piechocki
How you know that currently it uses 2000x800? On Wed, Nov 5, 2014 at 12:09 PM, Jha Sonakumar wrote: > Hi Filip > > My display is HD Monitor is 1920X1080,we'd like to connect twin lcd > displays each of 1280X480. I would like ensure,whether my application > window will fit to the display or not.

Re: [Interest] Qt for Android APK size

2014-11-05 Thread Federico Buti
On iOS you generate an xcode project (via qmake) which then is used inside Xcode. Hence, the deploy is totally demanded to the native mac environment. iOS apps are larger than Android ones (usually) but perfectly in line with the platform (something in between 20Mb and 30Mb, correct me if I'm wrong

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Jha Sonakumar
Hi Filip My display is HD Monitor is 1920X1080,we'd like to connect twin lcd displays each of 1280X480. I would like ensure,whether my application window will fit to the display or not. Currently my application uses widthxheight :(2000x800) Is there environment-variable to be set ? BR SonaK

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Filip Piechocki
Like I said - your Window will always be covering whole screen. That's how the 'eglfs' plugin works. Why do you want it to cover only a part of screen? On Wed, Nov 5, 2014 at 11:47 AM, Jha Sonakumar wrote: > Hi Filip > > i tried with the following code: > > Window { > visible: true > wi

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Jha Sonakumar
Hi Filip i tried with the following code: Window { visible: true width: 1200 height: 480 Rectangle{ id:rect color:"black" anchors.fill: parent Item { anchors.centerIn: parent width: 800 height: 480 f

Re: [Interest] Qt for Android APK size

2014-11-05 Thread Ramakanthreddy Kesireddy
OK..Please let me know the installer that would be used for IOS? Is without an installer possible with IOS as well? Thanks and Regards, Ramakanth -Original Message- From: interest-bounces+ramakanthreddy.kesireddy=techmahindra@qt-project.org [mailto:interest-bounces+ramakanthreddy.kes

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Filip Piechocki
That's what I thought as with linuxfb you won't be able to use QtQuick 2.x as it requires OpenGL. So with 'eglfs' your application is displayed on the whole frame buffer and so it covers whole screen. So anything you type as width and height of the root element has no meaning as it will be resized

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Jha Sonakumar
Hi Filip, you are right, i am using eglfs Yocto BR SonaKumar From: interest-bounces+sona.jha=techmahindra@qt-project.org on behalf of Filip Piechocki Sent: Wednesday, November 5, 2014 3:18 PM To: Jha Sonakumar; interest@qt-project.org Interest Subject:

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Jha Sonakumar
QPA is linux framebuffer. From: interest-bounces+sona.jha=techmahindra@qt-project.org on behalf of Filip Piechocki Sent: Wednesday, November 5, 2014 2:56 PM To: Jha Sonakumar Cc: interest@qt-project.org Subject: Re: [Interest] Regarding auto resizing of the

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Filip Piechocki
On Wed, Nov 5, 2014 at 10:32 AM, Jha Sonakumar wrote: > sory.. what do u mean by QPA? > Platform Abstraction plugin. Are you using X11? If yes then you are probably using 'xcb' QPA plugin, but I guess you are not using X11, a then 'eglfs' plugin is what you use, right? > -

Re: [Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Filip Piechocki
Hi, What QPA plugin are you using? BR, Filip On Wed, Nov 5, 2014 at 10:17 AM, Jha Sonakumar wrote: > Hi All, > > > I have developed an application using QtQuick 2.0 for IMX 6 board. The > view window has been automatically resized to cover whole display > irrespective of specified width heigh

[Interest] Regarding auto resizing of the QtQuick window for embedded device

2014-11-05 Thread Jha Sonakumar
Hi All, I have developed an application using QtQuick 2.0 for IMX 6 board. The view window has been automatically resized to cover whole display irrespective of specified width height. Display size :(2560X800) But i need to show the QtQuick window of size (2560X480). Would you please gu