QT widget in widget transparent for mouse events

622 Views Asked by At

I'm working on application with Qt and Magnification API. I want to create a magnifier with changable frame. I created a QWidget MagnifierForm:

MagnifierForm::MagnifierForm(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::MagnifierForm)
{
    ui->setupUi(this);
    magFactor = 2.0f;

    hwndHost = reinterpret_cast<HWND>(this->winId());
    setFocusPolicy( Qt::NoFocus );
    if (FALSE == MagInitialize())
    {
        return;
    }

    if (FALSE == SetupMagnifier())
    {
        return;
    }

    magStatus = PARTIAL;

    timer = new QTimer(this);
    connect(timer, SIGNAL(timeout()), this, SLOT(magUpdate()));
    timer->start(10);
}

Next I create a QFrame MagnifierFrame:

MagnifierFrame::MagnifierFrame(QWidget *parent) :
    QFrame(parent),
    ui(new Ui::MagnifierFrame)
{
    ui->setupUi(this);

    setWindowFlags(Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::Dialog);
    Qt::WindowFlags flags = windowFlags();
    flags ^= Qt::WindowStaysOnTopHint;

    flags ^= Qt::FramelessWindowHint;
    flags &= Qt::FramelessWindowHint;
    setWindowFlags( flags );

    HWND hwndHost = reinterpret_cast<HWND>(this->winId());
    ::SetWindowLong(hwndHost, GWL_EXSTYLE, WS_EX_TOOLWINDOW );

    ::SetWindowPos(hwndHost, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
    ::SetWindowLong(hwndHost, GWL_STYLE, WS_POPUP);

    magnifierForm = new MagnifierForm(ui->widget);
    ui->widget->setParent(this);
    setAttribute(Qt::WA_TranslucentBackground);
    setAttribute(Qt::WA_TransparentForMouseEvents);
    setAttribute(Qt::WA_PaintOnScreen);
}

The problem is magnifier is not transparent for mouse events. Please Help.

0

There are 0 best solutions below