LibreOffice Module sw (master) 1
vbabookmark.cxx
Go to the documentation of this file.
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#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
28using namespace ::ooo::vba;
29using namespace ::com::sun::star;
30
31SwVbaBookmark::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 )
34{
35 uno::Reference< text::XBookmarksSupplier > xBookmarksSupplier( mxModel, uno::UNO_QUERY_THROW );
36 mxBookmark.set( xBookmarksSupplier->getBookmarks()->getByName( maBookmarkName ), uno::UNO_QUERY_THROW );
37}
38
40{
41}
42
44{
45 if( !mbValid )
46 throw uno::RuntimeException("The bookmark is not valid" );
47}
48
49void SAL_CALL SwVbaBookmark::Delete()
50{
52 uno::Reference< text::XTextDocument > xTextDocument( mxModel, uno::UNO_QUERY_THROW );
53 xTextDocument->getText()->removeTextContent( mxBookmark );
54 mbValid = false;
55}
56
57void SAL_CALL SwVbaBookmark::Select()
58{
60 uno::Reference< view::XSelectionSupplier > xSelectSupp( mxModel->getCurrentController(), uno::UNO_QUERY_THROW );
61 xSelectSupp->select( uno::Any( mxBookmark ) );
62}
63
64OUString SAL_CALL SwVbaBookmark::getName()
65{
66 return maBookmarkName;
67}
68
69void SAL_CALL SwVbaBookmark::setName( const OUString& _name )
70{
71 uno::Reference< container::XNamed > xNamed( mxBookmark, uno::UNO_QUERY_THROW );
72 xNamed->setName( _name );
73}
74
76{
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() ) ) );
81}
82
83OUString
85{
86 return "SwVbaBookmark";
87}
88
89uno::Sequence< OUString >
91{
92 static uno::Sequence< OUString > const aServiceNames
93 {
94 "ooo.vba.word.Bookmark"
95 };
96 return aServiceNames;
97}
98
99/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
css::uno::Reference< css::frame::XModel2 > mxModel
css::uno::Reference< css::uno::XComponentContext > mxContext
virtual void SAL_CALL Select() override
Definition: vbabookmark.cxx:57
virtual void SAL_CALL setName(const OUString &) override
Definition: vbabookmark.cxx:69
virtual void SAL_CALL Delete() override
Definition: vbabookmark.cxx:49
OUString maBookmarkName
Definition: vbabookmark.hxx:33
virtual css::uno::Any SAL_CALL Range() override
Definition: vbabookmark.cxx:75
virtual ~SwVbaBookmark() override
Definition: vbabookmark.cxx:39
void checkVality()
Definition: vbabookmark.cxx:43
virtual css::uno::Sequence< OUString > getServiceNames() override
Definition: vbabookmark.cxx:90
css::uno::Reference< css::text::XTextContent > mxBookmark
Definition: vbabookmark.hxx:32
SwVbaBookmark(const css::uno::Reference< ooo::vba::XHelperInterface > &rParent, const css::uno::Reference< css::uno::XComponentContext > &rContext, css::uno::Reference< css::frame::XModel > xModel, OUString aName)
Definition: vbabookmark.cxx:31
css::uno::Reference< css::frame::XModel > mxModel
Definition: vbabookmark.hxx:31
virtual OUString getServiceImplName() override
Definition: vbabookmark.cxx:84
virtual OUString SAL_CALL getName() override
Definition: vbabookmark.cxx:64
Sequence< OUString > aServiceNames
bool mbValid
Reference< XModel > xModel