2fdee9fd60
Following Change-Id: Id48f81deb05aee2026509037f7d14575735e5be0 Author: Michael Weghorn <m.weghorn@posteo.de> Date: Wed Jul 10 14:49:03 2024 +0200 VCLUnoHelper: Align AWT <-> VCL helpers with convert.hxx impl , port all uses of the helper functions defined in `include/toolkit/helper/convert.hxx` to use the `VCLUnoHelper` equivalents instead, to unify usage and avoid duplication. Drop `include/toolkit/helper/convert.hxx` now that it's unused. Change-Id: I22695a93e40e47bb2b14d191a2e0a4eb7c856895 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170317 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
159 lines
4.4 KiB
C++
159 lines
4.4 KiB
C++
/* -*- 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 .
|
|
*/
|
|
|
|
#include <com/sun/star/embed/XHatchWindowController.hpp>
|
|
#include <com/sun/star/lang/IllegalArgumentException.hpp>
|
|
|
|
#include "hatchwindow.hxx"
|
|
#include "ipwin.hxx"
|
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
#include <cppuhelper/queryinterface.hxx>
|
|
#include <cppuhelper/typeprovider.hxx>
|
|
#include <osl/diagnose.h>
|
|
#include <vcl/svapp.hxx>
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
VCLXHatchWindow::VCLXHatchWindow()
|
|
: pHatchWindow(nullptr)
|
|
{
|
|
}
|
|
|
|
VCLXHatchWindow::~VCLXHatchWindow()
|
|
{
|
|
}
|
|
|
|
void VCLXHatchWindow::initializeWindow( const uno::Reference< awt::XWindowPeer >& xParent,
|
|
const awt::Rectangle& aBounds,
|
|
const awt::Size& aSize )
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
VclPtr<vcl::Window> pParent;
|
|
VCLXWindow* pParentComponent = dynamic_cast<VCLXWindow*>( xParent.get() );
|
|
|
|
if ( pParentComponent )
|
|
pParent = pParentComponent->GetWindow();
|
|
|
|
OSL_ENSURE( pParent, "No parent window is provided!" );
|
|
if ( !pParent )
|
|
throw lang::IllegalArgumentException(); // TODO
|
|
|
|
pHatchWindow = VclPtr<SvResizeWindow>::Create( pParent, this );
|
|
pHatchWindow->setPosSizePixel( aBounds.X, aBounds.Y, aBounds.Width, aBounds.Height );
|
|
aHatchBorderSize = aSize;
|
|
pHatchWindow->SetHatchBorderPixel( Size( aSize.Width, aSize.Height ) );
|
|
|
|
SetWindow( pHatchWindow );
|
|
pHatchWindow->SetComponentInterface( this );
|
|
|
|
//pHatchWindow->Show();
|
|
}
|
|
|
|
void VCLXHatchWindow::QueryObjAreaPixel( tools::Rectangle & aRect )
|
|
{
|
|
if ( !m_xController.is() )
|
|
return;
|
|
|
|
awt::Rectangle aUnoRequestRect = VCLUnoHelper::ConvertToAWTRect(aRect);
|
|
|
|
try {
|
|
awt::Rectangle aUnoResultRect = m_xController->calcAdjustedRectangle( aUnoRequestRect );
|
|
aRect = VCLUnoHelper::ConvertToVCLRect(aUnoResultRect);
|
|
}
|
|
catch( uno::Exception& )
|
|
{
|
|
OSL_FAIL( "Can't adjust rectangle size!" );
|
|
}
|
|
}
|
|
|
|
void VCLXHatchWindow::RequestObjAreaPixel( const tools::Rectangle & aRect )
|
|
{
|
|
if ( m_xController.is() )
|
|
{
|
|
awt::Rectangle aUnoRequestRect = VCLUnoHelper::ConvertToAWTRect(aRect);
|
|
|
|
try {
|
|
m_xController->requestPositioning( aUnoRequestRect );
|
|
}
|
|
catch( uno::Exception& )
|
|
{
|
|
OSL_FAIL( "Can't request resizing!" );
|
|
}
|
|
}
|
|
}
|
|
|
|
void VCLXHatchWindow::InplaceDeactivate()
|
|
{
|
|
if ( m_xController.is() )
|
|
{
|
|
// TODO: communicate with controller
|
|
}
|
|
}
|
|
|
|
|
|
css::awt::Size SAL_CALL VCLXHatchWindow::getHatchBorderSize()
|
|
{
|
|
return aHatchBorderSize;
|
|
}
|
|
|
|
void SAL_CALL VCLXHatchWindow::setHatchBorderSize( const css::awt::Size& _hatchbordersize )
|
|
{
|
|
if ( pHatchWindow )
|
|
{
|
|
aHatchBorderSize = _hatchbordersize;
|
|
pHatchWindow->SetHatchBorderPixel( Size( aHatchBorderSize.Width, aHatchBorderSize.Height ) );
|
|
}
|
|
}
|
|
|
|
void SAL_CALL VCLXHatchWindow::setController( const uno::Reference< embed::XHatchWindowController >& xController )
|
|
{
|
|
m_xController = xController;
|
|
}
|
|
|
|
void SAL_CALL VCLXHatchWindow::dispose()
|
|
{
|
|
pHatchWindow.clear();
|
|
VCLXWindow::dispose();
|
|
}
|
|
|
|
void SAL_CALL VCLXHatchWindow::addEventListener( const uno::Reference< lang::XEventListener >& xListener )
|
|
{
|
|
VCLXWindow::addEventListener( xListener );
|
|
}
|
|
|
|
void SAL_CALL VCLXHatchWindow::removeEventListener( const uno::Reference< lang::XEventListener >& xListener )
|
|
{
|
|
VCLXWindow::removeEventListener( xListener );
|
|
}
|
|
|
|
void VCLXHatchWindow::Activated()
|
|
{
|
|
if ( m_xController.is() )
|
|
m_xController->activated();
|
|
}
|
|
|
|
void VCLXHatchWindow::Deactivated()
|
|
{
|
|
if ( m_xController.is() )
|
|
m_xController->deactivated();
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|