1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SW_SOURCE_CORE_INC_BOOKMRK_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_BOOKMRK_HXX
#include <cppuhelper/weakref.hxx>
#include <sfx2/Metadatable.hxx>
#include <boost/scoped_ptr.hpp>
#include <boost/noncopyable.hpp>
#include <map>
#include <rtl/ustring.hxx>
#include <IMark.hxx>
#include <swserv.hxx>
namespace com {
namespace sun {
namespace star {
namespace text {
class XTextContent;
}
}
}
}
struct SwPosition; // fwd Decl. wg. UI
class SwDoc;
namespace sw {
namespace mark {
class MarkBase
: virtual public IMark
{
public:
//getters
virtual SwPosition& GetMarkPos() const SAL_OVERRIDE
{ return *m_pPos1; }
virtual const OUString& GetName() const SAL_OVERRIDE
{ return m_aName; }
virtual SwPosition& GetOtherMarkPos() const SAL_OVERRIDE
{
OSL_PRECOND(IsExpanded(), "<SwPosition::GetOtherMarkPos(..)> - I have no other Pos set." );
return *m_pPos2;
}
virtual SwPosition& GetMarkStart() const SAL_OVERRIDE
{
if( !IsExpanded() ) return GetMarkPos( );
if ( GetMarkPos( ) < GetOtherMarkPos( ) )
return GetMarkPos();
else
return GetOtherMarkPos( );
}
virtual SwPosition& GetMarkEnd() const SAL_OVERRIDE
{
if( !IsExpanded() ) return GetMarkPos();
if ( GetMarkPos( ) >= GetOtherMarkPos( ) )
return GetMarkPos( );
else
return GetOtherMarkPos( );
}
virtual bool IsCoveringPosition(const SwPosition& rPos) const SAL_OVERRIDE;
virtual bool IsExpanded() const SAL_OVERRIDE
{ return static_cast< bool >(m_pPos2); }
virtual void SetName(const OUString& rName)
{ m_aName = rName; }
virtual void SetMarkPos(const SwPosition& rNewPos);
virtual void SetOtherMarkPos(const SwPosition& rNewPos);
virtual void ClearOtherMarkPos()
{ m_pPos2.reset(); }
virtual OUString ToString( ) const SAL_OVERRIDE;
virtual void Swap()
{
if(m_pPos2)
m_pPos1.swap(m_pPos2);
}
virtual void InitDoc(SwDoc* const)
{
}
virtual ~MarkBase();
const ::com::sun::star::uno::WeakReference<
::com::sun::star::text::XTextContent> & GetXBookmark() const
{ return m_wXBookmark; }
void SetXBookmark(::com::sun::star::uno::Reference<
::com::sun::star::text::XTextContent> const& xBkmk)
{ m_wXBookmark = xBkmk; }
protected:
// SwClient
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew ) SAL_OVERRIDE;
MarkBase(const SwPaM& rPaM, const OUString& rName);
::boost::scoped_ptr<SwPosition> m_pPos1;
::boost::scoped_ptr<SwPosition> m_pPos2;
OUString m_aName;
static OUString GenerateNewName(const OUString& rPrefix);
::com::sun::star::uno::WeakReference<
::com::sun::star::text::XTextContent> m_wXBookmark;
};
class NavigatorReminder
: public MarkBase
{
public:
NavigatorReminder(const SwPaM& rPaM);
};
class UnoMark
: public MarkBase
{
public:
UnoMark(const SwPaM& rPaM);
};
class DdeBookmark
: public MarkBase
{
public:
DdeBookmark(const SwPaM& rPaM);
const SwServerObject* GetRefObject() const
{ return &m_aRefObj; }
SwServerObject* GetRefObject()
{ return &m_aRefObj; }
bool IsServer() const
{ return m_aRefObj.Is(); }
void SetRefObject( SwServerObject* pObj );
void DeregisterFromDoc(SwDoc* const pDoc);
virtual ~DdeBookmark();
private:
SwServerObjectRef m_aRefObj;
};
class Bookmark
: virtual public IBookmark
, public DdeBookmark
, public ::sfx2::Metadatable
{
public:
Bookmark(const SwPaM& rPaM,
const KeyCode& rCode,
const OUString& rName,
const OUString& rShortName);
virtual void InitDoc(SwDoc* const io_Doc) SAL_OVERRIDE;
virtual const OUString& GetShortName() const SAL_OVERRIDE
{ return m_sShortName; }
virtual const KeyCode& GetKeyCode() const SAL_OVERRIDE
{ return m_aCode; }
virtual void SetShortName(const OUString& rShortName) SAL_OVERRIDE
{ m_sShortName = rShortName; }
virtual void SetKeyCode(const KeyCode& rCode) SAL_OVERRIDE
{ m_aCode = rCode; }
// ::sfx2::Metadatable
virtual ::sfx2::IXmlIdRegistry& GetRegistry() SAL_OVERRIDE;
virtual bool IsInClipboard() const SAL_OVERRIDE;
virtual bool IsInUndo() const SAL_OVERRIDE;
virtual bool IsInContent() const SAL_OVERRIDE;
virtual ::com::sun::star::uno::Reference<
::com::sun::star::rdf::XMetadatable > MakeUnoObject() SAL_OVERRIDE;
private:
KeyCode m_aCode;
OUString m_sShortName;
};
class Fieldmark
: virtual public IFieldmark
, public MarkBase
{
public:
Fieldmark(const SwPaM& rPaM);
virtual OUString GetFieldname() const SAL_OVERRIDE
{ return m_aFieldname; }
virtual OUString GetFieldHelptext() const SAL_OVERRIDE
{ return m_aFieldHelptext; }
virtual IFieldmark::parameter_map_t* GetParameters() SAL_OVERRIDE
{ return &m_vParams; }
virtual const IFieldmark::parameter_map_t* GetParameters() const SAL_OVERRIDE
{ return &m_vParams; }
virtual void SetFieldname(const OUString& aFieldname) SAL_OVERRIDE
{ m_aFieldname = aFieldname; }
virtual void SetFieldHelptext(const OUString& aFieldHelptext) SAL_OVERRIDE
{ m_aFieldHelptext = aFieldHelptext; }
virtual void ReleaseDoc(SwDoc* const) = 0;
void SetMarkStartPos( const SwPosition& rNewStartPos );
void SetMarkEndPos( const SwPosition& rNewEndPos );
virtual void Invalidate() SAL_OVERRIDE;
virtual OUString ToString() const SAL_OVERRIDE;
private:
OUString m_aFieldname;
OUString m_aFieldHelptext;
IFieldmark::parameter_map_t m_vParams;
};
class TextFieldmark
: public Fieldmark
{
public:
TextFieldmark(const SwPaM& rPaM);
virtual void InitDoc(SwDoc* const io_pDoc) SAL_OVERRIDE;
virtual void ReleaseDoc(SwDoc* const pDoc) SAL_OVERRIDE;
};
class CheckboxFieldmark
: virtual public ICheckboxFieldmark
, public Fieldmark
{
public:
CheckboxFieldmark(const SwPaM& rPaM);
virtual void InitDoc(SwDoc* const io_pDoc) SAL_OVERRIDE;
virtual void ReleaseDoc(SwDoc* const pDoc) SAL_OVERRIDE;
bool IsChecked() const SAL_OVERRIDE;
void SetChecked(bool checked) SAL_OVERRIDE;
virtual OUString toString( ) const;
};
}
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|