[Interest] QSystemTrayIcon and GNOME 3.28

2018-03-22 Thread neel patel
Hi, GNOME 3.28 has removed the system tray icons and introduced indicator applets. I am using Qt application to launch the application run in background and show icon in system tray by using "QSystemTrayIcon" class. Now in GNOME 3.28 it has been removed so can anyone suggest alternative in Qt app

Re: [Interest] QtWebKit and open URL in new tab window

2017-11-22 Thread neel patel
Hi Konstantin, On Tue, Nov 21, 2017 at 2:52 PM, neel patel wrote: > Hi, > > Yes. By using "_blank" - "createWindow" callback is getting called every > time we click on link. > You are right - We should use "_blank" instead of "_new" t

Re: [Interest] QtWebKit and open URL in new tab window

2017-11-21 Thread neel patel
Hi, Yes. By using "_blank" - "createWindow" callback is getting called every time we click on link. You are right - We should use "_blank" instead of "_new" target attribute as didn't find any reference document. Thanks for your valuable suggestion.

[Interest] QtWebKit and open URL in new tab window

2017-11-20 Thread neel patel
Hi, I want to create new window in my QTabWidget when we get "target=_new" from HTML file. We are getting "createWindow" call from Qt when user click on any link with attribute "target=_new" and I am handling that and open in new tab in QTabWidget. BUT when we close the opened tab and again clic

Re: [Interest] HTML Access key not working with webkit and webengine in MAC OS

2017-11-14 Thread neel patel
Hi, Can anyone update on above thread or below link for an issue. https://bugreports.qt.io/browse/QTBUG-64300 Thanks, Neel Patel On Mon, Nov 6, 2017 at 3:57 PM, neel patel wrote: > Just for reference, issue reported here. > > https://github.com/annulen/webkit/issues/594 > >

Re: [Interest] HTML Access key not working with webkit and webengine in MAC OS

2017-11-06 Thread neel patel
Just for reference, issue reported here. https://github.com/annulen/webkit/issues/594 Thanks, Neel Patel On Mon, Nov 6, 2017 at 3:39 PM, neel patel wrote: > Hi, > > I was just checking with HTML access key which was not working with MAC OS > Qt 5.9 WebEngine. I have also checked

[Interest] HTML Access key not working with webkit and webengine in MAC OS

2017-11-06 Thread neel patel
Hi, I was just checking with HTML access key which was not working with MAC OS Qt 5.9 WebEngine. I have also checked with Qt 5.5 with webkit in MAC and it is not working. Where HTML access key is working fine with Linux & Windows OS. Can some-one guide me why HTML access key is not working with

Re: [Interest] ActiveQt and IE version

2017-07-10 Thread neel patel
Ok. Thank you. On Mon, Jul 10, 2017 at 1:17 AM, Konstantin Tokarev wrote: > > > 08.07.2017, 11:02, "neel patel" : > > Hi All, > > > > I am using "QAxWidget" for the ActiveQt with Qt 5.5.1 and we are using > "setControl" to set the IWe

[Interest] ActiveQt and IE version

2017-07-08 Thread neel patel
Hi All, I am using "QAxWidget" for the ActiveQt with Qt 5.5.1 and we are using "setControl" to set the IWebBrowser control in QAxWidget. I used below code for reference. m_activeX = new QAxWidget(this); // Set ActiveX WebBrowser Control to QAxWidget. m_activeX->setControl(QStringLiteral("{8856F9

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

2017-07-04 Thread neel patel
it directly with its member functions: > long QAxBase::queryInterface(const QUuid > <http://doc.qt.io/qt-5/quuid.html> &*uuid*, void ***iface*) const > > - Michael. > > > > > > > > *From:* Interest [mailto:interest-bounces+sue=sf.mpg...@qt-project.org]

[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 c

[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] Drag and drop Event with QAxWidget issue

2017-07-03 Thread neel patel
constructor. See http://doc.qt.io/qt-5/dnd.html#dropping > > On 29.06.17 12:36, neel patel wrote: > > Hi, > > I have subclass QAxWidget and re-implemented drag/drop Events as below but > wherever we drag some widget to this area then no events are generated. > > >

[Interest] Drag and drop Event with QAxWidget issue

2017-06-29 Thread neel patel
Hi, I have subclass QAxWidget and re-implemented drag/drop Events as below but wherever we drag some widget to this area then no events are generated. class WebAxWidget : public QAxWidget { public: WebAxWidget(QWidget* parent = 0, Qt::WindowFlags f = 0) : QAxWidget(parent, f) {