[Interest] embedded Assistant in OSX sandboxed app

2013-12-10 Thread Hamish Moffatt
Hi, We use Assistant in our OSX app as a help viewer, and I'm trying to get our app to run sandboxed so we can submit it to the App store. (Qt 4.8.5.) We include the Assistant binary from our Qt build into our application bundle, passing it -collectionFile and -enableRemoteControl. I set up

Re: [Interest] Problems with Qt5's build form git (release branch) due to qtjsondb and a nasty build setup

2013-12-10 Thread Thiago Macieira
On quarta-feira, 11 de dezembro de 2013 03:04:22, Jan Kundrát wrote: > Hi, I tried compiling Qt5 from git (release branch) again tonight on my > Linux machine (64bit Gentoo). The last time I did it was with Qt 5.1, so I > had plenty of old stuff around. > > TL;DR version -- despite the fact that I

[Interest] Problems with Qt5's build form git (release branch) due to qtjsondb and a nasty build setup

2013-12-10 Thread Jan Kundrát
Hi, I tried compiling Qt5 from git (release branch) again tonight on my Linux machine (64bit Gentoo). The last time I did it was with Qt 5.1, so I had plenty of old stuff around. TL;DR version -- despite the fact that I restored git modules as documented on the wiki, I still got hard to debug e

Re: [Interest] OpenGL ES 3.0 support on the roadmap..?

2013-12-10 Thread Giuseppe D'Angelo
Il 10/12/2013 21:19, Sean Harmer ha scritto: Hi Matti, On 10/12/2013 06:46, Matti Dahlbom wrote: Hi, for the past couple of days I've been looking for an up-to-date Qt 5 roadmap/browsing the forums for any signs of upcoming GLES 3.0 support but to no avail. Any info available on this..? GLES 3

Re: [Interest] Loader seems to be blocking animation

2013-12-10 Thread VStevenP
I switched over to using the new YAnimator type for my icon highlighter rectangle.  The animation works, but it's still blocked by the QML Loader, on both Android and Mac Desktop. I got rid of all the old-style states and transitions syntax, and simply switched over to the following syntax: .

Re: [Interest] OpenGL ES 3.0 support on the roadmap..?

2013-12-10 Thread Sean Harmer
Hi Matti, On 10/12/2013 06:46, Matti Dahlbom wrote: > > Hi, for the past couple of days I've been looking for an up-to-date Qt 5 > roadmap/browsing the forums for any signs of upcoming GLES 3.0 support but > to no avail. Any info available on this..? GLES 3.0 hardware is popping up > on the market

Re: [Interest] some doubts about current graphics stack in Qt 5.1

2013-12-10 Thread pritam.ghang...@gmail.com
On Tue, Dec 10, 2013 at 8:20 PM, pritam.ghang...@gmail.com < pritam.ghang...@gmail.com> wrote: > > > > On Mon, Dec 9, 2013 at 9:16 PM, Thiago Macieira > wrote: > >> On segunda-feira, 9 de dezembro de 2013 15:43:22, >> pritam.ghang...@gmail.com >> wrote: >> > Within Qt >> > QtWIdgets use QPainter,

Re: [Interest] QXmlStreamReader: Processing multiple documents from QTcpSocket

2013-12-10 Thread Jason H
Well, you need to add another layer in. There are two easy ways to do that: 1. Look for the start sentinel and send everything before that to the XML reader, 2. or encapsulate them into QDataStream and read each doc as a string from the stream.  If you are using streaming for document size issue

Re: [Interest] qt5 compiling errors using Mingw(x64) on Windows7

2013-12-10 Thread Nicolas Alvarez
Xiaolei Shang cobham.com> writes: > Hi all: > I am trying to compiling Qt5.2.0 using MinGW(x64) on windows7 > following the instruction: http://qt-project.org/wiki/MinGW-64-bit > After checking out using git, I initilize it with: > perl > init-repository >

Re: [Interest] cannot find entry point

2013-12-10 Thread Graham Labdon
Hi Just discovered it was a windows path issue!! DOH From: interest-bounces+graham.labdon=avalonsciences@qt-project.org [mailto:interest-bounces+graham.labdon=avalonsciences@qt-project.org] On Behalf Of Graham Labdon Sent: 10 December 2013 14:19 To: interest@qt-project.org Subject: [Inte

Re: [Interest] some doubts about current graphics stack in Qt 5.1

2013-12-10 Thread pritam.ghang...@gmail.com
On Mon, Dec 9, 2013 at 9:16 PM, Thiago Macieira wrote: > On segunda-feira, 9 de dezembro de 2013 15:43:22, > pritam.ghang...@gmail.com > wrote: > > Within Qt > > QtWIdgets use QPainter, which can use raster, native or opengl backends. > > There's no native backend anymore. > > > Most of the time i

[Interest] cannot find entry point

2013-12-10 Thread Graham Labdon
Hi I am working in a development team of 4 engineers and we each have the same development environment- VS2012 Qt5.1.1 Windows 7 If one of us compiles an application and then copies the executable to another's machine it will not run. It complains about not being able to find entry points in th

Re: [Interest] Loader seems to be blocking animation

2013-12-10 Thread Sletta Gunnar
You want to have a look at the new Animator types introduced in Qt 5.2. These run on the render thread and won't be blocked when the loader is running. http://doc-snapshot.qt-project.org/qt5-stable/qtquick-statesanimations-topic.html#animators cheers, Gunnar

[Interest] Loader seems to be blocking animation

2013-12-10 Thread VStevenP
Is it possible to avoid the Loader blocking an animation in the following case?: 1. I have a sidebar that contains a few icons, and I am animating the location of a colored Rectangle to highlight the most recently touched sidebar icon. 2. As a result of a new sidebar icon selection, I am unloadi

Re: [Interest] QMacNativeWidget & memory management

2013-12-10 Thread deDietrich Gabriel
On Dec 10, 2013, at 12:17 PM, Tim Blechmann wrote: >> On Dec 9, 2013, at 1:33 PM, Tim Blechmann >> mailto:t...@klingt.org>> wrote: >> >> trying to embed a Qt widget hierarchy into a Cocoa hierarchy, i'm >> currently trying to figure out how the memory management is supposed >> to work: >> >> i

[Interest] back and forth from UTF-8

2013-12-10 Thread Francisco Ares
Hi, I am working on an software that uses a SQLite database. There are default tables embedded in the software as comma separated string constants, that will be used to create the first instance of the full database, if one is not provided. The software will be available in three languages, so I

Re: [Interest] QMacNativeWidget & memory management

2013-12-10 Thread Tim Blechmann
> On Dec 9, 2013, at 1:33 PM, Tim Blechmann > mailto:t...@klingt.org>> wrote: > > trying to embed a Qt widget hierarchy into a Cocoa hierarchy, i'm > currently trying to figure out how the memory management is supposed > to work: > > i've adapted the example [1] to add a RedWidget to the layout.

[Interest] QItemDelegate with custom edit widget

2013-12-10 Thread Etienne Sandré-Chardonnal
Dear all, I have a "scientific double spinbox" which works well standalone, when inserted in dialogs and layouts. I would like to use it with a custom QItemDelegate for a table view. I return it with createEditor and also subclassed the setEditorData and setModelData accordingly When I double cl

Re: [Interest] Qt 5 Plugins for iOS & Android

2013-12-10 Thread Alex Leutgöb
Thanks for your interest. We’re still evaluating possibilities for best suitable licensing, it’s however likely that all plugins come with a proprietary license, some of them for free, some of them not depending on the type of service. Best, Alex On 09.12.2013, at 14:26, Yang Fan wrote: > I

[Interest] OS X/Qt 5: Extening app with Obj C++/Cocoa: Memory Management?

2013-12-10 Thread Till Oliver Knoll
Hello, My question is inspired by the other thread "QMacNativeWidget & memory management": assume on Mac OS X I want to extend a Qt 5 app with ObjC++ and Cocoa. Would I manage memory myself using increase/decrease of object references, or could I rely on Automatic Reference Counting (ARC - comp