Line data Source code
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 : #ifndef INCLUDED_SW_SOURCE_CORE_INC_BOOKMRK_HXX
21 : #define INCLUDED_SW_SOURCE_CORE_INC_BOOKMRK_HXX
22 :
23 : #include <cppuhelper/weakref.hxx>
24 : #include <sfx2/Metadatable.hxx>
25 : #include <vcl/keycod.hxx>
26 : #include <boost/scoped_ptr.hpp>
27 : #include <boost/noncopyable.hpp>
28 : #include <map>
29 : #include <rtl/ustring.hxx>
30 : #include <IMark.hxx>
31 : #include <swserv.hxx>
32 :
33 : namespace com {
34 : namespace sun {
35 : namespace star {
36 : namespace text {
37 : class XTextContent;
38 : }
39 : }
40 : }
41 : }
42 :
43 : struct SwPosition; // fwd Decl. wg. UI
44 : class SwDoc;
45 :
46 : namespace sw {
47 : namespace mark {
48 : class MarkBase
49 : : virtual public IMark
50 : {
51 : public:
52 : //getters
53 5912134 : virtual SwPosition& GetMarkPos() const SAL_OVERRIDE
54 5912134 : { return *m_pPos1; }
55 3656614 : virtual const OUString& GetName() const SAL_OVERRIDE
56 3656614 : { return m_aName; }
57 3917667 : virtual SwPosition& GetOtherMarkPos() const SAL_OVERRIDE
58 : {
59 : OSL_PRECOND(IsExpanded(), "<SwPosition::GetOtherMarkPos(..)> - I have no other Pos set." );
60 3917667 : return *m_pPos2;
61 : }
62 2065337 : virtual SwPosition& GetMarkStart() const SAL_OVERRIDE
63 : {
64 2065337 : if( !IsExpanded() ) return GetMarkPos( );
65 1177304 : if ( GetMarkPos( ) < GetOtherMarkPos( ) )
66 1173095 : return GetMarkPos();
67 : else
68 4209 : return GetOtherMarkPos( );
69 : }
70 859138 : virtual SwPosition& GetMarkEnd() const SAL_OVERRIDE
71 : {
72 859138 : if( !IsExpanded() ) return GetMarkPos();
73 622337 : if ( GetMarkPos( ) >= GetOtherMarkPos( ) )
74 422 : return GetMarkPos( );
75 : else
76 621915 : return GetOtherMarkPos( );
77 : }
78 :
79 : virtual bool IsCoveringPosition(const SwPosition& rPos) const SAL_OVERRIDE;
80 4608386 : virtual bool IsExpanded() const SAL_OVERRIDE
81 4608386 : { return static_cast< bool >(m_pPos2); }
82 :
83 4677 : void SetName(const OUString& rName)
84 4677 : { m_aName = rName; }
85 : virtual void SetMarkPos(const SwPosition& rNewPos);
86 : virtual void SetOtherMarkPos(const SwPosition& rNewPos);
87 9 : virtual void ClearOtherMarkPos()
88 9 : { m_pPos2.reset(); }
89 :
90 : virtual OUString ToString( ) const SAL_OVERRIDE;
91 : virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE;
92 :
93 1908 : void Swap()
94 : {
95 1908 : if(m_pPos2)
96 1908 : m_pPos1.swap(m_pPos2);
97 1908 : }
98 :
99 106134 : virtual void InitDoc(SwDoc* const)
100 : {
101 106134 : }
102 :
103 : virtual ~MarkBase();
104 :
105 : const ::com::sun::star::uno::WeakReference<
106 7216 : ::com::sun::star::text::XTextContent> & GetXBookmark() const
107 7216 : { return m_wXBookmark; }
108 6159 : void SetXBookmark(::com::sun::star::uno::Reference<
109 : ::com::sun::star::text::XTextContent> const& xBkmk)
110 6159 : { m_wXBookmark = xBkmk; }
111 :
112 : protected:
113 : // SwClient
114 : virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew ) SAL_OVERRIDE;
115 :
116 : MarkBase(const SwPaM& rPaM, const OUString& rName);
117 : ::boost::scoped_ptr<SwPosition> m_pPos1;
118 : ::boost::scoped_ptr<SwPosition> m_pPos2;
119 : OUString m_aName;
120 : static OUString GenerateNewName(const OUString& rPrefix);
121 :
122 : ::com::sun::star::uno::WeakReference<
123 : ::com::sun::star::text::XTextContent> m_wXBookmark;
124 : };
125 :
126 0 : class NavigatorReminder
127 : : public MarkBase
128 : {
129 : public:
130 : NavigatorReminder(const SwPaM& rPaM);
131 : };
132 :
133 212266 : class UnoMark
134 : : public MarkBase
135 : {
136 : public:
137 : UnoMark(const SwPaM& rPaM);
138 : };
139 :
140 : class DdeBookmark
141 : : public MarkBase
142 : {
143 : public:
144 : DdeBookmark(const SwPaM& rPaM);
145 :
146 : const SwServerObject* GetRefObject() const
147 : { return &m_aRefObj; }
148 1 : SwServerObject* GetRefObject()
149 1 : { return &m_aRefObj; }
150 :
151 0 : bool IsServer() const
152 0 : { return m_aRefObj.Is(); }
153 :
154 : void SetRefObject( SwServerObject* pObj );
155 :
156 : virtual void DeregisterFromDoc(SwDoc* const pDoc);
157 : virtual ~DdeBookmark();
158 :
159 : private:
160 : tools::SvRef<SwServerObject> m_aRefObj;
161 : };
162 :
163 8770 : class Bookmark
164 : : virtual public IBookmark
165 : , public DdeBookmark
166 : , public ::sfx2::Metadatable
167 : {
168 : public:
169 : Bookmark(const SwPaM& rPaM,
170 : const vcl::KeyCode& rCode,
171 : const OUString& rName,
172 : const OUString& rShortName);
173 : virtual void InitDoc(SwDoc* const io_Doc) SAL_OVERRIDE;
174 :
175 : virtual void DeregisterFromDoc(SwDoc* const io_pDoc) SAL_OVERRIDE;
176 :
177 1304 : virtual const OUString& GetShortName() const SAL_OVERRIDE
178 1304 : { return m_sShortName; }
179 1304 : virtual const vcl::KeyCode& GetKeyCode() const SAL_OVERRIDE
180 1304 : { return m_aCode; }
181 31 : virtual void SetShortName(const OUString& rShortName) SAL_OVERRIDE
182 31 : { m_sShortName = rShortName; }
183 31 : virtual void SetKeyCode(const vcl::KeyCode& rCode) SAL_OVERRIDE
184 31 : { m_aCode = rCode; }
185 :
186 : // ::sfx2::Metadatable
187 : virtual ::sfx2::IXmlIdRegistry& GetRegistry() SAL_OVERRIDE;
188 : virtual bool IsInClipboard() const SAL_OVERRIDE;
189 : virtual bool IsInUndo() const SAL_OVERRIDE;
190 : virtual bool IsInContent() const SAL_OVERRIDE;
191 : virtual ::com::sun::star::uno::Reference<
192 : ::com::sun::star::rdf::XMetadatable > MakeUnoObject() SAL_OVERRIDE;
193 :
194 : private:
195 : vcl::KeyCode m_aCode;
196 : OUString m_sShortName;
197 : };
198 :
199 138 : class Fieldmark
200 : : virtual public IFieldmark
201 : , public MarkBase
202 : {
203 : public:
204 : Fieldmark(const SwPaM& rPaM);
205 :
206 1023 : virtual OUString GetFieldname() const SAL_OVERRIDE
207 1023 : { return m_aFieldname; }
208 2 : virtual OUString GetFieldHelptext() const SAL_OVERRIDE
209 2 : { return m_aFieldHelptext; }
210 :
211 44 : virtual IFieldmark::parameter_map_t* GetParameters() SAL_OVERRIDE
212 44 : { return &m_vParams; }
213 :
214 83 : virtual const IFieldmark::parameter_map_t* GetParameters() const SAL_OVERRIDE
215 83 : { return &m_vParams; }
216 :
217 138 : virtual void SetFieldname(const OUString& aFieldname) SAL_OVERRIDE
218 138 : { m_aFieldname = aFieldname; }
219 2 : virtual void SetFieldHelptext(const OUString& aFieldHelptext) SAL_OVERRIDE
220 2 : { m_aFieldHelptext = aFieldHelptext; }
221 :
222 : virtual void ReleaseDoc(SwDoc* const) = 0;
223 :
224 : void SetMarkStartPos( const SwPosition& rNewStartPos );
225 : void SetMarkEndPos( const SwPosition& rNewEndPos );
226 :
227 : virtual void Invalidate() SAL_OVERRIDE;
228 : virtual OUString ToString() const SAL_OVERRIDE;
229 : virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE;
230 :
231 : private:
232 : OUString m_aFieldname;
233 : OUString m_aFieldHelptext;
234 : IFieldmark::parameter_map_t m_vParams;
235 : };
236 :
237 208 : class TextFieldmark
238 : : public Fieldmark
239 : {
240 : public:
241 : TextFieldmark(const SwPaM& rPaM);
242 : virtual void InitDoc(SwDoc* const io_pDoc) SAL_OVERRIDE;
243 : virtual void ReleaseDoc(SwDoc* const pDoc) SAL_OVERRIDE;
244 : };
245 :
246 68 : class CheckboxFieldmark
247 : : virtual public ICheckboxFieldmark
248 : , public Fieldmark
249 : {
250 : public:
251 : CheckboxFieldmark(const SwPaM& rPaM);
252 : virtual void InitDoc(SwDoc* const io_pDoc) SAL_OVERRIDE;
253 : virtual void ReleaseDoc(SwDoc* const pDoc) SAL_OVERRIDE;
254 : bool IsChecked() const SAL_OVERRIDE;
255 : void SetChecked(bool checked) SAL_OVERRIDE;
256 : };
257 : }
258 : }
259 : #endif
260 :
261 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|