android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / source / ui / vba / vbabookmark.cxx
blobaecc0760bc1f337d5ae6eb011d3107ca14fcc5b3
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"
28 using namespace ::ooo::vba;
29 using namespace ::com::sun::star;
31 SwVbaBookmark::SwVbaBookmark( const uno::Reference< ooo::vba::XHelperInterface >& rParent, const uno::Reference< uno::XComponentContext >& rContext,
32 css::uno::Reference< frame::XModel > xModel, OUString aBookmarkName ) :
33 SwVbaBookmark_BASE( rParent, rContext ), mxModel(std::move( xModel )), maBookmarkName(std::move( aBookmarkName )), mbValid( true )
35 uno::Reference< text::XBookmarksSupplier > xBookmarksSupplier( mxModel, uno::UNO_QUERY_THROW );
36 mxBookmark.set( xBookmarksSupplier->getBookmarks()->getByName( maBookmarkName ), uno::UNO_QUERY_THROW );
39 SwVbaBookmark::~SwVbaBookmark()
43 void SwVbaBookmark::checkVality()
45 if( !mbValid )
46 throw uno::RuntimeException("The bookmark is not valid" );
49 void SAL_CALL SwVbaBookmark::Delete()
51 checkVality();
52 uno::Reference< text::XTextDocument > xTextDocument( mxModel, uno::UNO_QUERY_THROW );
53 xTextDocument->getText()->removeTextContent( mxBookmark );
54 mbValid = false;
57 void SAL_CALL SwVbaBookmark::Select()
59 checkVality();
60 uno::Reference< view::XSelectionSupplier > xSelectSupp( mxModel->getCurrentController(), uno::UNO_QUERY_THROW );
61 xSelectSupp->select( uno::Any( mxBookmark ) );
64 OUString SAL_CALL SwVbaBookmark::getName()
66 return maBookmarkName;
69 void SAL_CALL SwVbaBookmark::setName( const OUString& _name )
71 uno::Reference< container::XNamed > xNamed( mxBookmark, uno::UNO_QUERY_THROW );
72 xNamed->setName( _name );
75 uno::Any SAL_CALL SwVbaBookmark::Range()
77 uno::Reference< text::XTextContent > xTextContent( mxBookmark, uno::UNO_SET_THROW );
78 uno::Reference< text::XTextDocument > xTextDocument( mxModel, uno::UNO_QUERY_THROW );
79 uno::Reference< text::XTextRange > xTextRange( xTextContent->getAnchor(), uno::UNO_SET_THROW );
80 return uno::Any( uno::Reference< word::XRange>( new SwVbaRange( this, mxContext, xTextDocument, xTextRange->getStart(), xTextRange->getEnd(), xTextRange->getText() ) ) );
83 OUString
84 SwVbaBookmark::getServiceImplName()
86 return "SwVbaBookmark";
89 uno::Sequence< OUString >
90 SwVbaBookmark::getServiceNames()
92 static uno::Sequence< OUString > const aServiceNames
94 "ooo.vba.word.Bookmark"
96 return aServiceNames;
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */