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 <comphelper/string.hxx>
21 : #include <editeng/eeitem.hxx>
22 :
23 : #include "scitems.hxx"
24 : #include <editeng/editview.hxx>
25 : #include <editeng/flditem.hxx>
26 : #include <svx/hlnkitem.hxx>
27 : #include <svl/srchitem.hxx>
28 : #include <sfx2/dispatch.hxx>
29 : #include <sfx2/viewfrm.hxx>
30 : #include <sfx2/request.hxx>
31 : #include <sfx2/objface.hxx>
32 : #include <svl/stritem.hxx>
33 :
34 : #include "tabvwsh.hxx"
35 : #include "sc.hrc"
36 : #include "scmod.hxx"
37 : #include "impex.hxx"
38 : #include "editsh.hxx"
39 : #include "dociter.hxx"
40 : #include "inputhdl.hxx"
41 : #include <svx/srchdlg.hxx>
42 : #include "document.hxx"
43 : #include <gridwin.hxx>
44 :
45 0 : OUString ScTabViewShell::GetSelectionText( bool bWholeWord )
46 : {
47 0 : OUString aStrSelection;
48 :
49 0 : if ( pEditShell && pEditShell == GetMySubShell() )
50 : {
51 0 : aStrSelection = pEditShell->GetSelectionText( bWholeWord );
52 : }
53 : else
54 : {
55 0 : ScRange aRange;
56 :
57 0 : if ( GetViewData().GetSimpleArea( aRange ) == SC_MARK_SIMPLE )
58 : {
59 0 : ScDocument* pDoc = GetViewData().GetDocument();
60 0 : if ( bInFormatDialog && aRange.aStart.Row() != aRange.aEnd.Row() )
61 : {
62 : // Range auf eine Datenzeile begrenzen
63 : // (nur wenn der Aufruf aus einem Format-Dialog kommt)
64 0 : ScHorizontalCellIterator aIter( pDoc, aRange.aStart.Tab(),
65 0 : aRange.aStart.Col(), aRange.aStart.Row(),
66 0 : aRange.aEnd.Col(), aRange.aEnd.Row() );
67 : SCCOL nCol;
68 : SCROW nRow;
69 0 : if ( aIter.GetNext( nCol, nRow ) )
70 : {
71 0 : aRange.aStart.SetCol( nCol );
72 0 : aRange.aStart.SetRow( nRow );
73 0 : aRange.aEnd.SetRow( nRow );
74 : }
75 : else
76 0 : aRange.aEnd = aRange.aStart;
77 : }
78 : else
79 : {
80 : // #i111531# with 1M rows it was necessary to limit the range
81 : // to the actually used data area.
82 : SCCOL nCol1, nCol2;
83 : SCROW nRow1, nRow2;
84 : SCTAB nTab1, nTab2;
85 0 : aRange.GetVars( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2);
86 : bool bShrunk;
87 0 : pDoc->ShrinkToUsedDataArea( bShrunk, nTab1, nCol1, nRow1, nCol2, nRow2, false);
88 0 : if (bShrunk)
89 : {
90 0 : aRange.aStart.SetCol( nCol1 );
91 0 : aRange.aStart.SetRow( nRow1 );
92 0 : aRange.aEnd.SetCol( nCol2 );
93 0 : aRange.aEnd.SetRow( nRow2 );
94 : }
95 : }
96 :
97 0 : ScImportExport aObj( pDoc, aRange );
98 0 : aObj.SetFormulas( GetViewData().GetOptions().GetOption( VOPT_FORMULAS ) );
99 0 : OUString aExportOUString;
100 0 : aObj.ExportString( aExportOUString );
101 0 : aStrSelection = convertLineEnd(aExportOUString, LINEEND_CR);
102 :
103 : // Tab/CR durch Space ersetzen, wenn fuer Dialog oder per Basic/SelectionTextExt,
104 : // oder wenn es eine einzelne Zeile ist.
105 : // Sonst mehrzeilig mit Tabs beibehalten (z.B. Mail oder Basic/SelectionText).
106 : // Fuer Mail werden die Tabs dann spaeter in (mehrere) Spaces gewandelt.
107 :
108 0 : if ( bInFormatDialog || bWholeWord || aRange.aEnd.Row() == aRange.aStart.Row() )
109 : {
110 0 : aStrSelection = aStrSelection.replaceAll(OUString(CHAR_CR), " ");
111 0 : aStrSelection = aStrSelection.replaceAll("\t", " ");
112 0 : aStrSelection = comphelper::string::stripEnd(aStrSelection, ' ');
113 0 : }
114 : }
115 : }
116 :
117 0 : return aStrSelection;
118 : }
119 :
120 0 : void ScTabViewShell::InsertURL( const OUString& rName, const OUString& rURL, const OUString& rTarget,
121 : sal_uInt16 nMode )
122 : {
123 0 : SvxLinkInsertMode eMode = (SvxLinkInsertMode) nMode;
124 0 : bool bAsText = ( eMode != HLINK_BUTTON ); // Default ist jetzt Text
125 :
126 0 : if ( bAsText )
127 : {
128 0 : if ( GetViewData().IsActive() )
129 : {
130 : // if the view is active, always use InsertURLField, which starts EditMode
131 : // and selects the URL, so it can be changed from the URL bar / dialog
132 :
133 0 : InsertURLField( rName, rURL, rTarget );
134 : }
135 : else
136 : {
137 : // if the view is not active, InsertURLField doesn't work
138 : // -> use InsertBookmark to directly manipulate cell content
139 : // bTryReplace=sal_True -> if cell contains only one URL, replace it
140 :
141 0 : SCCOL nPosX = GetViewData().GetCurX();
142 0 : SCROW nPosY = GetViewData().GetCurY();
143 0 : InsertBookmark( rName, rURL, nPosX, nPosY, &rTarget, true );
144 : }
145 : }
146 : else
147 : {
148 0 : SC_MOD()->InputEnterHandler();
149 0 : InsertURLButton( rName, rURL, rTarget );
150 : }
151 0 : }
152 :
153 0 : static void lcl_SelectFieldAfterInsert( EditView& rView )
154 : {
155 0 : ESelection aSel = rView.GetSelection();
156 0 : if ( aSel.nStartPos == aSel.nEndPos && aSel.nStartPos > 0 )
157 : {
158 : // Cursor is behind the inserted field -> extend selection to the left
159 :
160 0 : --aSel.nStartPos;
161 0 : rView.SetSelection( aSel );
162 : }
163 0 : }
164 :
165 0 : void ScTabViewShell::InsertURLField( const OUString& rName, const OUString& rURL, const OUString& rTarget )
166 : {
167 0 : SvxURLField aURLField( rURL, rName, SVXURLFORMAT_REPR );
168 0 : aURLField.SetTargetFrame( rTarget );
169 0 : SvxFieldItem aURLItem( aURLField, EE_FEATURE_FIELD );
170 :
171 0 : ScViewData& rViewData = GetViewData();
172 0 : ScModule* pScMod = SC_MOD();
173 0 : ScInputHandler* pHdl = pScMod->GetInputHdl( rViewData.GetViewShell() );
174 :
175 0 : bool bSelectFirst = false;
176 0 : if ( !pScMod->IsEditMode() )
177 : {
178 0 : if ( !SelectionEditable() )
179 : {
180 : // no error message (may be called from drag&drop)
181 0 : return;
182 : }
183 :
184 : // single url in cell is shown in the dialog and replaced
185 0 : bSelectFirst = HasBookmarkAtCursor( NULL );
186 0 : pScMod->SetInputMode( SC_INPUT_TABLE );
187 : }
188 :
189 0 : EditView* pTopView = pHdl->GetTopView();
190 0 : EditView* pTableView = pHdl->GetTableView();
191 : OSL_ENSURE( pTopView || pTableView, "No EditView" );
192 :
193 0 : if ( bSelectFirst )
194 : {
195 0 : if ( pTopView )
196 0 : pTopView->SetSelection( ESelection(0,0,0,1) );
197 0 : if ( pTableView )
198 0 : pTableView->SetSelection( ESelection(0,0,0,1) );
199 : }
200 :
201 0 : pHdl->DataChanging();
202 :
203 0 : if ( pTopView )
204 : {
205 0 : pTopView->InsertField( aURLItem );
206 0 : lcl_SelectFieldAfterInsert( *pTopView );
207 : }
208 0 : if ( pTableView )
209 : {
210 0 : pTableView->InsertField( aURLItem );
211 0 : lcl_SelectFieldAfterInsert( *pTableView );
212 : }
213 :
214 0 : pHdl->DataChanged();
215 : }
216 :
217 0 : void ScTabViewShell::ExecSearch( SfxRequest& rReq )
218 : {
219 0 : const SfxItemSet* pReqArgs = rReq.GetArgs();
220 0 : sal_uInt16 nSlot = rReq.GetSlot();
221 : const SfxPoolItem* pItem;
222 :
223 0 : switch ( nSlot )
224 : {
225 : case FID_SEARCH_NOW:
226 : {
227 0 : if ( pReqArgs &&
228 0 : SfxItemState::SET == pReqArgs->GetItemState(SID_SEARCH_ITEM, false, &pItem) )
229 : {
230 : OSL_ENSURE( pItem->ISA(SvxSearchItem), "falsches Item" );
231 0 : const SvxSearchItem* pSearchItem = static_cast<const SvxSearchItem*>(pItem);
232 :
233 0 : ScGlobal::SetSearchItem( *pSearchItem );
234 0 : bool bSuccess = SearchAndReplace( pSearchItem, true, rReq.IsAPI() );
235 : const SfxChildWindow* pChildWindow = SfxViewFrame::Current()->GetChildWindow(
236 0 : SvxSearchDialogWrapper::GetChildWindowId());
237 0 : if (pChildWindow)
238 : {
239 0 : SvxSearchDialog* pSearchDlg = static_cast<SvxSearchDialog*>(pChildWindow->GetWindow());
240 0 : if( pSearchDlg )
241 : {
242 0 : ScTabView* pTabView = GetViewData().GetView();
243 0 : if( pTabView )
244 : {
245 0 : vcl::Window* pWin = pTabView->GetActiveWin();
246 0 : if( pWin )
247 : {
248 0 : pSearchDlg->SetDocWin( pWin );
249 0 : pSearchDlg->SetSrchFlag( bSuccess );
250 : }
251 : }
252 : }
253 : }
254 0 : rReq.Done();
255 : }
256 : }
257 0 : break;
258 :
259 : case SID_SEARCH_ITEM:
260 0 : if (pReqArgs && SfxItemState::SET ==
261 0 : pReqArgs->GetItemState(SID_SEARCH_ITEM, false, &pItem))
262 : {
263 : // Search-Item merken
264 : OSL_ENSURE( pItem->ISA(SvxSearchItem), "falsches Item" );
265 0 : ScGlobal::SetSearchItem( *static_cast<const SvxSearchItem*>(pItem ));
266 : }
267 : else
268 : {
269 : OSL_FAIL("SID_SEARCH_ITEM ohne Parameter");
270 : }
271 0 : break;
272 : case FID_SEARCH:
273 : case FID_REPLACE:
274 : case FID_REPLACE_ALL:
275 : case FID_SEARCH_ALL:
276 : {
277 0 : if (pReqArgs && SfxItemState::SET == pReqArgs->GetItemState(nSlot, false, &pItem))
278 : {
279 : // SearchItem holen
280 :
281 0 : SvxSearchItem aSearchItem = ScGlobal::GetSearchItem();
282 :
283 : // SearchItem fuellen
284 :
285 0 : aSearchItem.SetSearchString(static_cast<const SfxStringItem*>(pItem)->GetValue());
286 0 : if(SfxItemState::SET == pReqArgs->GetItemState(FN_PARAM_1, false, &pItem))
287 0 : aSearchItem.SetReplaceString(static_cast<const SfxStringItem*>(pItem)->GetValue());
288 :
289 0 : if (nSlot == FID_SEARCH)
290 0 : aSearchItem.SetCommand(SvxSearchCmd::FIND);
291 0 : else if(nSlot == FID_REPLACE)
292 0 : aSearchItem.SetCommand(SvxSearchCmd::REPLACE);
293 0 : else if(nSlot == FID_REPLACE_ALL)
294 0 : aSearchItem.SetCommand(SvxSearchCmd::REPLACE_ALL);
295 : else
296 0 : aSearchItem.SetCommand(SvxSearchCmd::FIND_ALL);
297 :
298 : // Request ausfuehren (dabei wird das SearchItem gespeichert)
299 :
300 0 : aSearchItem.SetWhich(SID_SEARCH_ITEM);
301 0 : GetViewData().GetDispatcher().Execute( FID_SEARCH_NOW,
302 0 : rReq.IsAPI() ? SfxCallMode::API|SfxCallMode::SYNCHRON :
303 : SfxCallMode::RECORD,
304 0 : &aSearchItem, 0L );
305 : const SfxChildWindow* pChildWindow = SfxViewFrame::Current()->GetChildWindow(
306 0 : SvxSearchDialogWrapper::GetChildWindowId());
307 0 : if (pChildWindow)
308 : {
309 0 : SvxSearchDialog* pSearchDlg = static_cast<SvxSearchDialog*>(pChildWindow->GetWindow());
310 0 : if( pSearchDlg )
311 : {
312 0 : ScTabView* pTabView = GetViewData().GetView();
313 0 : if( pTabView )
314 : {
315 0 : vcl::Window* pWin = pTabView->GetActiveWin();
316 0 : if( pWin )
317 : {
318 0 : pSearchDlg->SetDocWin( pWin );
319 0 : pSearchDlg->SetSrchFlag();
320 : }
321 : }
322 : }
323 0 : }
324 : }
325 : else
326 : {
327 0 : GetViewData().GetDispatcher().Execute(
328 0 : SID_SEARCH_DLG, SfxCallMode::ASYNCHRON|SfxCallMode::RECORD );
329 : }
330 : }
331 0 : break;
332 : case FID_REPEAT_SEARCH:
333 : {
334 : // nochmal mit ScGlobal::GetSearchItem()
335 :
336 0 : SvxSearchItem aSearchItem = ScGlobal::GetSearchItem();
337 0 : aSearchItem.SetWhich(SID_SEARCH_ITEM);
338 0 : GetViewData().GetDispatcher().Execute( FID_SEARCH_NOW,
339 0 : rReq.IsAPI() ? SfxCallMode::API|SfxCallMode::SYNCHRON :
340 : SfxCallMode::RECORD,
341 0 : &aSearchItem, 0L );
342 : }
343 0 : break;
344 : // case FID_SEARCH_COUNT:
345 : }
346 156 : }
347 :
348 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|