[Interest] Zoom In and Zoom Out Event with ActiveQt ( QAxWidget )

2017-07-03 Thread neel patel
Hi, How can we achieve Zoom In and Zoom Out with QAxWidget. As the web contents are rendered properly but if user want to zoom in and zoom out the content of QAxWidget then how to do that ? As for the QWebView - method "setZoomFactor" is available but with this QAxWidget there is no method availa

Re: [Interest] QTcpSocket bind method failed when proxy server is configured in windows OS

2017-07-03 Thread neel patel
Yes. It is HTTP proxy. Thank you Thiago for the information. Thanks On Mon, Jul 3, 2017 at 10:04 PM, Thiago Macieira wrote: > On segunda-feira, 3 de julho de 2017 03:14:32 PDT neel patel wrote: > > Hi, > > > > I am just finding the free available random port using below code in > > windows OS.

Re: [Interest] Qt 5.10 + QtWebKit?

2017-07-03 Thread Kevin Ushey
Got it, thanks! And huge thanks to Konstantin for providing binaries (especially for Windows) -- we're eager to test this out soon. Best, Kevin On Mon, Jul 3, 2017 at 10:07 AM, Thiago Macieira wrote: > On segunda-feira, 3 de julho de 2017 09:42:24 PDT Kevin Ushey wrote: > > As per: > > > > http

Re: [Interest] Qt 5.10 + QtWebKit?

2017-07-03 Thread Thiago Macieira
On segunda-feira, 3 de julho de 2017 09:42:24 PDT Kevin Ushey wrote: > As per: > > http://lists.qt-project.org/pipermail/development/2017-May/029795.html > > I'm very excited to see that work on QtWebKit has been revived. I'm curious > as to whether there are concrete plans to incorporate QtWebKi

Re: [Interest] Qt 5.10 + QtWebKit?

2017-07-03 Thread Konstantin Tokarev
  03.07.2017, 19:42, "Kevin Ushey" :As per: http://lists.qt-project.org/pipermail/development/2017-May/029795.html I'm very excited to see that work on QtWebKit has been revived. I'm curious as to whether there are concrete plans to incorporate QtWebKit with the next releases of Qt? If so, will the

[Interest] QAccessible::InterfaceType is wrong when used with the NVDA screen reader

2017-07-03 Thread Nikos Chantziaras
Hello. I'm on Qt 5.9.1. I'm trying to make an application accessible through screen readers. I have a custom widget (let's call it MyWidget) that contains text. The text is drawn using QPainter, which is why a custom widget is used rather than something like QTextBrowser. I implemented the

[Interest] Qt 5.10 + QtWebKit?

2017-07-03 Thread Kevin Ushey
As per: http://lists.qt-project.org/pipermail/development/2017-May/029795.html I'm very excited to see that work on QtWebKit has been revived. I'm curious as to whether there are concrete plans to incorporate QtWebKit with the next releases of Qt? If so, will these be made part of the Qt 5.10 bet

Re: [Interest] QTcpSocket bind method failed when proxy server is configured in windows OS

2017-07-03 Thread Thiago Macieira
On segunda-feira, 3 de julho de 2017 03:14:32 PDT neel patel wrote: > Hi, > > I am just finding the free available random port using below code in > windows OS. ( Using Qt 5.9.1 ). > > > *quint16 port = 0L;* > *QTcpSocket socket;* > *socket.bind(0, QTcpSocket::ShareAddress);* > *port = s

[Interest] QTcpSocket bind method failed when proxy server is configured in windows OS

2017-07-03 Thread neel patel
Hi, I am just finding the free available random port using below code in windows OS. ( Using Qt 5.9.1 ). *quint16 port = 0L;* *QTcpSocket socket;* *socket.bind(0, QTcpSocket::ShareAddress);* *port = socket.localPort();* Windows OS - When the proxy server is not configured then above cod

Re: [Interest] Qt 5.9 and QtAngle library

2017-07-03 Thread Sergio Martins
On 2017-07-03 09:57, Oliver Wolff wrote: Hi Lars, On 03/07/2017 10:52, Lars wrote: (...) "If ANGLE (the default) is used (...) Hello Oliver, This could also be clarified, since ANGLE is not the default if you use the pre-built binaries. "-opengl dynamic" will give precedence to desktop Op

Re: [Interest] Qt 5.9 and QtAngle library

2017-07-03 Thread Oliver Wolff
Hi Lars, On 03/07/2017 10:52, Lars wrote: Hello, Downloaded and installed qt-enterprise-windows-x86-5.9.0. Reading the following web page http://doc.qt.io/qt-5/windows-deployment.html I saw this line; /"If //ANGLE/

[Interest] Qt 5.9 and QtAngle library

2017-07-03 Thread Lars
Hello, Downloaded and installed qt-enterprise-windows-x86-5.9.0. Reading the following web page http://doc.qt.io/qt-5/windows-deployment.html I saw this line; "If ANGLE (the default) is used, you additionally need to include b

Re: [Interest] Drag and drop Event with QAxWidget issue

2017-07-03 Thread neel patel
Hi Christoph, Sorry, It's typo here. I already did "setAcceptDrops(true)" in constructor. Any idea how can we resolve this ? Thanks in Advance. On Fri, Jun 30, 2017 at 12:20 PM, Christoph Keller wrote: > You seem to have forgotten calling setAcceptDrops(true) in the > constructor. See http://