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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
/* -*- 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 .
*/
#include <postithelper.hxx>
#include <PostItMgr.hxx>
#include <AnnotationWin.hxx>
#include <fmtfld.hxx>
#include <txtfld.hxx>
#include <ndtxt.hxx>
#include <pagefrm.hxx>
#include <rootfrm.hxx>
#include <txtfrm.hxx>
#include <IDocumentRedlineAccess.hxx>
#include <IDocumentFieldsAccess.hxx>
#include <IDocumentMarkAccess.hxx>
#include <redline.hxx>
#include <scriptinfo.hxx>
#include <calbck.hxx>
#include <IMark.hxx>
#include <sortedobjs.hxx>
#include <anchoredobject.hxx>
#include <fmtanchr.hxx>
class Point;
namespace
{
/// Checks if pAnnotationMark covers exactly rAnchorPos (the comment anchor).
bool AnnotationMarkCoversCommentAnchor(const sw::mark::IMark* pAnnotationMark,
const SwPosition& rAnchorPos)
{
if (!pAnnotationMark)
{
return false;
}
const SwPosition& rMarkStart = pAnnotationMark->GetMarkStart();
const SwPosition& rMarkEnd = pAnnotationMark->GetMarkEnd();
if (rMarkStart != rAnchorPos)
{
// This can be the as-char case: the comment placeholder character is exactly between the
// annotation mark start and end.
SwPosition aPosition(rMarkStart);
++aPosition.nContent;
if (aPosition != rAnchorPos)
{
return false;
}
++aPosition.nContent;
if (aPosition != rMarkEnd)
{
return false;
}
return true;
}
if (rMarkStart.nNode != rMarkEnd.nNode)
{
return false;
}
return rMarkEnd.nContent.GetIndex() == rMarkStart.nContent.GetIndex() + 1;
}
/**
* Finds the first draw object of rTextFrame which has the same anchor position as the start of
* rAnnotationMark.
*/
SwAnchoredObject* GetAnchoredObjectOfAnnotationMark(const sw::mark::IMark& rAnnotationMark,
const SwTextFrame& rTextFrame)
{
const SwSortedObjs* pAnchored = rTextFrame.GetDrawObjs();
if (!pAnchored)
{
return nullptr;
}
for (SwAnchoredObject* pObject : *pAnchored)
{
SwFrameFormat& rFrameFormat = pObject->GetFrameFormat();
const SwPosition* pFrameAnchor = rFrameFormat.GetAnchor().GetContentAnchor();
if (!pFrameAnchor)
{
continue;
}
if (rAnnotationMark.GetMarkStart() == *pFrameAnchor)
{
return pObject;
}
}
return nullptr;
}
}
SwSidebarItem::SwSidebarItem(const bool aFocus)
: mpPostIt(nullptr)
, mbShow(true)
, mbFocus(aFocus)
, mbPendingLayout(false)
, mLayoutStatus(SwPostItHelper::INVISIBLE)
{
}
SwSidebarItem::~SwSidebarItem() {}
SwPostItHelper::SwLayoutStatus SwPostItHelper::getLayoutInfos(
SwLayoutInfo& o_rInfo,
const SwPosition& rAnchorPos,
const sw::mark::IMark* pAnnotationMark )
{
SwLayoutStatus aRet = INVISIBLE;
SwTextNode* pTextNode = rAnchorPos.nNode.GetNode().GetTextNode();
if ( pTextNode == nullptr )
return aRet;
SwIterator<SwTextFrame, SwContentNode, sw::IteratorMode::UnwrapMulti> aIter(*pTextNode);
for( SwTextFrame* pTextFrame = aIter.First(); pTextFrame != nullptr; pTextFrame = aIter.Next() )
{
if( !pTextFrame->IsFollow() )
{
pTextFrame = pTextFrame->GetFrameAtPos( rAnchorPos );
SwPageFrame *pPage = pTextFrame ? pTextFrame->FindPageFrame() : nullptr;
if ( pPage != nullptr && !pPage->IsInvalid() && !pPage->IsInvalidFly() )
{
aRet = VISIBLE;
o_rInfo.mpAnchorFrame = pTextFrame;
{
DisableCallbackAction a(*pTextFrame->getRootFrame());
bool bPositionFromCommentAnchor = true;
if (AnnotationMarkCoversCommentAnchor(pAnnotationMark, rAnchorPos))
{
SwAnchoredObject* pFrame
= GetAnchoredObjectOfAnnotationMark(*pAnnotationMark, *pTextFrame);
if (pFrame)
{
o_rInfo.mPosition = pFrame->GetObjRect();
bPositionFromCommentAnchor = false;
}
}
if (bPositionFromCommentAnchor)
{
pTextFrame->GetCharRect(o_rInfo.mPosition, rAnchorPos, nullptr, false);
}
o_rInfo.mPositionFromCommentAnchor = bPositionFromCommentAnchor;
}
if (pAnnotationMark != nullptr)
{
const SwPosition& rAnnotationStartPos = pAnnotationMark->GetMarkStart();
o_rInfo.mnStartNodeIdx = rAnnotationStartPos.nNode.GetIndex();
o_rInfo.mnStartContent = rAnnotationStartPos.nContent.GetIndex();
}
else
{
o_rInfo.mnStartNodeIdx = SwNodeOffset(0);
o_rInfo.mnStartContent = -1;
}
o_rInfo.mPageFrame = pPage->getFrameArea();
o_rInfo.mPagePrtArea = pPage->getFramePrintArea();
o_rInfo.mPagePrtArea.Pos() += o_rInfo.mPageFrame.Pos();
o_rInfo.mnPageNumber = pPage->GetPhyPageNum();
o_rInfo.meSidebarPosition = pPage->SidebarPosition();
o_rInfo.mRedlineAuthor = 0;
const IDocumentRedlineAccess& rIDRA = pTextNode->getIDocumentRedlineAccess();
if( IDocumentRedlineAccess::IsShowChanges( rIDRA.GetRedlineFlags() ) )
{
const SwRangeRedline* pRedline = rIDRA.GetRedline( rAnchorPos, nullptr );
if( pRedline )
{
if( RedlineType::Insert == pRedline->GetType() )
aRet = INSERTED;
else if( RedlineType::Delete == pRedline->GetType() )
{
bool bDeleted = pAnnotationMark == nullptr;
if( !bDeleted )
{
IDocumentMarkAccess& rDMA(*pTextNode->GetDoc().getIDocumentMarkAccess());
IDocumentMarkAccess::const_iterator_t pAnnotationBookmark =
rDMA.findAnnotationBookmark(pAnnotationMark->GetName());
// tdf#140980 only really deleted, if there is no helper bookmark
// in ChangesInMargin mode
if ( pAnnotationBookmark == rDMA.getBookmarksEnd() )
bDeleted = true;
}
if ( bDeleted )
aRet = DELETED;
}
o_rInfo.mRedlineAuthor = pRedline->GetAuthor();
}
}
}
}
}
return ( (aRet==VISIBLE) && SwScriptInfo::IsInHiddenRange( *pTextNode , rAnchorPos.nContent.GetIndex()) )
? HIDDEN
: aRet;
}
tools::Long SwPostItHelper::getLayoutHeight( const SwRootFrame* pRoot )
{
tools::Long nRet = pRoot ? pRoot->getFrameArea().Height() : 0;
return nRet;
}
void SwPostItHelper::setSidebarChanged( SwRootFrame* pRoot, bool bBrowseMode )
{
if( pRoot )
{
pRoot->SetSidebarChanged();
if( bBrowseMode )
pRoot->InvalidateBrowseWidth();
}
}
tools::ULong SwPostItHelper::getPageInfo( SwRect& rPageFrame, const SwRootFrame* pRoot, const Point& rPoint )
{
tools::ULong nRet = 0;
const SwFrame* pPage = pRoot->GetPageAtPos( rPoint, nullptr, true );
if( pPage )
{
nRet = pPage->GetPhyPageNum();
rPageFrame = pPage->getFrameArea();
}
return nRet;
}
SwPosition SwAnnotationItem::GetAnchorPosition() const
{
SwTextField* pTextField = mrFormatField.GetTextField();
SwTextNode* pTextNode = pTextField->GetpTextNode();
SwPosition aPos( *pTextNode );
aPos.nContent.Assign( pTextNode, pTextField->GetStart() );
return aPos;
}
bool SwAnnotationItem::UseElement(SwRootFrame const& rLayout,
IDocumentRedlineAccess const& rIDRA)
{
return mrFormatField.IsFieldInDoc()
&& (!rLayout.IsHideRedlines()
|| !sw::IsFieldDeletedInModel(rIDRA, *mrFormatField.GetTextField()));
}
VclPtr<sw::annotation::SwAnnotationWin> SwAnnotationItem::GetSidebarWindow(
SwEditWin& rEditWin,
SwPostItMgr& aMgr)
{
return VclPtr<sw::annotation::SwAnnotationWin>::Create( rEditWin,
aMgr,
*this,
&mrFormatField );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|