[Interest] [SOLVED] Re: QWebFrame::toHtml() is encoding <> automatically

2013-04-02 Thread Aaron Lewis
Okay, thanks Thiago! On Tue, Apr 2, 2013 at 11:09 PM, Thiago Macieira wrote: > On terça-feira, 2 de abril de 2013 22.50.44, Aaron Lewis wrote: >> Hi Thiago, >> >> Yes, the page is intended to be invalid, since Webkit is trying to fix >> the "error", can can I turn off this feature? > > No. > -- >

[Interest] Running code in the scene graph renderer thread

2013-04-02 Thread Luca Carlon
Hi! I'm implementing a plugin for Qt Multimedia for playing video and audio using hardware acceleration. When opening a content which includes video, I need to instantiate an OpenGL texture and an EGLImageKHR. To do this I need to be in the thread with the current OpenGL context, which should be th

Re: [Interest] QWebFrame::toHtml() is encoding <> automatically

2013-04-02 Thread Thiago Macieira
On terça-feira, 2 de abril de 2013 22.50.44, Aaron Lewis wrote: > Hi Thiago, > > Yes, the page is intended to be invalid, since Webkit is trying to fix > the "error", can can I turn off this feature? No. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source T

Re: [Interest] QWebFrame::toHtml() is encoding <> automatically

2013-04-02 Thread Aaron Lewis
Hi Thiago, Yes, the page is intended to be invalid, since Webkit is trying to fix the "error", can can I turn off this feature? On Tue, Apr 2, 2013 at 10:42 PM, Thiago Macieira wrote: > On terça-feira, 2 de abril de 2013 22.00.31, Aaron Lewis wrote: >> Hi Richard! >> >> Nope, content-type isn't

Re: [Interest] QWebFrame::toHtml() is encoding <> automatically

2013-04-02 Thread Thiago Macieira
On terça-feira, 2 de abril de 2013 22.00.31, Aaron Lewis wrote: > Hi Richard! > > Nope, content-type isn't the case here, even if I provide a > > header ("Content-Type: text/html"); > > It doesn't make any change. PHP is irrelevant for us. Please paste the contents of the output from the web serv

Re: [Interest] custom widget with rounded border

2013-04-02 Thread Francisco Ares
Hi, I use to set the background and window palettes as transparent. Hope this helps Francisco 2013/4/2 Hamish Moffatt > Hi, > > I am building a custom widget descending from QFrame, because I want the > rounded borders and other behaviour. In my paintEvent, contentsRect() > gets me the rectang

Re: [Interest] QWebFrame::toHtml() is encoding <> automatically

2013-04-02 Thread Aaron Lewis
Hi Richard! Nope, content-type isn't the case here, even if I provide a header ("Content-Type: text/html"); It doesn't make any change. On Tue, Apr 2, 2013 at 8:01 PM, Richard Moore wrote: > On 2 April 2013 12:36, Aaron Lewis wrote: >> Below is a testing php script, >> >> > echo $_GET['ab

Re: [Interest] Problem using QTcpSocket with large amounts of data

2013-04-02 Thread Christian Dähn
Hi, I wrote you some examples for sending QImages etc. into the Qt-Project forum thread. The examples are take from an industral imaging framework I developed - so it's guaranteed to work with even hughe image data (> 100 MB) and can be easily extended to use even multiple different Qt data types

Re: [Interest] QWebFrame::toHtml() is encoding <> automatically

2013-04-02 Thread Richard Moore
On 2 April 2013 12:36, Aaron Lewis wrote: > Below is a testing php script, > > echo $_GET['abc'], ""; > echo htmlentities($_GET['abc']); > ?> > > If I retrieve the contents of that page with chromium browser, showing > the source code reveals contents like this: > > <><> > > But with QWeb

[Interest] QWebFrame::toHtml() is encoding <> automatically

2013-04-02 Thread Aaron Lewis
Below is a testing php script, "; echo htmlentities($_GET['abc']); ?> If I retrieve the contents of that page with chromium browser, showing the source code reveals contents like this: <><> But with QWebFrame::toHtml(), all <> are encoded, and I got: <><> That's weird, anyone know how to

[Interest] custom widget with rounded border

2013-04-02 Thread Hamish Moffatt
Hi, I am building a custom widget descending from QFrame, because I want the rounded borders and other behaviour. In my paintEvent, contentsRect() gets me the rectangle for the contents excluding the border, padding and margins but the rounded borders are inside that rect. So I am obliterating