Re: [Interest] QLIneEdit Bug still valid ?

2012-07-19 Thread André Somers
Op 17-7-2012 9:45, Tony Rietwyk schreef: Hi, A much easier solution to disconnecting the signals, is to set a flag before calling setText, then check that in the slot. Hope that helps, Tony Or use QObject::blockSignals(true) on the line edit before you set the text, and the same with

[Interest] About qxmlstream

2012-07-19 Thread song.7.liu
Hi, Can the Qt XML handle the content as below ? title Hello / Any help is appreciated ;) Thanks, Song ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Qt Binaries for Mingw 4.7

2012-07-19 Thread Konrad Rosenbaum
Hi, I'm using features of C++11 (provided by GCC 4.7, and maybe LLVM 3.1) in my projects, which is fine for Linux, but there are some problems on Windows. Moving back to an earlier GCC is not an option - I'd rather drop Windows- Support (I've already dropped Mac for the same reason). If I use

Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-19 Thread Yves Bailly
Hello Konrad, Le 19/07/2012 10:07, Konrad Rosenbaum a écrit : Does anyone provide a complete binary package for Qt 4.8.2 compiled with Mingw4.7? Are you trying 32bits or 64bits builds? The only really working 64bits MinGW I ever found is the one from TDM (http://tdm-gcc.tdragon.net/, also

Re: [Interest] About qxmlstream

2012-07-19 Thread Till Oliver Knoll
2012/7/19 song.7@nokia.com: Can the Qt XML handle the content as below ? No, it only handles XML, as the name implies ;) title Hello / That's not valid XLM, see http://www.w3.org/TR/REC-xml/#NT-Name That would be a valid possibility: title text=Hello / Cheers, Oliver

Re: [Interest] QLIneEdit Bug still valid ?

2012-07-19 Thread Bo Thorsen
Den 17-07-2012 10:22, André Somers skrev: Op 17-7-2012 9:45, Tony Rietwyk schreef: Hi, A much easier solution to disconnecting the signals, is to set a flag before calling setText, then check that in the slot. Hope that helps, Tony Or use QObject::blockSignals(true) on the line

Re: [Interest] QLIneEdit Bug still valid ?

2012-07-19 Thread André Somers
Op 19-7-2012 11:54, Bo Thorsen schreef: Den 17-07-2012 10:22, André Somers skrev: Op 17-7-2012 9:45, Tony Rietwyk schreef: Hi, A much easier solution to disconnecting the signals, is to set a flag before calling setText, then check that in the slot. Hope that helps, Tony Or use

[Interest] User interactions on webpage in Qtwebkit browser!

2012-07-19 Thread Lata Agrawal
Hi all, I have following requirement and I have no clue how to go ahead with this: I am loading a webpage in QtWebkit browser. I want to log all user interactions with the webpage like clicking on a button, image, text entry etc. I am not sure how to approach this problem. Any pointers would be

Re: [Interest] User interactions on webpage in Qtwebkit browser!

2012-07-19 Thread Igor Grivko
Hi Lata, I can suggest to look at the voidQWebView::linkClicked( constQUrl qurl.html/url/)[signal] This signal is emitted whenever the user clicks on a link and the page's linkDelegationPolicy property is set to delegate the link handling for the specified/url/. *See

Re: [Interest] QLIneEdit Bug still valid ?

2012-07-19 Thread Tony Rietwyk
Andre said Sent: Tuesday, 17 July 2012 6:22 PM Op 17-7-2012 9:45, Tony Rietwyk schreef: Hi, A much easier solution to disconnecting the signals, is to set a flag before calling setText, then check that in the slot. Hope that helps, Tony Or use QObject::blockSignals(true) on

Re: [Interest] About qxmlstream

2012-07-19 Thread Till Oliver Knoll
Am 19.07.2012 um 17:57 schrieb song.7@nokia.com: Thanks, finally the DOM is used for this case, thanks ;) What do you mean for this case?! And I assume you're referring to the (deprecated!) QDomDocument API. Well, that *still* doesn't make your example valid XML (not even valid HTML):

Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-19 Thread Yang Fan
I'm using MinGW with GCC 4.7.1 got from http://sourceforge.net/projects/mingwbuilds/, it works fine for Qt 4.8.1 and Qt 4.8.2. On Thu, Jul 19, 2012 at 4:07 PM, Konrad Rosenbaum kon...@silmor.de wrote: Hi, I'm using features of C++11 (provided by GCC 4.7, and maybe LLVM 3.1) in my projects,

Re: [Interest] About qxmlstream

2012-07-19 Thread Jason H
Absolutely true. condition data=sunny /  -- you need to call elementNode.attribute(data) conditionsunny/condition -- you can call readNodeText() or elementNode,text() One is an attribute, the other is a text node of an element node. You need to read up on XML if you do not understand the