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 : #include <tools/resid.hxx>
21 : #include <sfx2/app.hxx>
22 : #include <svl/slstitm.hxx>
23 : #include <wrtsh.hxx>
24 : #include <swundo.hxx> // fuer Undo-Ids
25 : #include <IDocumentUndoRedo.hxx>
26 : #include <swdtflvr.hxx>
27 : #include <svtools/svtresid.hxx>
28 : #include <svtools/svtools.hrc>
29 : #include <wrtsh.hrc>
30 : #include <sfx2/sfx.hrc>
31 :
32 :
33 : // Undo beendet alle Modi. Falls eine Selektion durch das Undo entstanden
34 : // ist, muss die fuer die weiteren Aktionen beruecksichtigt werden.
35 :
36 :
37 0 : void SwWrtShell::Do( DoType eDoType, sal_uInt16 nCnt )
38 : {
39 : // #105332# save current state of DoesUndo()
40 0 : sal_Bool bSaveDoesUndo = DoesUndo();
41 :
42 0 : StartAllAction();
43 0 : switch (eDoType)
44 : {
45 : case UNDO:
46 0 : DoUndo(sal_False); // #i21739#
47 : // Modi zuruecksetzen
48 0 : EnterStdMode();
49 0 : SwEditShell::Undo(nCnt);
50 0 : break;
51 : case REDO:
52 0 : DoUndo(sal_False); // #i21739#
53 : // Modi zuruecksetzen
54 0 : EnterStdMode();
55 0 : SwEditShell::Redo( nCnt );
56 0 : break;
57 : case REPEAT:
58 : // #i21739# do not touch undo flag here !!!
59 0 : SwEditShell::Repeat( nCnt );
60 0 : break;
61 : }
62 0 : EndAllAction();
63 : // #105332# restore undo state
64 0 : DoUndo(bSaveDoesUndo);
65 :
66 0 : sal_Bool bCreateXSelection = sal_False;
67 0 : const sal_Bool bFrmSelected = IsFrmSelected() || IsObjSelected();
68 0 : if ( IsSelection() )
69 : {
70 0 : if ( bFrmSelected )
71 0 : UnSelectFrm();
72 :
73 : // Funktionspointer fuer das Aufheben der Selektion setzen
74 : // bei Cursor setzen
75 0 : fnKillSel = &SwWrtShell::ResetSelect;
76 0 : fnSetCrsr = &SwWrtShell::SetCrsrKillSel;
77 0 : bCreateXSelection = sal_True;
78 : }
79 0 : else if ( bFrmSelected )
80 : {
81 0 : EnterSelFrmMode();
82 0 : bCreateXSelection = sal_True;
83 : }
84 0 : else if( (CNT_GRF | CNT_OLE ) & GetCntType() )
85 : {
86 0 : SelectObj( GetCharRect().Pos() );
87 0 : EnterSelFrmMode();
88 0 : bCreateXSelection = sal_True;
89 : }
90 :
91 0 : if( bCreateXSelection )
92 0 : SwTransferable::CreateSelection( *this );
93 :
94 : // Bug 32918: nach loeschen der Numerierung bleibt die Obj. Leiste stehen
95 : // Warum wird hier nicht immer ein CallChgLink gerufen?
96 0 : CallChgLnk();
97 0 : }
98 :
99 :
100 0 : String SwWrtShell::GetDoString( DoType eDoType ) const
101 : {
102 0 : ::rtl::OUString aUndoStr;
103 0 : sal_uInt16 nResStr = STR_UNDO;
104 0 : switch( eDoType )
105 : {
106 : case UNDO:
107 0 : nResStr = STR_UNDO;
108 0 : GetLastUndoInfo(& aUndoStr, 0);
109 0 : break;
110 : case REDO:
111 0 : nResStr = STR_REDO;
112 0 : GetFirstRedoInfo(& aUndoStr);
113 0 : break;
114 : default:;//prevent warning
115 : }
116 :
117 0 : ::rtl::OUStringBuffer buf = ::rtl::OUStringBuffer( String( SvtResId( nResStr ) ) );
118 0 : buf.append(aUndoStr);
119 :
120 0 : return buf.makeStringAndClear();
121 : }
122 :
123 0 : sal_uInt16 SwWrtShell::GetDoStrings( DoType eDoType, SfxStringListItem& rStrs ) const
124 : {
125 0 : SwUndoComments_t comments;
126 0 : switch( eDoType )
127 : {
128 : case UNDO:
129 0 : comments = GetIDocumentUndoRedo().GetUndoComments();
130 0 : break;
131 : case REDO:
132 0 : comments = GetIDocumentUndoRedo().GetRedoComments();
133 0 : break;
134 : default:;//prevent warning
135 : }
136 :
137 0 : ::rtl::OUStringBuffer buf;
138 0 : for (size_t i = 0; i < comments.size(); ++i)
139 : {
140 : OSL_ENSURE(!comments[i].isEmpty(), "no Undo/Redo Text set");
141 0 : buf.append(comments[i]);
142 0 : buf.append(sal_Unicode('\n'));
143 : }
144 0 : rStrs.SetString(buf.makeStringAndClear());
145 0 : return static_cast<sal_uInt16>(comments.size());
146 : }
147 :
148 :
149 0 : String SwWrtShell::GetRepeatString() const
150 : {
151 0 : ::rtl::OUString str;
152 0 : GetRepeatInfo(& str);
153 :
154 0 : if (str.isEmpty())
155 : {
156 0 : return str;
157 : }
158 :
159 0 : ::rtl::OUStringBuffer buf( String(SvtResId(STR_REPEAT)) );
160 0 : buf.append(str);
161 0 : return buf.makeStringAndClear();
162 : }
163 :
164 :
165 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|