1 /*************************************************************************
3 * OpenOffice.org - a multi-platform office productivity suite
9 * last change: $Author$ $Date$
11 * The Contents of this file are made available subject to
12 * the terms of GNU Lesser General Public License Version 2.1.
15 * GNU Lesser General Public License Version 2.1
16 * =============================================
17 * Copyright 2005 by Sun Microsystems, Inc.
18 * 901 San Antonio Road, Palo Alto, CA 94303, USA
20 * This library is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU Lesser General Public
22 * License version 2.1, as published by the Free Software Foundation.
24 * This library is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 * Lesser General Public License for more details.
29 * You should have received a copy of the GNU Lesser General Public
30 * License along with this library; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
34 ************************************************************************/
35 #include <vbahelper/helperdecl.hxx>
36 #include "vbahyperlink.hxx"
37 #include <com/sun/star/container/XIndexAccess.hpp>
38 #include <com/sun/star/text/XTextFieldsSupplier.hpp>
39 #include <com/sun/star/container/XEnumerationAccess.hpp>
40 #include "vbarange.hxx"
42 using namespace ::ooo::vba
;
43 using namespace ::com::sun::star
;
45 ScVbaHyperlink::ScVbaHyperlink( uno::Sequence
< uno::Any
> const & args
,
46 uno::Reference
< uno::XComponentContext
> const & xContext
) throw ( lang::IllegalArgumentException
) : HyperlinkImpl_BASE( getXSomethingFromArgs
< XHelperInterface
>( args
, 0 ), xContext
), mxCell( getXSomethingFromArgs
< table::XCell
>( args
, 1, false ) )
48 mxCell
= getXSomethingFromArgs
< table::XCell
>( args
, 1, false );
49 uno::Reference
< text::XTextFieldsSupplier
> xTextFields( mxCell
, uno::UNO_QUERY_THROW
);
50 uno::Reference
< container::XIndexAccess
> xIndex( xTextFields
->getTextFields(), uno::UNO_QUERY_THROW
);
51 mxTextField
.set( xIndex
->getByIndex(0), uno::UNO_QUERY_THROW
);
54 ScVbaHyperlink::~ScVbaHyperlink()
59 ScVbaHyperlink::getAddress() throw (css::uno::RuntimeException
)
61 rtl::OUString aAddress
;
62 uno::Any aValue
= mxTextField
->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "URL" ) ) );
68 ScVbaHyperlink::setAddress( const ::rtl::OUString
& rAddress
) throw (css::uno::RuntimeException
)
72 mxTextField
->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "URL" ) ), aValue
);
76 ScVbaHyperlink::getName() throw (css::uno::RuntimeException
)
78 // it seems this attribute is same as TextToDisplay
79 return getTextToDisplay();
83 ScVbaHyperlink::setName( const ::rtl::OUString
& rName
) throw (css::uno::RuntimeException
)
85 setTextToDisplay( rName
);
89 ScVbaHyperlink::getTextToDisplay() throw (css::uno::RuntimeException
)
91 rtl::OUString aTextToDisplay
;
92 uno::Any aValue
= mxTextField
->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Representation" ) ) );
93 aValue
>>= aTextToDisplay
;
94 return aTextToDisplay
;
98 ScVbaHyperlink::setTextToDisplay( const ::rtl::OUString
& rTextToDisplay
) throw (css::uno::RuntimeException
)
101 aValue
<<= rTextToDisplay
;
102 mxTextField
->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Representation" ) ), aValue
);
105 css::uno::Reference
< ov::excel::XRange
> SAL_CALL
ScVbaHyperlink::Range() throw (css::uno::RuntimeException
)
107 uno::Reference
< table::XCellRange
> xRange( mxCell
,uno::UNO_QUERY_THROW
);
108 // FIXME: need to pass current worksheet as the parent of XRange.
109 return uno::Reference
< excel::XRange
>( new ScVbaRange( uno::Reference
< XHelperInterface
> (), mxContext
, xRange
) );
113 ScVbaHyperlink::getServiceImplName()
115 static rtl::OUString
sImplName( RTL_CONSTASCII_USTRINGPARAM("ScVbaHyperlink") );
119 uno::Sequence
< rtl::OUString
>
120 ScVbaHyperlink::getServiceNames()
122 static uno::Sequence
< rtl::OUString
> aServiceNames
;
123 if ( aServiceNames
.getLength() == 0 )
125 aServiceNames
.realloc( 1 );
126 aServiceNames
[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.excel.Hyperlink" ) );
128 return aServiceNames
;
133 namespace sdecl
= comphelper::service_decl
;
134 sdecl::vba_service_class_
<ScVbaHyperlink
, sdecl::with_args
<true> > serviceImpl
;
135 extern sdecl::ServiceDecl
const serviceDecl(
138 "ooo.vba.excel.Hyperlink" );