Version 7.1.7.1, tag libreoffice-7.1.7.1
[LibreOffice.git] / sfx2 / source / doc / objitem.cxx
blob911ec9a3330394849fcc7dc157d175cadc43c68c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <sfx2/objsh.hxx>
22 #include <sfx2/objitem.hxx>
23 #include <com/sun/star/lang/XUnoTunnel.hpp>
24 #include <com/sun/star/frame/XModel.hpp>
27 SfxPoolItem* SfxObjectShellItem::CreateDefault() { return new SfxObjectShellItem; }
29 SfxPoolItem* SfxObjectItem::CreateDefault() { return new SfxObjectItem; }
31 bool SfxObjectShellItem::operator==( const SfxPoolItem &rItem ) const
33 return SfxPoolItem::operator==(rItem) &&
34 static_cast<const SfxObjectShellItem&>(rItem).pObjSh == pObjSh;
37 SfxObjectShellItem* SfxObjectShellItem::Clone( SfxItemPool *) const
39 return new SfxObjectShellItem( *this );
42 bool SfxObjectShellItem::QueryValue( css::uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
44 if ( pObjSh )
46 // This item MUST provide a model. Please don't change this, there are UNO-based
47 // implementations which need it!!
48 rVal <<= pObjSh->GetModel();
50 else
52 rVal <<= css::uno::Reference< css::frame::XModel >();
54 return true;
57 bool SfxObjectShellItem::PutValue( const css::uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
59 // This item MUST have a model. Please don't change this, there are UNO-based
60 // implementations which need it!!
61 css::uno::Reference< css::frame::XModel > xModel;
63 if ( rVal >>= xModel )
65 pObjSh = SfxObjectShell::GetShellFromComponent(xModel);
66 return true;
69 return true;
72 SfxObjectItem::SfxObjectItem( sal_uInt16 nWhichId, SfxShell *pSh )
73 : SfxPoolItem( nWhichId ),
74 _pSh( pSh )
77 bool SfxObjectItem::operator==( const SfxPoolItem &rItem ) const
79 return SfxPoolItem::operator==(rItem) &&
80 static_cast<const SfxObjectItem&>(rItem)._pSh == _pSh;
83 SfxObjectItem* SfxObjectItem::Clone( SfxItemPool *) const
85 return new SfxObjectItem( *this );
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */