Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 :
21 : #include "AccessibleViewForwarder.hxx"
22 : #include "AccessibleChartView.hxx"
23 :
24 : #include <vcl/window.hxx>
25 :
26 : using namespace ::com::sun::star;
27 :
28 :
29 : namespace chart
30 : {
31 :
32 0 : AccessibleViewForwarder::AccessibleViewForwarder( AccessibleChartView* pAccChartView, Window* pWindow )
33 : :m_pAccChartView( pAccChartView )
34 : ,m_pWindow( pWindow )
35 0 : ,m_aMapMode( MAP_100TH_MM )
36 : {
37 0 : }
38 :
39 0 : AccessibleViewForwarder::~AccessibleViewForwarder()
40 : {
41 0 : }
42 :
43 : // ________ IAccessibleViewforwarder ________
44 :
45 0 : sal_Bool AccessibleViewForwarder::IsValid() const
46 : {
47 0 : return sal_True;
48 : }
49 :
50 0 : Rectangle AccessibleViewForwarder::GetVisibleArea() const
51 : {
52 0 : Rectangle aVisibleArea;
53 0 : if ( m_pWindow )
54 : {
55 0 : aVisibleArea.SetPos( Point( 0, 0 ) );
56 0 : aVisibleArea.SetSize( m_pWindow->GetOutputSizePixel() );
57 0 : aVisibleArea = m_pWindow->PixelToLogic( aVisibleArea, m_aMapMode );
58 : }
59 0 : return aVisibleArea;
60 : }
61 :
62 0 : Point AccessibleViewForwarder::LogicToPixel( const Point& rPoint ) const
63 : {
64 0 : Point aPoint;
65 0 : if ( m_pAccChartView && m_pWindow )
66 : {
67 0 : awt::Point aLocation = m_pAccChartView->getLocationOnScreen();
68 0 : Point aTopLeft( aLocation.X, aLocation.Y );
69 0 : aPoint = m_pWindow->LogicToPixel( rPoint, m_aMapMode ) + aTopLeft;
70 : }
71 0 : return aPoint;
72 : }
73 :
74 0 : Size AccessibleViewForwarder::LogicToPixel( const Size& rSize ) const
75 : {
76 0 : Size aSize;
77 0 : if ( m_pWindow )
78 : {
79 0 : aSize = m_pWindow->LogicToPixel( rSize, m_aMapMode );
80 : }
81 0 : return aSize;
82 : }
83 :
84 0 : Point AccessibleViewForwarder::PixelToLogic( const Point& rPoint ) const
85 : {
86 0 : Point aPoint;
87 0 : if ( m_pAccChartView && m_pWindow )
88 : {
89 0 : awt::Point aLocation = m_pAccChartView->getLocationOnScreen();
90 0 : Point aTopLeft( aLocation.X, aLocation.Y );
91 0 : aPoint = m_pWindow->PixelToLogic( rPoint - aTopLeft, m_aMapMode );
92 : }
93 0 : return aPoint;
94 : }
95 :
96 0 : Size AccessibleViewForwarder::PixelToLogic( const Size& rSize ) const
97 : {
98 0 : Size aSize;
99 0 : if ( m_pWindow )
100 : {
101 0 : aSize = m_pWindow->PixelToLogic( rSize, m_aMapMode );
102 : }
103 0 : return aSize;
104 : }
105 :
106 : } // namespace chart
107 :
108 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|