Re: [Interest] Qt Webkit and HTML5 geolocation

2013-09-25 Thread Tom Isaacson
From: Aaron McCarthy [mccarthy.aa...@gmail.com] Sent: Monday, 23 September 2013 16:58 Are you sure? The reason why I ask is that your build log references the files ipc/qmetaobjectbuilder.cpp and ipc/qmetaobjectbuilder_p.h. Those files do not exist in ca1a2f8cab48b730c2e1962bef73c328ac42bb1e

Re: [Interest] Qt 5.1.1 render with both - OpenGL and QPainter - in one window?

2013-09-25 Thread Sletta Gunnar
This is very possible :) The classes you are looking for are: QWindow - to create the window QOpenGLContext - to get the OpenGL context QOpenGLPaintDevice - to make the opengl context renderable with QPainter QPainter - to draw the text. cheers, Gunnar On Sep 24, 2013, at 4:15 PM, Thomas

Re: [Interest] Keyboard navigation in QtQuick.Controls ScrollView?

2013-09-25 Thread Bache-Wiig Jens
On Sep 24, 2013, at 9:53 AM, Ola Røer Thorsen o...@silentwings.nomailto:o...@silentwings.no wrote: Hi, I can't seem to get keyboard navigation working when I embed a ListView in a ScrollView ScrollView { ListView { ... } } just like in the documentation. I've tried enabling

[Interest] qTHaveModule Qt5.1.1 not working

2013-09-25 Thread Ramakanthreddy Kesireddy
Hi, I tried to build Qt5.1.1 source code for Linux. However, it seems all the modules are not built as seen in qtbase/include and qtbase/lib. Am wondering if qtHaveModule macro is not working. Please let me know in this regard. Thanks and Regards, Ramakanth

Re: [Interest] Qt Creator not finding Qt's headers

2013-09-25 Thread Nikolai Kosjar
On 09/25/2013 01:16 PM, Andrea Franceschini wrote: === Merged include paths === /usr/include/c++/4.2.1/ /usr/include/c++/4.2.1/backward/ /usr/lib/clang/4.2/include/ /usr/include/ /Users/af6539/src/Musicscope/Musicscope/include/ /Users/af6539/src/Qt/5.1.1/5.1.1/clang_64/include/

Re: [Interest] Keyboard navigation in QtQuick.Controls ScrollView?

2013-09-25 Thread Ola Røer Thorsen
Hi Jens, thanks for the explanation! Setting interactive to true solved for me (the target platform has no mouse or touch anyway). Best regards, Ola 2013/9/25 Bache-Wiig Jens jens.bache-w...@digia.com On Sep 24, 2013, at 9:53 AM, Ola Røer Thorsen o...@silentwings.no wrote: Hi, I

[Interest] Using stylesheets in QStyledItemDelegate

2013-09-25 Thread Philipp Kursawe
Is there a reason why Qt does not allow us to have access to defined stylesheets? In my QStyledItemDelegate I would like to query for certain CSS style definitions to know which icon to draw and in which color based on the items content/state. I think a workaround would be to create a QWidget on

[Interest] QPA / EGLFS / OpenGL

2013-09-25 Thread Bell, Andrew [Allen Heath UK]
Hi All I was hoping someone could set me straight on EGLFS vs DirectFB / XCB. I'm developing on an iMX6 using a Yocto built distro. I don't have X or wayland in my distro, but I do want to use opengl, and I've managed to build Qt with es2 enabled. Can someone tell me which level of support

Re: [Interest] QPA / EGLFS / OpenGL

2013-09-25 Thread Knight Andrew
Hi Andrew, I haven't used the imx6 myself, but it does appear to include hooks for EGLFS. If you configured Qt with -device linux-imx6-g++, they should already be baked in. So, you should start your app with with the -platform eglfs argument and go from there. You might run into permissions

Re: [Interest] qTHaveModule Qt5.1.1 not working

2013-09-25 Thread Thiago Macieira
On quarta-feira, 25 de setembro de 2013 10:34:18, Ramakanthreddy Kesireddy wrote: Hi, I tried to build Qt5.1.1 source code for Linux. However, it seems all the modules are not built as seen in qtbase/include and qtbase/lib. Am wondering if qtHaveModule macro is not working. Are the

[Interest] QTouchEvents correctly placed only when the windows is on the primary screen?

2013-09-25 Thread Andrea Franceschini
Hi there. I'm using qtuiotouch but this might be a more general issue I'm not aware of. Basically my set-up is like this: - primary screen: regular desktop screen; - secondary screen: huge touch screen sending out TUIO messages. I set up a small QGraphicsView/Scene example to figure out a few

[Interest] QWindow::setTransientParent fails on windows

