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 <svx/sdr/contact/objectcontactofpageview.hxx>
22 : #include <svx/sdr/contact/viewobjectcontactofsdrmediaobj.hxx>
23 : #include <svx/sdr/contact/viewcontactofsdrmediaobj.hxx>
24 : #include <svx/sdr/contact/displayinfo.hxx>
25 : #include <svx/svdomedia.hxx>
26 : #include <svx/svdpagv.hxx>
27 : #include <vcl/outdev.hxx>
28 : #include <vcl/window.hxx>
29 : #include <avmedia/mediaitem.hxx>
30 : #include "sdrmediawindow.hxx"
31 : #include <svx/sdrpagewindow.hxx>
32 : #include <svx/sdrpaintwindow.hxx>
33 :
34 : //////////////////////////////////////////////////////////////////////////////
35 :
36 : namespace sdr { namespace contact {
37 :
38 : // ----------------------------------
39 : // - ViewObjectContactOfSdrMediaObj -
40 : // ----------------------------------
41 :
42 0 : ViewObjectContactOfSdrMediaObj::ViewObjectContactOfSdrMediaObj( ObjectContact& rObjectContact,
43 : ViewContact& rViewContact,
44 : const ::avmedia::MediaItem& rMediaItem ) :
45 : ViewObjectContactOfSdrObj( rObjectContact, rViewContact ),
46 0 : mpMediaWindow( NULL )
47 : {
48 0 : Window* pWindow = getWindow();
49 :
50 0 : if( pWindow )
51 : {
52 0 : mpMediaWindow = new SdrMediaWindow( pWindow, *this );
53 0 : mpMediaWindow->hide();
54 0 : executeMediaItem( rMediaItem );
55 : }
56 0 : }
57 :
58 : // ------------------------------------------------------------------------------
59 :
60 0 : ViewObjectContactOfSdrMediaObj::~ViewObjectContactOfSdrMediaObj()
61 : {
62 0 : delete mpMediaWindow;
63 0 : mpMediaWindow = NULL;
64 0 : }
65 :
66 : // ------------------------------------------------------------------------------
67 :
68 0 : Window* ViewObjectContactOfSdrMediaObj::getWindow() const
69 : {
70 0 : Window* pRetval = 0;
71 :
72 0 : const ObjectContactOfPageView* pObjectContactOfPageView = dynamic_cast< const ObjectContactOfPageView* >(&GetObjectContact());
73 :
74 0 : if(pObjectContactOfPageView)
75 : {
76 0 : const SdrPageWindow& rPageWindow = pObjectContactOfPageView->GetPageWindow();
77 0 : const SdrPaintWindow* pPaintWindow = &rPageWindow.GetPaintWindow();
78 :
79 0 : if(rPageWindow.GetOriginalPaintWindow())
80 : {
81 : // #i83183# prefer OriginalPaintWindow if set; this is
82 : // the real target device. GetPaintWindow() may return
83 : // the current buffer device instead
84 0 : pPaintWindow = rPageWindow.GetOriginalPaintWindow();
85 : }
86 :
87 0 : OutputDevice& rOutDev = pPaintWindow->GetOutputDevice();
88 :
89 0 : if(OUTDEV_WINDOW == rOutDev.GetOutDevType())
90 : {
91 0 : pRetval = static_cast< Window* >(&rOutDev);
92 : }
93 : }
94 :
95 0 : return pRetval;
96 : }
97 :
98 : // ------------------------------------------------------------------------------
99 :
100 0 : Size ViewObjectContactOfSdrMediaObj::getPreferredSize() const
101 : {
102 0 : Size aRet;
103 :
104 0 : if( mpMediaWindow )
105 0 : aRet = mpMediaWindow->getPreferredSize();
106 :
107 0 : return aRet;
108 : }
109 :
110 : // ------------------------------------------------------------------------------
111 :
112 0 : void ViewObjectContactOfSdrMediaObj::updateMediaItem( ::avmedia::MediaItem& rItem ) const
113 : {
114 0 : if( mpMediaWindow )
115 : {
116 0 : mpMediaWindow->updateMediaItem( rItem );
117 :
118 : // show/hide is now dependent of play state
119 0 : if(avmedia::MEDIASTATE_STOP == rItem.getState())
120 : {
121 0 : mpMediaWindow->hide();
122 : }
123 : else
124 : {
125 0 : basegfx::B2DRange aViewRange(getObjectRange());
126 0 : aViewRange.transform(GetObjectContact().getViewInformation2D().getViewTransformation());
127 :
128 : const Rectangle aViewRectangle(
129 0 : (sal_Int32)floor(aViewRange.getMinX()), (sal_Int32)floor(aViewRange.getMinY()),
130 0 : (sal_Int32)ceil(aViewRange.getMaxX()), (sal_Int32)ceil(aViewRange.getMaxY()));
131 :
132 0 : mpMediaWindow->setPosSize(aViewRectangle);
133 0 : mpMediaWindow->show();
134 : }
135 : }
136 0 : }
137 :
138 : // ------------------------------------------------------------------------------
139 :
140 0 : void ViewObjectContactOfSdrMediaObj::executeMediaItem( const ::avmedia::MediaItem& rItem )
141 : {
142 0 : if( mpMediaWindow )
143 : {
144 0 : ::avmedia::MediaItem aUpdatedItem;
145 :
146 0 : mpMediaWindow->executeMediaItem( rItem );
147 :
148 : // query new properties after trying to set the new properties
149 0 : updateMediaItem( aUpdatedItem );
150 0 : static_cast< ViewContactOfSdrMediaObj& >( GetViewContact() ).mediaPropertiesChanged( aUpdatedItem );
151 : }
152 0 : }
153 :
154 : // ------------------------------------------------------------------------------
155 :
156 : }} // end of namespace sdr::contact
157 :
158 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|