LibreOffice Module sc (master) 1
futext3.cxx
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#include <svx/svdocapt.hxx>
21#include <svx/svdundo.hxx>
22#include <vcl/cursor.hxx>
23#include <osl/diagnose.h>
24
25#include <global.hxx>
26#include <drwlayer.hxx>
27#include <userdat.hxx>
28#include <tabvwsh.hxx>
29#include <document.hxx>
30#include <futext.hxx>
31#include <docsh.hxx>
32#include <postit.hxx>
33#include <globstr.hrc>
34#include <scresid.hxx>
35#include <drawview.hxx>
36#include <undocell.hxx>
37
38// Editing of Note-Key-Objects has to be stopped always via StopEditMode,
39// so that changes are taken over into the document!
40// (Fontwork-Execute in drawsh and drtxtob does not happen for Key-Objects)
41
43{
45 if( !pObject ) return;
46
47 // relock the internal layer that has been unlocked in FuText::SetInEditMode()
48 if ( pObject->GetLayer() == SC_LAYER_INTERN )
50
51 ScViewData& rViewData = rViewShell.GetViewData();
52 ScDocument& rDoc = rViewData.GetDocument();
53 ScDrawLayer* pDrawLayer = rDoc.GetDrawLayer();
54 OSL_ENSURE( pDrawLayer && (pDrawLayer == pDrDoc), "FuText::StopEditMode - missing or different drawing layers" );
55
56 ScAddress aNotePos;
57 ScPostIt* pNote = nullptr;
58 if( const ScDrawObjData* pCaptData = ScDrawLayer::GetNoteCaptionData( pObject, rViewData.GetTabNo() ) )
59 {
60 aNotePos = pCaptData->maStart;
61 pNote = rDoc.GetNote( aNotePos );
62 OSL_ENSURE( pNote && (pNote->GetCaption() == pObject), "FuText::StopEditMode - missing or invalid cell note" );
63 }
64
65 ScDocShell* pDocShell = rViewData.GetDocShell();
66 SfxUndoManager* pUndoMgr = rDoc.IsUndoEnabled() ? pDocShell->GetUndoManager() : nullptr;
67 if (pUndoMgr && !pUndoMgr->GetMaxUndoActionCount()) // tdf#134308 if max undo is 0, treat as if no undo
68 pUndoMgr = nullptr;
69 bool bNewNote = false;
70 if( pNote && pUndoMgr )
71 {
72 /* Put all undo actions already collected (e.g. create caption object)
73 and all following undo actions (text changed) together into a ListAction. */
74 std::unique_ptr<SdrUndoGroup> pCalcUndo = pDrawLayer->GetCalcUndo();
75
76 if(pCalcUndo)
77 {
78 const OUString aUndoStr = ScResId( STR_UNDO_EDITNOTE );
79 pUndoMgr->EnterListAction( aUndoStr, aUndoStr, 0, rViewShell.GetViewShellId() );
80
81 /* Note has been created before editing, if first undo action is
82 an insert action. Needed below to decide whether to drop the
83 undo if editing a new note has been cancelled. */
84 bNewNote = (pCalcUndo->GetActionCount() > 0) && dynamic_cast< SdrUndoNewObj* >(pCalcUndo->GetAction( 0 ));
85
86 // create a "insert note" undo action if needed
87 if( bNewNote )
88 pUndoMgr->AddUndoAction( std::make_unique<ScUndoReplaceNote>( *pDocShell, aNotePos, pNote->GetNoteData(), true, std::move(pCalcUndo) ) );
89 else
90 pUndoMgr->AddUndoAction( std::move(pCalcUndo) );
91 }
92 }
93
94 if( pNote )
95 rDoc.LockStreamValid(true); // only the affected sheet is invalidated below
96
97 /* Unset the outliner undo manager before the call to SdrEndTextEdit.
98 SdrObjEditView::SdrEndTextEdit destroys it, but then ScDrawView::SdrEndTextEdit
99 initiates some UI update which might try to access the now invalid pointer. */
100 rViewShell.SetDrawTextUndo( nullptr );
101
102 /* SdrObjEditView::SdrEndTextEdit() may try to delete the entire drawing
103 object, if it does not contain text and has invisible border and fill.
104 This must not happen for note caption objects. They will be removed
105 below together with the cell note if the text is empty (independent of
106 border and area formatting). It is possible to prevent automatic
107 deletion by passing sal_True to this function. The return value changes
108 from SdrEndTextEditKind::Deleted to SdrEndTextEditKind::ShouldBeDeleted in this
109 case. */
110 /*SdrEndTextEditKind eResult =*/ pView->SdrEndTextEdit( pNote != nullptr );
111
112 vcl::Cursor* pCur = pWindow->GetCursor();
113 if( pCur && pCur->IsVisible() )
114 pCur->Hide();
115
116 if( !pNote )
117 return;
118
120
121 // hide the caption object if it is in hidden state
122 pNote->ShowCaptionTemp( aNotePos, false );
123
124 // update author and date
125 pNote->AutoStamp();
126
127 /* If the entire text has been cleared, the cell note and its caption
128 object have to be removed. */
129 SdrTextObj* pTextObject = DynCastSdrTextObj( pObject );
130 bool bDeleteNote = !pTextObject || !pTextObject->HasText();
131 if( bDeleteNote )
132 {
133 if( pUndoMgr )
134 {
135 // collect the "remove object" drawing undo action created by DeleteNote()
136 pDrawLayer->BeginCalcUndo(false);
137 // rescue note data before deletion
138 ScNoteData aNoteData( pNote->GetNoteData() );
139 // delete note from document (removes caption, but does not delete it)
140 rDoc.ReleaseNote(aNotePos);
141 // create undo action for removed note
142 pUndoMgr->AddUndoAction( std::make_unique<ScUndoReplaceNote>( *pDocShell, aNotePos, aNoteData, false, pDrawLayer->GetCalcUndo() ) );
143 }
144 else
145 {
146 rDoc.ReleaseNote(aNotePos);
147 }
148 // ScDocument::DeleteNote has deleted the note that pNote points to
149 pNote = nullptr;
150 }
151
152 // finalize the undo list action
153 if( pUndoMgr )
154 {
155 pUndoMgr->LeaveListAction();
156
157 /* #i94039# Update the default name "Edit Note" of the undo action
158 if the note has been created before editing or is deleted due
159 to deleted text. If the note has been created *and* is deleted,
160 the last undo action can be removed completely. Note: The
161 function LeaveListAction() removes the last action by itself,
162 if it is empty (when result is SdrEndTextEditKind::Unchanged). */
163 if( bNewNote && bDeleteNote )
164 {
165 pUndoMgr->RemoveLastUndoAction();
166
167 // Make sure the former area of the note anchor is invalidated.
168 ScRangeList aRangeList(aNotePos);
169 ScMarkData aMarkData(rDoc.GetSheetLimits(), aRangeList);
171 }
172 else if( bNewNote || bDeleteNote )
173 {
174 SfxListUndoAction* pAction = dynamic_cast< SfxListUndoAction* >( pUndoMgr->GetUndoAction() );
175 OSL_ENSURE( pAction, "FuText::StopEditMode - list undo action expected" );
176 if( pAction )
177 pAction->SetComment( ScResId( bNewNote ? STR_UNDO_INSERTNOTE : STR_UNDO_DELETENOTE ) );
178 }
179 }
180
181 // invalidate stream positions only for the affected sheet
182 rDoc.LockStreamValid(false);
183 rDoc.SetStreamValid(aNotePos.Tab(), false);
184}
185
186/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScDrawView * pView
Definition: fupoor.hxx:42
SdrModel * pDrDoc
Definition: fupoor.hxx:45
ScTabViewShell & rViewShell
Definition: fupoor.hxx:43
VclPtr< vcl::Window > pWindow
Definition: fupoor.hxx:44
void StopEditMode()
Definition: futext3.cxx:42
SCTAB Tab() const
Definition: address.hxx:283
virtual SfxUndoManager * GetUndoManager() override
Definition: docsh.cxx:2968
ScSheetLimits & GetSheetLimits() const
Definition: document.hxx:898
SC_DLLPUBLIC ScPostIt * GetNote(const ScAddress &rPos)
Definition: document.cxx:6587
void SetStreamValid(SCTAB nTab, bool bSet, bool bIgnoreLock=false)
Definition: document.cxx:904
SC_DLLPUBLIC std::unique_ptr< ScPostIt > ReleaseNote(const ScAddress &rPos)
Definition: document.cxx:6689
SC_DLLPUBLIC ScDrawLayer * GetDrawLayer()
Definition: document.hxx:1084
void LockStreamValid(bool bLock)
Definition: document.cxx:910
bool IsUndoEnabled() const
Definition: document.hxx:1595
void BeginCalcUndo(bool bDisableTextEditUsesCommonUndoManager)
Definition: drwlayer.cxx:1514
std::unique_ptr< SdrUndoGroup > GetCalcUndo()
Definition: drwlayer.cxx:1521
static ScDrawObjData * GetNoteCaptionData(SdrObject *pObj, SCTAB nTab)
Returns the object data, if the passed object is a cell note caption.
Definition: drwlayer.cxx:2907
void LockInternalLayer(bool bLock=true)
Locks/unlocks the internal layer that contains caption objects of cell notes.
Definition: drawview.hxx:135
virtual SdrEndTextEditKind SdrEndTextEdit(bool bDontDeleteReally=false) override
Definition: drawview.cxx:584
todo: It should be possible to have MarkArrays for each table, in order to enable "search all" across...
Definition: markdata.hxx:43
Additional class containing cell annotation data.
Definition: postit.hxx:58
const ScNoteData & GetNoteData() const
Returns the data struct containing all note settings.
Definition: postit.hxx:103
void ShowCaptionTemp(const ScAddress &rPos, bool bShow=true)
Shows or hides the caption temporarily (does not change internal visibility state).
Definition: postit.cxx:598
void AutoStamp()
Sets date and author from system settings.
Definition: postit.cxx:504
SdrCaptionObj * GetCaption() const
Returns an existing note caption object.
Definition: postit.hxx:132
void SetDrawTextUndo(SfxUndoManager *pUndoMgr)
Definition: tabvwsh4.cxx:1054
static void OnLOKNoteStateChanged(const ScPostIt *pNote)
Definition: tabview5.cxx:660
ScViewData & GetViewData()
Definition: tabview.hxx:344
SCTAB GetTabNo() const
Definition: viewdata.hxx:395
ScDocument & GetDocument() const
Definition: viewdata.hxx:380
ScDocShell * GetDocShell() const
Definition: viewdata.hxx:354
void UpdateSelectionArea(const ScMarkData &rSel, ScPatternAttr *pAttr=nullptr)
Definition: viewfunc.cxx:3119
SdrTextObj * GetTextEditObject() const
virtual bool HasText() const override
void SetComment(const OUString &rComment)
size_t LeaveListAction()
size_t GetMaxUndoActionCount() const
virtual void EnterListAction(const OUString &rComment, const OUString &rRepeatComment, sal_uInt16 nId, ViewShellId nViewShellId)
void RemoveLastUndoAction()
virtual void AddUndoAction(std::unique_ptr< SfxUndoAction > pAction, bool bTryMerg=false)
SfxUndoAction * GetUndoAction(size_t nNo=0) const
ViewShellId GetViewShellId() const override
bool IsVisible() const
EmbeddedObjectRef * pObject
constexpr SdrLayerID SC_LAYER_INTERN(2)
OUString ScResId(TranslateId aId)
Definition: scdll.cxx:90
Internal data for a cell annotation.
Definition: postit.hxx:42
SVXCORE_DLLPUBLIC SdrTextObj * DynCastSdrTextObj(SdrObject *)