Re: [Interest] qt giving the ld error

2014-08-08 Thread Ch'Gans
On 08/08/14 18:16, Nilesh Kokane wrote: Hi Christiab, [...] Or set the full path to your cross-gcc in QtCreator Buildrun config. I just checked by giving the full path in the qt mkspec as* but its showing the warning sign

Re: [Interest] Help!! app qt4 upgrade to qt5 for wayland on tizen ivi, can't get the QDialog's window handle which can cast to EGLNativeWindowType

2014-08-08 Thread Giulio Camuffo
2014-08-08 7:52 GMT+03:00 Steve (YiLiang) Zhou sz...@telecomsys.com: Hi Filip, I got what you mean, so if I use QGLWidget to get the wl_suface and createeglwindow , it can work theoretically ,right? You're not supposed to get the wl_surface or anything like that, QGLWidgets abstracts it away.

Re: [Interest] qt giving the ld error

2014-08-08 Thread Nilesh Kokane
Hi Ch'Gans, Thanks for your valuable reply This is not the right file, try this instead: /opt/poky/1.6/sysroots/x86_64- pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-linux-gnueabi-g++ i just tried with

Re: [Interest] qt giving the ld error

2014-08-08 Thread Ch'Gans
On 08/08/14 18:55, Nilesh Kokane wrote: Hi Ch'Gans, Thanks for your valuable reply This is not the right file, try this instead: /opt/poky/1.6/sysroots/x86_64- pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-linux-gnueabi-g++ i just tried with

Re: [Interest] qt giving the ld error

2014-08-08 Thread Nilesh Kokane
Hi Ch'Gans Thanks for your valuable reply first. IIRC, I think you have to have you cross tools in your PATH, so try this: $ export PATH=/opt/poky/1.6.1/sysroots/ i686-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/:$PATH $ qtcreator.sh Actually, there is a environment variable setup in the

Re: [Interest] Help!! app qt4 upgrade to qt5 for wayland on tizen ivi, can't get the QDialog's window handle which can cast to EGLNativeWindowType

2014-08-08 Thread Steve (YiLiang) Zhou
Thanks Giulio, Our app has an render thread which use opengl api to draw something like map on eglsurface. So I was thinking about to use a QGLWidget to render it , just call glwidget-makeCurrent() when the render thread ready to draw a frame. I don't need to embed a QGLWidget to another

[Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Ramakanthreddy Kesireddy
Hi, I got a usecase where I had implemented in Qt4.8.x app on the assumption that slots execute one after another in the order they are connected. HMI response is slow when continuous data is pumped into my application from other device. Though we maintain separate threads(threads

Re: [Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Bo Thorsen
Hi, The order of the slots execution is undefined. You can not rely on it. Bo. Den 08-08-2014 10:39, Ramakanthreddy Kesireddy skrev: Hi, I got a usecase where I had implemented in Qt4.8.x app on the assumption that slots execute one after another in the order they are connected. HMI

Re: [Interest] Gstreamer support

2014-08-08 Thread pritam.ghang...@gmail.com
On Thu, Aug 7, 2014 at 9:57 PM, Mandeep Sandhu mandeepsandhu@gmail.com wrote: On Thu, Aug 7, 2014 at 7:38 AM, pritam.ghang...@gmail.com pritam.ghang...@gmail.com wrote: Hi I am compiling Qt for an embedded broadcom 97405 platform. Final target is to get html5 video tag working.

Re: [Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Giuseppe D'Angelo
Il 08/08/2014 10:51, Bo Thorsen ha scritto: The order of the slots execution is undefined. You can not rely on it. Generally speaking it *is* defined: slot activation follows the order of the connect() statements (*). In this specific case, there are multiple threads in the game, and the

Re: [Interest] Help!! app qt4 upgrade to qt5 for wayland on tizen ivi, can't get the QDialog's window handle which can cast to EGLNativeWindowType

2014-08-08 Thread Giulio Camuffo
2014-08-08 11:25 GMT+03:00 Steve (YiLiang) Zhou sz...@telecomsys.com: Thanks Giulio, Our app has an render thread which use opengl api to draw something like map on eglsurface. So I was thinking about to use a QGLWidget to render it , just call glwidget-makeCurrent() when the render thread

Re: [Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Bo Thorsen
Den 08-08-2014 12:15, Giuseppe D'Angelo skrev: Il 08/08/2014 10:51, Bo Thorsen ha scritto: The order of the slots execution is undefined. You can not rely on it. Generally speaking it *is* defined: slot activation follows the order of the connect() statements (*). Yes. In this specific

Re: [Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Till Oliver Knoll
Am 08.08.2014 um 10:39 schrieb Ramakanthreddy Kesireddy ramakanthreddy.kesire...@techmahindra.com: ... If multiple signals are emitted once, I would like to know if framework would take care of slots execution in parallel or in sequential order. For direct connections slots are always

Re: [Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Till Oliver Knoll
Am 08.08.2014 um 12:15 schrieb Giuseppe D'Angelo giuseppe.dang...@kdab.com: Il 08/08/2014 10:51, Bo Thorsen ha scritto: The order of the slots execution is undefined. You can not rely on it. Generally speaking it *is* defined: slot activation follows the order of the connect() statements

[Interest] How to stop dissassembler view?

2014-08-08 Thread rap
Debugging always brings the dissassembler view at Breakpoints. How can this be stopped? I just need to break on Breakpoints in my source code. Thanks - Risto ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Signal and Slot mechansim in Qt4.8.x

2014-08-08 Thread Bo Thorsen
Den 08-08-2014 14:03, Till Oliver Knoll skrev: Am 08.08.2014 um 12:15 schrieb Giuseppe D'Angelo giuseppe.dang...@kdab.com: Il 08/08/2014 10:51, Bo Thorsen ha scritto: The order of the slots execution is undefined. You can not rely on it. Generally speaking it *is* defined: slot activation

Re: [Interest] How to stop dissassembler view?

2014-08-08 Thread rap
From: Samuel Gaist Sent: Friday, August 08, 2014 3:23 PM Subject: Re: [Interest] How to stop dissassembler view? On 8 août 2014, at 14:14, rap r...@dlc.fi wrote: Debugging always brings the dissassembler view at Breakpoints. How can this be stopped? I just need to break on Breakpoints in

Re: [Interest] Help!! app qt4 upgrade to qt5 for wayland on tizen ivi, can't get the QDialog's window handle which can cast to EGLNativeWindowType

2014-08-08 Thread Till Oliver Knoll
Am 08.08.2014 um 10:25 schrieb Steve (YiLiang) Zhou sz...@telecomsys.com: Thanks Giulio, Our app has an render thread which use opengl api to draw something like map on eglsurface. So I was thinking about to use a QGLWidget to render it , just call glwidget-makeCurrent() when the render

Re: [Interest] How to stop dissassembler view?

2014-08-08 Thread rap
Got it, thread creation and exit are set as default points to break on in tools/Debugger options. -risto From: rap Sent: Friday, August 08, 2014 3:14 PM Debugging always brings the dissassembler view at Breakpoints. How can this be stopped? I just need to break on Breakpoints in my

Re: [Interest] Stability of Qt when working in Visual Studio 2013

2014-08-08 Thread Bo Thorsen
Qt 5.3 is perfect with VS 2013, that's my main Windows development setup. If you are on Qt 4.x, you have to compile Qt yourself, and only 4.8.6 compiles. Bo. Den 08-08-2014 15:21, Santiago J. Barro-Torres skrev: Hi all, Does anybody knows how good is the stability of Qt when working with

Re: [Interest] Stability of Qt when working in Visual Studio 2013

2014-08-08 Thread rap
Qt 5.3.1 seems to work like charm and fast with Visual Studio 2013. Having c++11 features available (after Qt 5.2. w/ VS2010 without them) is great. -risto -Alkuperäinen viesti- From: Santiago J. Barro-Torres Sent: Friday, August 08, 2014 4:21 PM To: interest@qt-project.org Subject:

[Interest] QLineEdit upper case

2014-08-08 Thread pmqt71
Hi, I need a QLineEdit control that forces user input in uppercase while editing, not after loosing the focus. I'm trying different ways but each has side effects: - using the textEdited signal to make the text upper : bad behaviour if editing in the middle; - using a validator : dislike this

Re: [Interest] QLineEdit upper case

2014-08-08 Thread Bo Thorsen
Den 08-08-2014 15:41, pmqt71 skrev: Hi, I need a QLineEdit control that forces user input in uppercase while editing, not after loosing the focus. I'm trying different ways but each has side effects: - using the textEdited signal to make the text upper : bad behaviour if editing in the

Re: [Interest] question about relocating Qt library installation

2014-08-08 Thread Darren Dale
On Wed, Aug 6, 2014 at 4:20 PM, Darren Dale dsdal...@gmail.com wrote: On Mon, Aug 4, 2014 at 11:59 PM, Thiago Macieira thiago.macie...@intel.com wrote: On Monday 04 August 2014 09:47:55 Darren Dale wrote: I spent a good part of the weekend looking for information on the web. I'm not

[Interest] Best way to build Qt5 distribution for internal development

2014-08-08 Thread Michael Jackson
In the past I have provided my developers with a custom build of Qt 4.8.x for their VS version (2010, 2012, 2013) all 64 bit versions. This was done via a combination of a self compile and creating an installer using the Qt Installer Framework. The basics are this: Pick a directory, say

Re: [Interest] Gstreamer support

2014-08-08 Thread Nikos Chantziaras
On 08/08/14 17:46, pritam.ghang...@gmail.com wrote: Got that working. Configure script looks for Gstreamer only if phonon is enabled. Video through Phonon might not be the best experience. You might want to look into QtGStreamer instead. it's provides by GStreamer itself:

Re: [Interest] QLineEdit upper case

2014-08-08 Thread Till Oliver Knoll
Am 08.08.2014 um 16:54 schrieb pmqt71 pmq...@gmail.com: Hi Bo, as I said, some controls already have a validator so I can't replace it. So basically your problem is: How to chain together (combine) several Validators! E.g. you have one Validator which only accepts the characters 'a', 'b' and

Re: [Interest] Gstreamer support

2014-08-08 Thread Mandeep Sandhu
On Fri, Aug 8, 2014 at 8:00 AM, Nikos Chantziaras rea...@gmail.com wrote: On 08/08/14 17:46, pritam.ghang...@gmail.com wrote: Got that working. Configure script looks for Gstreamer only if phonon is enabled. Video through Phonon might not be the best experience. You might want to look into

Re: [Interest] How to stop dissassembler view?

2014-08-08 Thread rap
From: Thiago Macieira Sent: Friday, August 08, 2014 6:27 PM On 8 août 2014, at 14:14, rap r...@dlc.fi wrote: Debugging always brings the dissassembler view at Breakpoints. How can this be stopped? I just need to break on Breakpoints in my source code. Thanks - Risto Hi,

Re: [Interest] QLineEdit upper case

2014-08-08 Thread Till Oliver Knoll
Am 08.08.14 18:08, schrieb pmqt71: ... @Oliver: yes my problem is that QLineEdit can have only 1 validator. I think inherithance should be easier than implementin a ChainValidator, am I right? We could now fill pages of discussions about Inheritance being evil, is-a vs has-a vs uses-a

[Interest] Gracefully Closing a QProcess

2014-08-08 Thread Jason R. Kretzer
Good Day! I saw a partial question and answer to this a bit ago on this list but I have a follow up scenario. I would like to start a QProcess and connect a SLOT to its SIGNAL(error(QProcess::ProcessError)) In the SLOT, I would like to gracefully restart the process without triggering the

Re: [Interest] Best way to build Qt5 distribution for internal development

2014-08-08 Thread Adam Light
Michael: On Fri, Aug 8, 2014 at 7:39 AM, Michael Jackson imikejack...@gmail.com wrote: In the past I have provided my developers with a custom build of Qt 4.8.x for their VS version (2010, 2012, 2013) all 64 bit versions. This was done via a combination of a self compile and creating an

Re: [Interest] Stability of Qt when working in Visual Studio 2013

2014-08-08 Thread Paolino Marmolaro
Using VS 2013 Express, Qt 5.3.1, Boost 1.54, C++11 great! 2014-08-08 15:32 GMT+02:00 rap r...@dlc.fi: Qt 5.3.1 seems to work like charm and fast with Visual Studio 2013. Having c++11 features available (after Qt 5.2. w/ VS2010 without them) is great. -risto -Alkuperäinen

[Interest] Writing a Video in Qt Frame by Frame

2014-08-08 Thread Santiago J. Barro-Torres
Hello, Right now I am using OpenCV (http://opencv.org/) to capture a video from a Webcam. I can't do that in Qt because this option is not yet implemented in Windows, so I had to look for alternatives. I still would like to use Qt for the User Interface. How can I integrate the single Frames

Re: [Interest] Writing a Video in Qt Frame by Frame

2014-08-08 Thread Ian Monroe
2014-08-08 15:41 GMT-07:00 Santiago J. Barro-Torres santiago.ba...@ocsystems.de: Hello, Right now I am using OpenCV (http://opencv.org/) to capture a video from a Webcam. I can't do that in Qt because this option is not yet implemented in Windows, so I had to look for alternatives. I still

Re: [Interest] Gracefully Closing a QProcess

2014-08-08 Thread Thiago Macieira
On Friday 08 August 2014 14:55:41 Jason R. Kretzer wrote: In the end, not sure what is the right way to go about this. All I want to do is terminate and restart a process that has triggered an error. Thoughts? a) don't reuse the same QProcess object b) reuse, but don't try to start a