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 <com/sun/star/uno/XComponentContext.hpp>
21 : #include <toolkit/awt/vclxpointer.hxx>
22 : #include <toolkit/helper/macros.hxx>
23 : #include <cppuhelper/typeprovider.hxx>
24 :
25 :
26 : // class VCLXPointer
27 :
28 0 : VCLXPointer::VCLXPointer()
29 : {
30 0 : }
31 :
32 0 : VCLXPointer::~VCLXPointer()
33 : {
34 0 : }
35 :
36 : // ::com::sun::star::uno::XInterface
37 0 : ::com::sun::star::uno::Any VCLXPointer::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception)
38 : {
39 : ::com::sun::star::uno::Any aRet = ::cppu::queryInterface( rType,
40 : (static_cast< ::com::sun::star::awt::XPointer* >(this)),
41 : (static_cast< ::com::sun::star::lang::XUnoTunnel* >(this)),
42 0 : (static_cast< ::com::sun::star::lang::XTypeProvider* >(this)) );
43 0 : return (aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ));
44 : }
45 :
46 : // ::com::sun::star::lang::XUnoTunnel
47 0 : IMPL_XUNOTUNNEL( VCLXPointer )
48 :
49 : // ::com::sun::star::lang::XTypeProvider
50 0 : IMPL_XTYPEPROVIDER_START( VCLXPointer )
51 0 : getCppuType( ( ::com::sun::star::uno::Reference< ::com::sun::star::awt::XPointer>* ) NULL )
52 0 : IMPL_XTYPEPROVIDER_END
53 :
54 0 : void VCLXPointer::setType( sal_Int32 nType ) throw(::com::sun::star::uno::RuntimeException, std::exception)
55 : {
56 0 : ::osl::Guard< ::osl::Mutex > aGuard( GetMutex() );
57 :
58 0 : maPointer = Pointer( (PointerStyle)nType );
59 0 : }
60 :
61 0 : sal_Int32 VCLXPointer::getType() throw(::com::sun::star::uno::RuntimeException, std::exception)
62 : {
63 0 : ::osl::Guard< ::osl::Mutex > aGuard( GetMutex() );
64 :
65 0 : return (sal_Int32)maPointer.GetStyle();
66 : }
67 :
68 : extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
69 0 : stardiv_Toolkit_VCLXPointer_get_implementation(
70 : css::uno::XComponentContext *,
71 : css::uno::Sequence<css::uno::Any> const &)
72 : {
73 0 : return cppu::acquire(new VCLXPointer());
74 : }
75 :
76 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|