ITEM: Refactor ItemType
[LibreOffice.git] / sw / source / ui / vba / vbabookmark.cxx
blobc94e0a282949cce0ec9521239e830e9662767c4b
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 .
19 #include "vbabookmark.hxx"
20 #include <com/sun/star/text/XBookmarksSupplier.hpp>
21 #include <com/sun/star/text/XTextDocument.hpp>
22 #include <com/sun/star/text/XTextContent.hpp>
23 #include <com/sun/star/text/XTextRange.hpp>
24 #include <com/sun/star/view/XSelectionSupplier.hpp>
25 #include <utility>
26 #include "vbarange.hxx"
27 #include <unotxdoc.hxx>
29 using namespace ::ooo::vba;
30 using namespace ::com::sun::star;
32 SwVbaBookmark::SwVbaBookmark( const uno::Reference< ooo::vba::XHelperInterface >& rParent, const uno::Reference< uno::XComponentContext >& rContext,
33 rtl::Reference< SwXTextDocument > xModel, OUString aBookmarkName ) :
34 SwVbaBookmark_BASE( rParent, rContext ), mxModel(std::move( xModel )), maBookmarkName(std::move( aBookmarkName )), mbValid( true )
36 mxBookmark.set( mxModel->getBookmarks()->getByName( maBookmarkName ), uno::UNO_QUERY_THROW );
39 SwVbaBookmark::~SwVbaBookmark()
43 void SwVbaBookmark::checkVality()
45 if( !mbValid )
46 throw uno::RuntimeException(u"The bookmark is not valid"_ustr );
49 void SAL_CALL SwVbaBookmark::Delete()
51 checkVality();
52 mxModel->getText()->removeTextContent( mxBookmark );
53 mbValid = false;
56 void SAL_CALL SwVbaBookmark::Select()
58 checkVality();
59 uno::Reference< view::XSelectionSupplier > xSelectSupp( mxModel->getCurrentController(), uno::UNO_QUERY_THROW );
60 xSelectSupp->select( uno::Any( mxBookmark ) );
63 OUString SAL_CALL SwVbaBookmark::getName()
65 return maBookmarkName;
68 void SAL_CALL SwVbaBookmark::setName( const OUString& _name )
70 uno::Reference< container::XNamed > xNamed( mxBookmark, uno::UNO_QUERY_THROW );
71 xNamed->setName( _name );
74 uno::Any SAL_CALL SwVbaBookmark::Range()
76 uno::Reference< text::XTextContent > xTextContent( mxBookmark, uno::UNO_SET_THROW );
77 uno::Reference< text::XTextRange > xTextRange( xTextContent->getAnchor(), uno::UNO_SET_THROW );
78 return uno::Any( uno::Reference< word::XRange>( new SwVbaRange( this, mxContext, mxModel, xTextRange->getStart(), xTextRange->getEnd(), xTextRange->getText() ) ) );
81 OUString
82 SwVbaBookmark::getServiceImplName()
84 return u"SwVbaBookmark"_ustr;
87 uno::Sequence< OUString >
88 SwVbaBookmark::getServiceNames()
90 static uno::Sequence< OUString > const aServiceNames
92 u"ooo.vba.word.Bookmark"_ustr
94 return aServiceNames;
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */