LibreOffice Module sw (master) 1
vbabookmark.hxx
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#ifndef INCLUDED_SW_SOURCE_UI_VBA_VBABOOKMARK_HXX
20#define INCLUDED_SW_SOURCE_UI_VBA_VBABOOKMARK_HXX
21
22#include <ooo/vba/word/XBookmark.hpp>
24#include <com/sun/star/text/XTextContent.hpp>
25
27
29{
30private:
31 css::uno::Reference<css::frame::XModel> mxModel;
32 css::uno::Reference<css::text::XTextContent> mxBookmark;
34 bool mbValid;
35
36private:
38 void checkVality();
39
40public:
42 SwVbaBookmark(const css::uno::Reference<ooo::vba::XHelperInterface>& rParent,
43 const css::uno::Reference<css::uno::XComponentContext>& rContext,
44 css::uno::Reference<css::frame::XModel> xModel, OUString aName);
45 virtual ~SwVbaBookmark() override;
46
47 // Methods
48 virtual OUString SAL_CALL getName() override;
49 virtual void SAL_CALL setName(const OUString&) override;
50 virtual void SAL_CALL Delete() override;
51 virtual void SAL_CALL Select() override;
52 virtual css::uno::Any SAL_CALL Range() override;
53
54 // XHelperInterface
55 virtual OUString getServiceImplName() override;
56 virtual css::uno::Sequence<OUString> getServiceNames() override;
57};
58#endif // INCLUDED_SW_SOURCE_UI_VBA_VBABOOKMARK_HXX
59
60/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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
InheritedHelperInterfaceWeakImpl< ooo::vba::word::XBookmark > SwVbaBookmark_BASE
Definition: vbabookmark.hxx:26