2017-10-27 13:15:37 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
#include "Qt5Widget.hxx"
|
|
|
|
#include <Qt5Widget.moc>
|
2017-10-27 13:15:37 +02:00
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
#include "Qt5Frame.hxx"
|
|
|
|
#include "Qt5Graphics.hxx"
|
2017-10-24 19:49:45 +02:00
|
|
|
#include "Qt5Tools.hxx"
|
2017-10-31 01:07:06 +01:00
|
|
|
|
|
|
|
#include <QtGui/QImage>
|
2017-10-30 19:55:18 +01:00
|
|
|
#include <QtGui/QMouseEvent>
|
2017-10-31 01:07:06 +01:00
|
|
|
#include <QtGui/QPainter>
|
|
|
|
#include <QtGui/QPaintEvent>
|
2017-11-07 13:13:10 +01:00
|
|
|
#include <QtGui/QShowEvent>
|
2017-10-30 19:55:18 +01:00
|
|
|
#include <QtGui/QWheelEvent>
|
2017-10-31 01:07:06 +01:00
|
|
|
|
2017-10-24 19:49:45 +02:00
|
|
|
#include <cairo.h>
|
|
|
|
#include <headless/svpgdi.hxx>
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
Qt5Widget::Qt5Widget( Qt5Frame &rFrame, QWidget *parent, Qt::WindowFlags f )
|
2017-10-27 13:15:37 +02:00
|
|
|
: QWidget( parent, f )
|
|
|
|
, m_pFrame( &rFrame )
|
|
|
|
{
|
|
|
|
create();
|
2017-10-30 19:55:18 +01:00
|
|
|
setMouseTracking( true );
|
2017-10-27 13:15:37 +02:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
Qt5Widget::~Qt5Widget()
|
2017-10-27 13:15:37 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Widget::paintEvent( QPaintEvent *pEvent )
|
2017-10-31 01:07:06 +01:00
|
|
|
{
|
|
|
|
QPainter p( this );
|
2017-10-24 19:49:45 +02:00
|
|
|
if( m_pFrame->m_bUseCairo )
|
|
|
|
{
|
|
|
|
cairo_surface_t *pSurface = m_pFrame->m_pSurface.get();
|
|
|
|
cairo_surface_flush( pSurface );
|
|
|
|
|
|
|
|
QImage aImage( cairo_image_surface_get_data( pSurface ),
|
|
|
|
size().width(), size().height(), Qt5_DefaultFormat32 );
|
|
|
|
p.drawImage( pEvent->rect().topLeft(), aImage, pEvent->rect() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
p.drawImage( pEvent->rect().topLeft(),
|
|
|
|
*m_pFrame->m_pQImage, pEvent->rect() );
|
2017-10-31 01:07:06 +01:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Widget::resizeEvent( QResizeEvent* )
|
2017-10-31 01:07:06 +01:00
|
|
|
{
|
2017-10-24 19:49:45 +02:00
|
|
|
if( m_pFrame->m_bUseCairo )
|
|
|
|
{
|
|
|
|
int width = size().width();
|
|
|
|
int height = size().height();
|
|
|
|
cairo_surface_t *pSurface = cairo_image_surface_create( CAIRO_FORMAT_ARGB32, width, height );
|
|
|
|
cairo_surface_set_user_data( pSurface, SvpSalGraphics::getDamageKey(),
|
|
|
|
&m_pFrame->m_aDamageHandler, nullptr );
|
|
|
|
m_pFrame->m_pSvpGraphics->setSurface( pSurface, basegfx::B2IVector(width, height) );
|
|
|
|
m_pFrame->m_pSurface.reset( pSurface );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QImage *pImage = new QImage( size(), Qt5_DefaultFormat32 );
|
|
|
|
m_pFrame->m_pQt5Graphics->ChangeQImage( pImage );
|
|
|
|
m_pFrame->m_pQImage.reset( pImage );
|
|
|
|
}
|
|
|
|
|
2017-10-31 01:07:06 +01:00
|
|
|
m_pFrame->CallCallback( SalEvent::Resize, nullptr );
|
|
|
|
}
|
|
|
|
|
2017-10-30 19:55:18 +01:00
|
|
|
void Qt5Widget::mouseButtonEvent( QMouseEvent *pEvent, bool bReleased )
|
|
|
|
{
|
|
|
|
SalMouseEvent aEvent;
|
|
|
|
switch( pEvent->button() )
|
|
|
|
{
|
|
|
|
case Qt::LeftButton: aEvent.mnButton = MOUSE_LEFT; break;
|
|
|
|
case Qt::MidButton: aEvent.mnButton = MOUSE_MIDDLE; break;
|
|
|
|
case Qt::RightButton: aEvent.mnButton = MOUSE_RIGHT; break;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
|
|
|
|
aEvent.mnTime = pEvent->timestamp();
|
|
|
|
aEvent.mnX = (long) pEvent->pos().x();
|
|
|
|
aEvent.mnY = (long) pEvent->pos().y();
|
|
|
|
aEvent.mnCode = GetKeyModCode( pEvent->modifiers() ) |
|
|
|
|
GetMouseModCode( pEvent->buttons() );
|
|
|
|
|
|
|
|
SalEvent nEventType;
|
|
|
|
if ( bReleased )
|
|
|
|
nEventType = SalEvent::MouseButtonUp;
|
|
|
|
else
|
|
|
|
nEventType = SalEvent::MouseButtonDown;
|
|
|
|
m_pFrame->CallCallback( nEventType, &aEvent );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Qt5Widget::mousePressEvent( QMouseEvent *pEvent )
|
|
|
|
{
|
|
|
|
mouseButtonEvent( pEvent, false );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Qt5Widget::mouseReleaseEvent( QMouseEvent *pEvent )
|
|
|
|
{
|
|
|
|
mouseButtonEvent( pEvent, true );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Qt5Widget::mouseMoveEvent( QMouseEvent *pEvent )
|
|
|
|
{
|
|
|
|
SalMouseEvent aEvent;
|
|
|
|
aEvent.mnTime = pEvent->timestamp();
|
|
|
|
aEvent.mnX = pEvent->pos().x();
|
|
|
|
aEvent.mnY = pEvent->pos().y();
|
|
|
|
aEvent.mnCode = GetKeyModCode( pEvent->modifiers() ) |
|
|
|
|
GetMouseModCode( pEvent->buttons() );
|
|
|
|
aEvent.mnButton = 0;
|
|
|
|
|
|
|
|
m_pFrame->CallCallback( SalEvent::MouseMove, &aEvent );
|
|
|
|
pEvent->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Qt5Widget::wheelEvent( QWheelEvent *pEvent )
|
|
|
|
{
|
|
|
|
SalWheelMouseEvent aEvent;
|
|
|
|
|
|
|
|
aEvent.mnTime = pEvent->timestamp();
|
|
|
|
aEvent.mnX = pEvent->pos().x();
|
|
|
|
aEvent.mnY = pEvent->pos().y();
|
|
|
|
aEvent.mnCode = GetKeyModCode( pEvent->modifiers() ) |
|
|
|
|
GetMouseModCode( pEvent->buttons() );
|
|
|
|
|
|
|
|
int nDelta = pEvent->angleDelta().x();
|
|
|
|
aEvent.mbHorz = true;
|
|
|
|
if ( !nDelta )
|
|
|
|
{
|
|
|
|
nDelta = pEvent->angleDelta().y();
|
|
|
|
aEvent.mbHorz = false;
|
|
|
|
}
|
|
|
|
if ( !nDelta )
|
|
|
|
return;
|
|
|
|
nDelta /= 8;
|
|
|
|
|
|
|
|
aEvent.mnDelta = nDelta;
|
|
|
|
aEvent.mnNotchDelta = nDelta > 0 ? 1 : -1;
|
|
|
|
aEvent.mnScrollLines = 3;
|
|
|
|
|
|
|
|
m_pFrame->CallCallback( SalEvent::WheelMouse, &aEvent );
|
|
|
|
pEvent->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Qt5Widget::moveEvent( QMoveEvent* )
|
|
|
|
{
|
|
|
|
m_pFrame->CallCallback( SalEvent::Move, nullptr );
|
|
|
|
}
|
|
|
|
|
2017-11-07 13:13:10 +01:00
|
|
|
void Qt5Widget::showEvent( QShowEvent* )
|
|
|
|
{
|
|
|
|
QSize aSize( m_pFrame->m_pQWidget->size() );
|
|
|
|
SalPaintEvent aPaintEvt( 0, 0, aSize.width(), aSize.height(), true );
|
|
|
|
m_pFrame->CallCallback( SalEvent::Paint, &aPaintEvt );
|
|
|
|
}
|
2017-10-30 19:55:18 +01:00
|
|
|
|
2017-10-27 13:15:37 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|