1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
20 #ifndef SC_EDITSRC_HXX
21 #define SC_EDITSRC_HXX
23 #include "address.hxx"
24 #include <editeng/unoedsrc.hxx>
25 #include <svl/lstner.hxx>
29 class ScEditEngineDefaulter
;
30 class SvxEditEngineForwarder
;
34 class ScHeaderFooterTextData
;
35 class ScAccessibleTextData
;
38 class ScEditSource
: public SvxEditSource
41 virtual ScEditEngineDefaulter
* GetEditEngine() = 0;
45 * ScHeaderFooterTextObj keeps the authoritative copy of
46 * ScHeaderFooterTextData that this class holds reference to. It's a
47 * reference instead of a copy to avoid broadcasting changes to the
50 class ScHeaderFooterEditSource
: public ScEditSource
53 ScHeaderFooterTextData
& mrTextData
;
56 ScHeaderFooterEditSource(ScHeaderFooterTextData
& rData
);
57 virtual ~ScHeaderFooterEditSource();
59 // GetEditEngine is needed because the forwarder doesn't have field functions
60 virtual ScEditEngineDefaulter
* GetEditEngine();
62 virtual SvxEditSource
* Clone() const;
63 virtual SvxTextForwarder
* GetTextForwarder();
64 virtual void UpdateData();
68 * Data (incl. EditEngine) for cell EditSource is now shared in
71 * ScCellEditSource with local copy of ScCellTextData is used by
72 * ScCellFieldsObj, ScCellFieldObj.
74 class ScCellEditSource
: public ScEditSource
77 ScCellTextData
* pCellTextData
;
80 ScCellEditSource(ScDocShell
* pDocSh
, const ScAddress
& rP
);
81 virtual ~ScCellEditSource();
83 // GetEditEngine is needed because the forwarder doesn't have field functions
84 virtual ScEditEngineDefaulter
* GetEditEngine();
86 virtual SvxEditSource
* Clone() const;
87 virtual SvxTextForwarder
* GetTextForwarder();
89 virtual void UpdateData();
91 void SetDoUpdateData(bool bValue
);
95 class ScAnnotationEditSource
: public SvxEditSource
, public SfxListener
98 ScDocShell
* pDocShell
;
100 ScEditEngineDefaulter
* pEditEngine
;
101 SvxEditEngineForwarder
* pForwarder
;
104 SdrObject
* GetCaptionObj();
106 ScAnnotationEditSource(ScDocShell
* pDocSh
, const ScAddress
& rP
);
107 virtual ~ScAnnotationEditSource();
109 virtual SvxEditSource
* Clone() const ;
110 virtual SvxTextForwarder
* GetTextForwarder();
111 virtual void UpdateData();
113 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
);
117 // EditSource with a shared forwarder for all children of one text object
119 class ScSimpleEditSource
: public SvxEditSource
122 SvxTextForwarder
* pForwarder
;
125 ScSimpleEditSource( SvxTextForwarder
* pForw
);
126 virtual ~ScSimpleEditSource();
128 virtual SvxEditSource
* Clone() const ;
129 virtual SvxTextForwarder
* GetTextForwarder();
130 virtual void UpdateData();
134 class ScAccessibilityEditSource
: public SvxEditSource
137 SAL_WNODEPRECATED_DECLARATIONS_PUSH
138 ::std::auto_ptr
< ScAccessibleTextData
> mpAccessibleTextData
;
139 SAL_WNODEPRECATED_DECLARATIONS_POP
142 SAL_WNODEPRECATED_DECLARATIONS_PUSH
143 ScAccessibilityEditSource( ::std::auto_ptr
< ScAccessibleTextData
> pAccessibleCellTextData
);
144 SAL_WNODEPRECATED_DECLARATIONS_POP
145 virtual ~ScAccessibilityEditSource();
147 virtual SvxEditSource
* Clone() const;
148 virtual SvxTextForwarder
* GetTextForwarder();
149 virtual SvxViewForwarder
* GetViewForwarder();
150 virtual SvxEditViewForwarder
* GetEditViewForwarder( sal_Bool bCreate
= false );
151 virtual void UpdateData();
152 virtual SfxBroadcaster
& GetBroadcaster() const;
157 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */