nss: upgrade to release 3.73
[LibreOffice.git] / framework / source / helper / dockingareadefaultacceptor.cxx
blobd167bc11157fbe6707125e1c67b7a166a6f5b115
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <helper/dockingareadefaultacceptor.hxx>
22 #include <com/sun/star/awt/XDevice.hpp>
23 #include <com/sun/star/awt/PosSize.hpp>
25 #include <vcl/svapp.hxx>
27 namespace framework{
29 using namespace ::com::sun::star::container;
30 using namespace ::com::sun::star::frame;
31 using namespace ::com::sun::star::lang;
32 using namespace ::com::sun::star::uno;
33 using namespace ::cppu;
34 using namespace ::osl;
36 // constructor
38 DockingAreaDefaultAcceptor::DockingAreaDefaultAcceptor( const css::uno::Reference< XFrame >& xOwner )
39 : m_xOwner ( xOwner )
43 // destructor
45 DockingAreaDefaultAcceptor::~DockingAreaDefaultAcceptor()
49 // XDockingAreaAcceptor
50 css::uno::Reference< css::awt::XWindow > SAL_CALL DockingAreaDefaultAcceptor::getContainerWindow()
52 SolarMutexGuard g;
54 // Try to "lock" the frame for access to taskscontainer.
55 css::uno::Reference< XFrame > xFrame( m_xOwner );
56 //TODO: check xFrame for null?
57 css::uno::Reference< css::awt::XWindow > xContainerWindow( xFrame->getContainerWindow() );
59 return xContainerWindow;
62 sal_Bool SAL_CALL DockingAreaDefaultAcceptor::requestDockingAreaSpace( const css::awt::Rectangle& RequestedSpace )
64 // Try to "lock" the frame for access to taskscontainer.
65 css::uno::Reference< XFrame > xFrame( m_xOwner );
67 if ( xFrame.is() )
69 css::uno::Reference< css::awt::XWindow > xContainerWindow( xFrame->getContainerWindow() );
70 css::uno::Reference< css::awt::XWindow > xComponentWindow( xFrame->getComponentWindow() );
72 if ( xContainerWindow.is() && xComponentWindow.is() )
74 css::uno::Reference< css::awt::XDevice > xDevice( xContainerWindow, css::uno::UNO_QUERY );
75 // Convert relative size to output size.
76 css::awt::Rectangle aRectangle = xContainerWindow->getPosSize();
77 css::awt::DeviceInfo aInfo = xDevice->getInfo();
78 css::awt::Size aSize ( aRectangle.Width - aInfo.LeftInset - aInfo.RightInset ,
79 aRectangle.Height - aInfo.TopInset - aInfo.BottomInset );
81 css::awt::Size aMinSize( 0, 0 ); // = xLayoutConstraints->getMinimumSize();
83 // Check if request border space would decrease component window size below minimum size
84 if ((( aSize.Width - RequestedSpace.X - RequestedSpace.Width ) < aMinSize.Width ) ||
85 (( aSize.Height - RequestedSpace.Y - RequestedSpace.Height ) < aMinSize.Height ) )
86 return false;
88 return true;
92 return false;
95 void SAL_CALL DockingAreaDefaultAcceptor::setDockingAreaSpace( const css::awt::Rectangle& BorderSpace )
97 SolarMutexGuard g;
99 // Try to "lock" the frame for access to taskscontainer.
100 css::uno::Reference< XFrame > xFrame( m_xOwner );
101 if ( !xFrame.is() )
102 return;
104 css::uno::Reference< css::awt::XWindow > xContainerWindow( xFrame->getContainerWindow() );
105 css::uno::Reference< css::awt::XWindow > xComponentWindow( xFrame->getComponentWindow() );
107 if ( !(xContainerWindow.is() && xComponentWindow.is()) )
108 return;
110 css::uno::Reference< css::awt::XDevice > xDevice( xContainerWindow, css::uno::UNO_QUERY );
111 // Convert relative size to output size.
112 css::awt::Rectangle aRectangle = xContainerWindow->getPosSize();
113 css::awt::DeviceInfo aInfo = xDevice->getInfo();
114 css::awt::Size aSize ( aRectangle.Width - aInfo.LeftInset - aInfo.RightInset ,
115 aRectangle.Height - aInfo.TopInset - aInfo.BottomInset );
116 css::awt::Size aMinSize( 0, 0 );// = xLayoutConstraints->getMinimumSize();
118 // Check if request border space would decrease component window size below minimum size
119 sal_Int32 nWidth = aSize.Width - BorderSpace.X - BorderSpace.Width;
120 sal_Int32 nHeight = aSize.Height - BorderSpace.Y - BorderSpace.Height;
122 if (( nWidth > aMinSize.Width ) && ( nHeight > aMinSize.Height ))
124 // Resize our component window.
125 xComponentWindow->setPosSize( BorderSpace.X, BorderSpace.Y, nWidth, nHeight, css::awt::PosSize::POSSIZE );
129 } // namespace framework
131 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */