Re: [Interest] Makefile target for mocinclude.tmp using inconsistent slashes

2013-04-23 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=digia@qt-project.org [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf Of James Cotton Sent: Monday, April 22, 2013 8:42 PM To: interest@qt-project.org Subject: [Interest] Makefile target for

Re: [Interest] qmake: questions regarding huge projects

2013-04-23 Thread Rainer Wiesenfarth
Thanks a lot for all your hints and links! I get the feeling that I can easily spend a week learning the secrets of qmake. :-) My first impression is that qmake probably will suit fine, without introducing the complexity of cmake. But it definitely will be the second build system (for

Re: [Interest] qmake: questions regarding huge projects

2013-04-23 Thread Guido Seifert
Nothing against qmake, but IHMO it definitely pays off to learn cmake. Especially the cpack addition makes it worthwhile. Easy packaging for Windows using the NSIS installer, easy deb and rpm packages for Linux, and packages for OSX. This feature alone makes cmake far superior to qmake. Guido

Re: [Interest] QXcbConnection error

2013-04-23 Thread Rutledge Shawn
What kind of graphics card and what kind of drivers are you using? I think some dual-display graphics cards can't provide OpenGL acceleration on both monitors at the same time. Do you need OpenGL for your application? (or are you using Qt Quick, which needs it?) On 22 Apr 2013, at 11:58 AM,

[Interest] QDirIterator as Variable in class

2013-04-23 Thread Adrian Stern
Hello I want to iterate trough a directory one step at a time. Driven by signals. So after each signal I want to do another step. I have createt the following class in which I try to create a variable of the type of QDirIterator. This however fails with the message no matching function for

Re: [Interest] QXcbConnection error

2013-04-23 Thread Ramakanthreddy_Kesireddy
We are using graphics card NVidia Quadro 1000M and Nvidia driver version 302.10. We are using Qt Quick 2.0(Qt5.0) and Qt3d which needs OpenGL. Br, Ramakanth From: interest-bounces+ramakanthreddy_kesireddy=mahindrasatyam@qt-project.org

Re: [Interest] QXcbConnection error

2013-04-23 Thread Samuel Rødal
On 04/23/2013 02:13 PM, Ramakanthreddy_Kesireddy wrote: We are using graphics card NVidia Quadro 1000M and Nvidia driver version 302.10. We are using Qt Quick 2.0(Qt5.0) and Qt3d which needs OpenGL. If glxgears doesn't run it seems the driver is not functioning properly. Are you able to run

Re: [Interest] QXcbConnection error

2013-04-23 Thread Rutledge Shawn
On 23 Apr 2013, at 2:13 PM, Ramakanthreddy_Kesireddy wrote: We are using graphics card NVidia Quadro 1000M and Nvidia driver version 302.10. We are using Qt Quick 2.0(Qt5.0) and Qt3d which needs OpenGL. Then you should probably make sure you are using TwinView rather than Xinerama. It can

Re: [Interest] QXcbConnection error

2013-04-23 Thread Ramakanthreddy_Kesireddy
We are not able to run other openGL applications which are available by default in the board. Actually we use 12.3 dual-VGA TFT-LCD module LQ123K1LG03 to be connected to Kit via LVDS interface. Could be the driver issue as it is giving same issue even with single view LVDS connection and

[Interest] QML Video - Codecs

2013-04-23 Thread Adrian Stern
Hello Many beginners questions from me today. Sorry about that. It's just not that easy to get a grip with qt. Qt is supposed to use gstreamer to display various multimedia content. So why is it, that for some files I get a black screen while the very same file is working alright in totem

Re: [Interest] QDirIterator as Variable in class

2013-04-23 Thread Giuseppe D'Angelo
Il 23/04/2013 14:12, Adrian Stern ha scritto: MediaBase::MediaBase(QObject *parent) : QObject(parent) { Error 1, straight from the compiler: since you're not calling a QDirIterator constructor in your constructor's initializer list for the mediaItr data member variable, the compiler calls

Re: [Interest] Makefile target for mocinclude.tmp using inconsistent slashes

2013-04-23 Thread James Cotton
So this patch worked for me diff -u ./tools/Qt5.0.1/5.0.1/clang_64/mkspecs/features/moc.prf ./tools/Qt5.0.1/5.0.1/clang_64/mkspecs/features/moc2.prf --- ./tools/Qt5.0.1/5.0.1/clang_64/mkspecs/features/moc.prf 2013-02-26 19:55:19.0 -0600 +++

[Interest] QMdiSubWindow resize() does include the frame

2013-04-23 Thread Immanuel Weber
Hi all, I'm trying to set the inner area of a QMdiSubArea to a specific size, but the the resize(..) member of QMdiSubArea includes the frame. As stated in the documentation ( http://qt-project.org/doc/qt-5.0/qtwidgets/application-windows.html#window-geometry) resize(..) (belonging to size())

[Interest] C structure display

2013-04-23 Thread Vincent Cai
Dear All, In Qt debug mode, we can watch and edit any variable. My question: is there any existing class that can do the same thing which mean can display all the members of a C structure variable in a table and can edit value of members? Best Regards, Vincent. This message

Re: [Interest] qmake: questions regarding huge projects

2013-04-23 Thread Semih Cemiloglu
Hi Rainer, I suggest you to review QmkBld project: https://code.google.com/p/qmkbld/ https://code.google.com/p/qmkbld/wiki/QmkBld It might fulfill some of requirements. Kind regards, Semih Cemiloglu semih (at) cemiloglu.org On Fri, Apr 19, 2013 at 4:48 PM, Rainer Wiesenfarth

Re: [Interest] QMdiSubWindow resize() does include the frame

2013-04-23 Thread Rutledge Shawn
On 23 Apr 2013, at 10:22 PM, Immanuel Weber wrote: Hi all, I'm trying to set the inner area of a QMdiSubArea to a specific size, but the the resize(..) member of QMdiSubArea includes the frame. As stated in the documentation