LibreOffice Module editeng (master) 1
editsource.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
20#pragma once
21
22#include <editeng/unoedsrc.hxx>
23
24class EditEngine;
26
28{
29public:
30 explicit SvxEditEngineSource( EditEngine* pEditEngine );
31 virtual ~SvxEditEngineSource() override;
32
33 virtual std::unique_ptr<SvxEditSource> Clone() const override;
34 virtual SvxTextForwarder* GetTextForwarder() override;
35 virtual void UpdateData() override;
36
37private:
39
41};
42
43/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual std::unique_ptr< SvxEditSource > Clone() const override
Returns a new reference to the same object. This is a shallow copy.
Definition: xmltxtexp.cxx:106
virtual void UpdateData() override
Write back data to model.
Definition: xmltxtexp.cxx:117
virtual SvxTextForwarder * GetTextForwarder() override
Query the text forwarder.
Definition: xmltxtexp.cxx:111
rtl::Reference< SvxEditEngineSourceImpl > mxImpl
Definition: editsource.hxx:40
SvxEditEngineSource(EditEngine *pEditEngine)
Definition: xmltxtexp.cxx:92
virtual ~SvxEditEngineSource() override
Definition: xmltxtexp.cxx:102
Wrapper class for unified EditEngine/Outliner access.
Definition: unoedsrc.hxx:56
Contains an EditEngine or an Outliner and unifies access to them.
Definition: unoedsrc.hxx:142