2013-09-25 Thread Roland Winklmeier
Hi there, I'm currently struggling with QWindow::setTransientParent on a windows platform. I have two different windows and want to set one as the child of the other. Using QWindow::setParent() was not successful, because it was embedded into the parent (I got the parent QWindow* by calling

Re: [Interest] Qt 5.1.1 render with both - OpenGL and QPainter - in one window?

2013-09-25 Thread Thomas Meyer
Hi, thanks, I found the Pixel Buffers 2 Example. Thomas Am 24.09.2013 22:24, schrieb Till Oliver Knoll: Am 24.09.2013 um 16:36 schrieb Bob Hood bho...@comcast.net: On 9/24/2013 8:15 AM, Thomas Meyer wrote: Hi, is it possible to use OpenGL and QPainter in one window (Qt 5.1.1)? And if it

Re: [Interest] QTouchEvents correctly placed only when the windows is on the primary screen?

2013-09-25 Thread Casimiro, Daniel C CIV NUWC NWPT
Hi, Well, the short answer is that qtuiotouch assumes that the touch screen is the primary (only) screen. There are two questions that need answers before I could support your configuration: 1. How to associate the TUIO device with the correct QScreen? (maybe QScreen::name and the TUIO device

[Interest] QTemporaryFile::open(OpenMode flags) is protected, but not in documentation

2013-09-25 Thread Etienne Sandré-Chardonnal
In Qt 4.8.1, QTemporaryFile::open(OpenMode flags) is protected. On the other hand, the documentation says it's public. Is this a bug or a documentation error? If this is a documentation error, why not allowing to reopen the file in read mode? Instead, the current implementation forces to create

Re: [Interest] QTemporaryFile::open(OpenMode flags) is protected, but not in documentation

2013-09-25 Thread Constantin Makshin
QTemporaryFile alays opens in read-write mode and, as it was explained on this list some time ago, is not actually closed until the object is destroyed ([primarily] for security reasons). On Sep 26, 2013 12:32 AM, Etienne Sandré-Chardonnal etienne.san...@m4x.org wrote: In Qt 4.8.1,

Re: [Interest] QTemporaryFile::open(OpenMode flags) is protected, but not in documentation

2013-09-25 Thread Thiago Macieira
On quarta-feira, 25 de setembro de 2013 22:31:54, Etienne Sandré-Chardonnal wrote: In Qt 4.8.1, QTemporaryFile::open(OpenMode flags) is protected. On the other hand, the documentation says it's public. Is this a bug or a documentation error? If this is a documentation error, why not

Re: [Interest] QTemporaryFile::open(OpenMode flags) is protected, but not in documentation

2013-09-25 Thread Etienne Sandré-Chardonnal
Hi Thiago, I said reopen in my post but this was not crystal clear. I do not want to read first, I want to write data, close, then reopen for reading (Used as a buffer for uploading large data over the network and avoid keeping it in memory). Etienne 2013/9/25 Thiago Macieira

Re: [Interest] QTouchEvents correctly placed only when the windows is on the primary screen?

2013-09-25 Thread Andrea Franceschini
2013/9/25 Casimiro, Daniel C CIV NUWC NWPT daniel.casim...@navy.mil: 1. How to associate the TUIO device with the correct QScreen? (maybe QScreen::name and the TUIO device name) 2. How is QWindowSystemInterface::handleTouchEvent supposed to handle multiple screens? That's actually the same

[Interest] QtConcurrent::map with a member function and a list of pointers

2013-09-25 Thread Etienne Sandré-Chardonnal
Dear all, I have a list of pointers : QListMyClass* list; MyClass has a load() function Now I would like to call something like QtConcurrent::map(list, Myclass::load), but this does not work, as it would with a list of Myclass object instead of pointers. Is there any way to make this work in

Re: [Interest] QWindow::setTransientParent fails on windows

2013-09-25 Thread Tony Rietwyk
Hi Roland, I'm not sure what you are trying to achieve, but I had a similar problem with the splash screen appearing with its own task bar tab. I worked around the problem by doing: int exstyle = GetWindowLong( mpSplash-winId(), GWL_EXSTYLE ); SetWindowLong(

Re: [Interest] QTemporaryFile::open(OpenMode flags) is protected, but not in documentation

2013-09-25 Thread Thiago Macieira
On quarta-feira, 25 de setembro de 2013 23:04:42, Etienne Sandré-Chardonnal wrote: I do not want to read first, I want to write data, close, then reopen for reading (Used as a buffer for uploading large data over the network and avoid keeping it in memory). Once you close the file, your data

[Interest] OT: Big payout for Elop

2013-09-25 Thread K. Frank
Hello List! I see a headline that Elop will be getting a 19-million-euro payout as part of Microsoft's acquisition of Nokia's cellphone business. Hmm ... (Well, it's off topic, as it hasn't anything to do with Qt anymore.) Best. K. Frank ___