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 : #include <tools/urlobj.hxx>
21 : #include <svx/fmglob.hxx>
22 : #include <svx/svdouno.hxx>
23 : #include <svx/svdpagv.hxx>
24 : #include <sfx2/objsh.hxx>
25 : #include <sfx2/docfile.hxx>
26 :
27 : #include <com/sun/star/form/FormButtonType.hpp>
28 : #include <com/sun/star/beans/XPropertySet.hpp>
29 : #include <com/sun/star/awt/XControlModel.hpp>
30 :
31 : using namespace com::sun::star;
32 :
33 : #include "tabvwsh.hxx"
34 : #include "document.hxx"
35 : #include "drawview.hxx"
36 : #include "globstr.hrc"
37 : #include <avmedia/mediawindow.hxx>
38 :
39 : //------------------------------------------------------------------------
40 :
41 0 : void ScTabViewShell::InsertURLButton( const String& rName, const String& rURL,
42 : const String& rTarget,
43 : const Point* pInsPos )
44 : {
45 : // Tabelle geschuetzt ?
46 :
47 0 : ScViewData* pViewData = GetViewData();
48 0 : ScDocument* pDoc = pViewData->GetDocument();
49 0 : SCTAB nTab = pViewData->GetTabNo();
50 0 : if ( pDoc->IsTabProtected(nTab) )
51 : {
52 0 : ErrorMessage(STR_PROTECTIONERR);
53 : return;
54 : }
55 :
56 0 : MakeDrawLayer();
57 :
58 0 : ScTabView* pView = pViewData->GetView();
59 0 : ScDrawView* pDrView = pView->GetScDrawView();
60 0 : SdrModel* pModel = pDrView->GetModel();
61 :
62 : SdrObject* pObj = SdrObjFactory::MakeNewObject(FmFormInventor, OBJ_FM_BUTTON,
63 0 : pDrView->GetSdrPageView()->GetPage(), pModel);
64 0 : SdrUnoObj* pUnoCtrl = PTR_CAST(SdrUnoObj, pObj);
65 :
66 0 : uno::Reference<awt::XControlModel> xControlModel = pUnoCtrl->GetUnoControlModel();
67 : OSL_ENSURE( xControlModel.is(), "UNO-Control ohne Model" );
68 0 : if( !xControlModel.is() )
69 : return;
70 :
71 0 : uno::Reference< beans::XPropertySet > xPropSet( xControlModel, uno::UNO_QUERY );
72 0 : uno::Any aAny;
73 :
74 0 : aAny <<= rtl::OUString(rName);
75 0 : xPropSet->setPropertyValue( rtl::OUString( "Label" ), aAny );
76 :
77 0 : ::rtl::OUString aTmp = INetURLObject::GetAbsURL( pDoc->GetDocumentShell()->GetMedium()->GetBaseURL(), rURL );
78 0 : aAny <<= aTmp;
79 0 : xPropSet->setPropertyValue( rtl::OUString( "TargetURL" ), aAny );
80 :
81 0 : if( rTarget.Len() )
82 : {
83 0 : aAny <<= rtl::OUString(rTarget);
84 0 : xPropSet->setPropertyValue( rtl::OUString( "TargetFrame" ), aAny );
85 : }
86 :
87 0 : form::FormButtonType eButtonType = form::FormButtonType_URL;
88 0 : aAny <<= eButtonType;
89 0 : xPropSet->setPropertyValue( rtl::OUString( "ButtonType" ), aAny );
90 :
91 0 : if ( ::avmedia::MediaWindow::isMediaURL( rURL ) )
92 : {
93 0 : aAny <<= sal_True;
94 0 : xPropSet->setPropertyValue( rtl::OUString( "DispatchURLInternal" ), aAny );
95 : }
96 :
97 0 : Point aPos;
98 0 : if (pInsPos)
99 0 : aPos = *pInsPos;
100 : else
101 0 : aPos = GetInsertPos();
102 :
103 : // Groesse wie in 3.1:
104 0 : Size aSize = GetActiveWin()->PixelToLogic(Size(140, 20));
105 :
106 0 : if ( pDoc->IsNegativePage(nTab) )
107 0 : aPos.X() -= aSize.Width();
108 :
109 0 : pObj->SetLogicRect(Rectangle(aPos, aSize));
110 :
111 : // am alten VC-Button musste die Position/Groesse nochmal explizit
112 : // gesetzt werden - das scheint mit UnoControls nicht noetig zu sein
113 :
114 : // nicht markieren wenn Ole
115 0 : pDrView->InsertObjectSafe( pObj, *pDrView->GetSdrPageView() );
116 15 : }
117 :
118 :
119 :
120 :
121 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|