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