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://

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

2017-06-29 Thread Christoph Keller
You seem to have forgotten calling setAcceptDrops(true) in the 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

[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) {