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 : #undef SC_DLLIMPLEMENTATION
21 :
22 : #include <comphelper/string.hxx>
23 : #include <vcl/msgbox.hxx>
24 :
25 : #include "global.hxx"
26 : #include "document.hxx"
27 : #include "tabvwsh.hxx"
28 : #include "viewdata.hxx"
29 : #include "uiitems.hxx"
30 : #include "userlist.hxx"
31 : #include "rangeutl.hxx"
32 : #include "crdlg.hxx"
33 : #include "scresid.hxx"
34 : #include "sc.hrc"
35 : #include "globstr.hrc"
36 : #include "tpusrlst.hxx"
37 :
38 : // STATIC DATA -----------------------------------------------------------
39 :
40 : #define CR (sal_Unicode)13
41 : #define LF (sal_Unicode)10
42 :
43 : static const sal_Unicode cDelimiter = ',';
44 :
45 : // Benutzerdefinierte Listen:
46 :
47 0 : ScTpUserLists::ScTpUserLists( vcl::Window* pParent,
48 : const SfxItemSet& rCoreAttrs )
49 :
50 : : SfxTabPage ( pParent,
51 : "OptSortLists", "modules/scalc/ui/optsortlists.ui",
52 : &rCoreAttrs ),
53 0 : aStrQueryRemove ( ScGlobal::GetRscString( STR_QUERYREMOVE ) ),
54 0 : aStrCopyList ( ScGlobal::GetRscString( STR_COPYLIST ) ),
55 0 : aStrCopyFrom ( ScGlobal::GetRscString( STR_COPYFROM ) ),
56 0 : aStrCopyErr ( ScGlobal::GetRscString( STR_COPYERR ) ),
57 0 : nWhichUserLists ( GetWhich( SID_SCUSERLISTS ) ),
58 : pUserLists ( NULL ),
59 : pDoc ( NULL ),
60 : pViewData ( NULL ),
61 0 : pRangeUtil ( new ScRangeUtil ),
62 : bModifyMode ( false ),
63 : bCancelMode ( false ),
64 : bCopyDone ( false ),
65 0 : nCancelPos ( 0 )
66 : {
67 0 : get(mpFtLists, "listslabel");
68 0 : get(mpLbLists, "lists");
69 0 : get(mpFtEntries, "entrieslabel");
70 0 : get(mpEdEntries, "entries");
71 0 : get(mpFtCopyFrom, "copyfromlabel");
72 0 : get(mpEdCopyFrom, "copyfrom");
73 0 : get(mpBtnNew, "new");
74 0 : get(mpBtnDiscard, "discard");
75 0 : get(mpBtnAdd, "add");
76 0 : get(mpBtnModify, "modify");
77 0 : get(mpBtnRemove, "delete");
78 0 : get(mpBtnCopy, "copy");
79 :
80 0 : SetExchangeSupport();
81 0 : Init();
82 0 : Reset(&rCoreAttrs);
83 0 : }
84 :
85 0 : ScTpUserLists::~ScTpUserLists()
86 : {
87 0 : delete pUserLists;
88 0 : delete pRangeUtil;
89 0 : }
90 :
91 0 : void ScTpUserLists::Init()
92 : {
93 0 : SfxViewShell* pSh = SfxViewShell::Current();
94 0 : ScTabViewShell* pViewSh = PTR_CAST(ScTabViewShell, pSh);
95 :
96 0 : mpLbLists->SetSelectHdl ( LINK( this, ScTpUserLists, LbSelectHdl ) );
97 0 : mpBtnNew->SetClickHdl ( LINK( this, ScTpUserLists, BtnClickHdl ) );
98 0 : mpBtnDiscard->SetClickHdl ( LINK( this, ScTpUserLists, BtnClickHdl ) );
99 0 : mpBtnAdd->SetClickHdl ( LINK( this, ScTpUserLists, BtnClickHdl ) );
100 0 : mpBtnModify->SetClickHdl ( LINK( this, ScTpUserLists, BtnClickHdl ) );
101 0 : mpBtnRemove->SetClickHdl ( LINK( this, ScTpUserLists, BtnClickHdl ) );
102 0 : mpEdEntries->SetModifyHdl ( LINK( this, ScTpUserLists, EdEntriesModHdl ) );
103 :
104 0 : if ( pViewSh )
105 : {
106 0 : SCTAB nStartTab = 0;
107 0 : SCTAB nEndTab = 0;
108 0 : SCCOL nStartCol = 0;
109 0 : SCROW nStartRow = 0;
110 0 : SCCOL nEndCol = 0;
111 0 : SCROW nEndRow = 0;
112 :
113 0 : pViewData = &pViewSh->GetViewData();
114 0 : pDoc = pViewData->GetDocument();
115 :
116 : pViewData->GetSimpleArea( nStartCol, nStartRow, nStartTab,
117 0 : nEndCol, nEndRow, nEndTab );
118 :
119 0 : PutInOrder( nStartCol, nEndCol );
120 0 : PutInOrder( nStartRow, nEndRow );
121 0 : PutInOrder( nStartTab, nEndTab );
122 :
123 0 : aStrSelectedArea = ScRange( nStartCol, nStartRow, nStartTab, nEndCol, nEndRow, nEndTab
124 0 : ).Format(SCR_ABS_3D, pDoc);
125 :
126 0 : mpBtnCopy->SetClickHdl ( LINK( this, ScTpUserLists, BtnClickHdl ) );
127 0 : mpBtnCopy->Enable();
128 : }
129 : else
130 : {
131 0 : mpBtnCopy->Disable();
132 0 : mpFtCopyFrom->Disable();
133 0 : mpEdCopyFrom->Disable();
134 : }
135 :
136 0 : }
137 :
138 0 : SfxTabPage* ScTpUserLists::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet )
139 : {
140 0 : return ( new ScTpUserLists( pParent, *rAttrSet ) );
141 : }
142 :
143 0 : void ScTpUserLists::Reset( const SfxItemSet* rCoreAttrs )
144 : {
145 : const ScUserListItem& rUserListItem = static_cast<const ScUserListItem&>(
146 0 : rCoreAttrs->Get( nWhichUserLists ));
147 0 : const ScUserList* pCoreList = rUserListItem.GetUserList();
148 :
149 : OSL_ENSURE( pCoreList, "UserList not found :-/" );
150 :
151 0 : if ( pCoreList )
152 : {
153 0 : if ( !pUserLists )
154 0 : pUserLists = new ScUserList( *pCoreList );
155 : else
156 0 : *pUserLists = *pCoreList;
157 :
158 0 : if ( UpdateUserListBox() > 0 )
159 : {
160 0 : mpLbLists->SelectEntryPos( 0 );
161 0 : UpdateEntries( 0 );
162 : }
163 : }
164 0 : else if ( !pUserLists )
165 0 : pUserLists = new ScUserList;
166 :
167 0 : mpEdCopyFrom->SetText( aStrSelectedArea );
168 :
169 0 : if ( mpLbLists->GetEntryCount() == 0 )
170 : {
171 0 : mpFtLists->Disable();
172 0 : mpLbLists->Disable();
173 0 : mpFtEntries->Disable();
174 0 : mpEdEntries->Disable();
175 0 : mpBtnRemove->Disable();
176 : }
177 :
178 0 : mpBtnNew->Show();
179 0 : mpBtnDiscard->Hide();
180 0 : mpBtnAdd->Show();
181 0 : mpBtnModify->Hide();
182 0 : mpBtnAdd->Disable();
183 0 : mpBtnModify->Disable();
184 :
185 0 : if ( !bCopyDone && pViewData )
186 : {
187 0 : mpFtCopyFrom->Enable();
188 0 : mpEdCopyFrom->Enable();
189 0 : mpBtnCopy->Enable();
190 : }
191 0 : }
192 :
193 0 : bool ScTpUserLists::FillItemSet( SfxItemSet* rCoreAttrs )
194 : {
195 : // Modifikationen noch nicht uebernommen?
196 : // -> Click auf Add-Button simulieren
197 :
198 0 : if ( bModifyMode || bCancelMode )
199 0 : BtnClickHdl( mpBtnAdd );
200 :
201 : const ScUserListItem& rUserListItem = static_cast<const ScUserListItem&>(
202 0 : GetItemSet().Get( nWhichUserLists ));
203 :
204 0 : ScUserList* pCoreList = rUserListItem.GetUserList();
205 0 : bool bDataModified = false;
206 :
207 0 : if ( (pUserLists == NULL) && (pCoreList == NULL) )
208 : {
209 0 : bDataModified = false;
210 : }
211 0 : else if ( pUserLists != NULL )
212 : {
213 0 : if ( pCoreList != NULL )
214 0 : bDataModified = (*pUserLists != *pCoreList);
215 : else
216 0 : bDataModified = true;
217 : }
218 :
219 0 : if ( bDataModified )
220 : {
221 0 : ScUserListItem aULItem( nWhichUserLists );
222 :
223 0 : if ( pUserLists )
224 0 : aULItem.SetUserList( *pUserLists );
225 :
226 0 : rCoreAttrs->Put( aULItem );
227 : }
228 :
229 0 : return bDataModified;
230 : }
231 :
232 0 : int ScTpUserLists::DeactivatePage( SfxItemSet* pSetP )
233 : {
234 0 : if ( pSetP )
235 0 : FillItemSet( pSetP );
236 :
237 0 : return LEAVE_PAGE;
238 : }
239 :
240 0 : size_t ScTpUserLists::UpdateUserListBox()
241 : {
242 0 : mpLbLists->Clear();
243 :
244 0 : if ( !pUserLists ) return 0;
245 :
246 0 : size_t nCount = pUserLists->size();
247 0 : OUString aEntry;
248 :
249 0 : for ( size_t i=0; i<nCount; ++i )
250 : {
251 0 : aEntry = (*pUserLists)[i]->GetString();
252 : OSL_ENSURE( !aEntry.isEmpty(), "Empty UserList-entry :-/" );
253 0 : mpLbLists->InsertEntry( aEntry );
254 : }
255 :
256 0 : return nCount;
257 : }
258 :
259 0 : void ScTpUserLists::UpdateEntries( size_t nList )
260 : {
261 0 : if ( !pUserLists ) return;
262 :
263 0 : if ( nList < pUserLists->size() )
264 : {
265 0 : const ScUserListData* pList = (*pUserLists)[nList];
266 0 : std::size_t nSubCount = pList->GetSubCount();
267 0 : OUString aEntryListStr;
268 :
269 0 : for ( sal_uInt16 i=0; i<nSubCount; i++ )
270 : {
271 0 : if ( i!=0 )
272 0 : aEntryListStr += OUString(CR);
273 0 : aEntryListStr += pList->GetSubStr(i);
274 : }
275 :
276 0 : mpEdEntries->SetText(convertLineEnd(aEntryListStr, GetSystemLineEnd()));
277 : }
278 : else
279 : {
280 : OSL_FAIL( "Invalid ListIndex :-/" );
281 : }
282 : }
283 :
284 0 : void ScTpUserLists::MakeListStr( OUString& rListStr )
285 : {
286 0 : OUString aStr;
287 :
288 0 : sal_Int32 nToken = comphelper::string::getTokenCount(rListStr, LF);
289 :
290 0 : for(sal_Int32 i=0; i<nToken; i++)
291 : {
292 0 : OUString aString = comphelper::string::strip(rListStr.getToken(i, LF), ' ');
293 0 : aStr += aString;
294 0 : aStr += OUString(cDelimiter);
295 0 : }
296 :
297 0 : aStr = comphelper::string::strip(aStr, cDelimiter);
298 0 : sal_Int32 nLen = aStr.getLength();
299 :
300 0 : rListStr = "";
301 :
302 : // Alle Doppelten cDelimiter entfernen:
303 0 : sal_Int32 c = 0;
304 0 : while ( c < nLen )
305 : {
306 0 : rListStr += OUString(aStr[c]);
307 0 : ++c;
308 :
309 0 : if ((c < nLen) && (aStr[c] == cDelimiter))
310 : {
311 0 : rListStr += OUString(aStr[c]);
312 :
313 0 : while ((c < nLen) && (aStr[c] == cDelimiter))
314 0 : ++c;
315 : }
316 0 : }
317 :
318 0 : }
319 :
320 0 : void ScTpUserLists::AddNewList( const OUString& rEntriesStr )
321 : {
322 0 : OUString theEntriesStr( rEntriesStr );
323 :
324 0 : if ( !pUserLists )
325 0 : pUserLists = new ScUserList;
326 :
327 0 : MakeListStr( theEntriesStr );
328 :
329 0 : pUserLists->push_back(new ScUserListData(theEntriesStr));
330 0 : }
331 :
332 0 : void ScTpUserLists::CopyListFromArea( const ScRefAddress& rStartPos,
333 : const ScRefAddress& rEndPos )
334 : {
335 0 : if ( bCopyDone ) return;
336 :
337 0 : SCTAB nTab = rStartPos.Tab();
338 0 : SCCOL nStartCol = rStartPos.Col();
339 0 : SCROW nStartRow = rStartPos.Row();
340 0 : SCCOL nEndCol = rEndPos.Col();
341 0 : SCROW nEndRow = rEndPos.Row();
342 0 : sal_uInt16 nCellDir = SCRET_COLS;
343 0 : bool bValueIgnored = false;
344 :
345 0 : if ( (nStartCol != nEndCol) && (nStartRow != nEndRow) )
346 : {
347 0 : nCellDir = ScColOrRowDlg( this, aStrCopyList, aStrCopyFrom ).Execute();
348 : }
349 0 : else if ( nStartCol != nEndCol )
350 0 : nCellDir = SCRET_ROWS;
351 : else
352 0 : nCellDir = SCRET_COLS;
353 :
354 0 : if ( nCellDir != RET_CANCEL )
355 : {
356 0 : OUString aStrList;
357 0 : OUString aStrField;
358 :
359 0 : if ( nCellDir == SCRET_COLS )
360 : {
361 0 : for ( SCCOL col=nStartCol; col<=nEndCol; col++ )
362 : {
363 0 : for ( SCROW row=nStartRow; row<=nEndRow; row++ )
364 : {
365 0 : if ( pDoc->HasStringData( col, row, nTab ) )
366 : {
367 0 : aStrField = pDoc->GetString(col, row, nTab);
368 :
369 0 : if ( !aStrField.isEmpty() )
370 : {
371 0 : aStrList += aStrField;
372 0 : aStrList += "\n";
373 : }
374 : }
375 : else
376 0 : bValueIgnored = true;
377 : }
378 0 : if ( !aStrList.isEmpty() )
379 0 : AddNewList( aStrList );
380 0 : aStrList = "";
381 : }
382 : }
383 : else
384 : {
385 0 : for ( SCROW row=nStartRow; row<=nEndRow; row++ )
386 : {
387 0 : for ( SCCOL col=nStartCol; col<=nEndCol; col++ )
388 : {
389 0 : if ( pDoc->HasStringData( col, row, nTab ) )
390 : {
391 0 : aStrField = pDoc->GetString(col, row, nTab);
392 :
393 0 : if ( !aStrField.isEmpty() )
394 : {
395 0 : aStrList += aStrField;
396 0 : aStrList += "\n";
397 : }
398 : }
399 : else
400 0 : bValueIgnored = true;
401 : }
402 0 : if ( !aStrList.isEmpty() )
403 0 : AddNewList( aStrList );
404 0 : aStrList = "";
405 : }
406 : }
407 :
408 0 : if ( bValueIgnored )
409 : {
410 0 : InfoBox( this, aStrCopyErr ).Execute();
411 0 : }
412 : }
413 :
414 0 : bCopyDone = true;
415 :
416 : }
417 :
418 0 : void ScTpUserLists::ModifyList( size_t nSelList,
419 : const OUString& rEntriesStr )
420 : {
421 0 : if ( !pUserLists ) return;
422 :
423 0 : OUString theEntriesStr( rEntriesStr );
424 :
425 0 : MakeListStr( theEntriesStr );
426 :
427 0 : (*pUserLists)[nSelList]->SetString( theEntriesStr );
428 : }
429 :
430 0 : void ScTpUserLists::RemoveList( size_t nList )
431 : {
432 0 : if (pUserLists && nList < pUserLists->size())
433 : {
434 0 : ScUserList::iterator itr = pUserLists->begin();
435 0 : ::std::advance(itr, nList);
436 0 : pUserLists->erase(itr);
437 : }
438 0 : }
439 :
440 : // Handler:
441 :
442 0 : IMPL_LINK( ScTpUserLists, LbSelectHdl, ListBox*, pLb )
443 : {
444 0 : if ( pLb == mpLbLists )
445 : {
446 0 : sal_Int32 nSelPos = mpLbLists->GetSelectEntryPos();
447 0 : if ( nSelPos != LISTBOX_ENTRY_NOTFOUND )
448 : {
449 0 : if ( !mpFtEntries->IsEnabled() ) mpFtEntries->Enable();
450 0 : if ( !mpEdEntries->IsEnabled() ) mpEdEntries->Enable();
451 0 : if ( !mpBtnRemove->IsEnabled() ) mpBtnRemove->Enable();
452 0 : if ( mpBtnAdd->IsEnabled() )
453 : {
454 0 : mpBtnAdd->Disable();
455 0 : mpBtnModify->Disable();
456 : }
457 :
458 0 : UpdateEntries( nSelPos );
459 : }
460 : }
461 :
462 0 : return 0;
463 : }
464 :
465 0 : IMPL_LINK( ScTpUserLists, BtnClickHdl, PushButton*, pBtn )
466 : {
467 0 : if ( pBtn == mpBtnNew || pBtn == mpBtnDiscard )
468 : {
469 0 : if ( !bCancelMode )
470 : {
471 0 : nCancelPos = ( mpLbLists->GetEntryCount() > 0 )
472 0 : ? mpLbLists->GetSelectEntryPos()
473 0 : : 0;
474 0 : mpLbLists->SetNoSelection();
475 0 : mpFtLists->Disable();
476 0 : mpLbLists->Disable();
477 0 : mpFtEntries->Enable();
478 0 : mpEdEntries->Enable();
479 0 : mpEdEntries->SetText( EMPTY_OUSTRING );
480 0 : mpEdEntries->GrabFocus();
481 0 : mpBtnAdd->Disable();
482 0 : mpBtnModify->Disable();
483 0 : mpBtnRemove->Disable();
484 :
485 0 : if ( mpBtnCopy->IsEnabled() )
486 : {
487 0 : mpBtnCopy->Disable();
488 0 : mpFtCopyFrom->Disable();
489 0 : mpEdCopyFrom->Disable();
490 : }
491 0 : mpBtnNew->Hide();
492 0 : mpBtnDiscard->Show();
493 0 : bCancelMode = true;
494 : }
495 : else // if ( bCancelMode )
496 : {
497 0 : if ( mpLbLists->GetEntryCount() > 0 )
498 : {
499 0 : mpLbLists->SelectEntryPos( nCancelPos );
500 0 : LbSelectHdl( mpLbLists );
501 0 : mpFtLists->Enable();
502 0 : mpLbLists->Enable();
503 : }
504 : else
505 : {
506 0 : mpFtEntries->Disable();
507 0 : mpEdEntries->Disable();
508 0 : mpEdEntries->SetText( EMPTY_OUSTRING );
509 0 : mpBtnRemove->Disable();
510 : }
511 0 : mpBtnAdd->Disable();
512 0 : mpBtnModify->Disable();
513 :
514 0 : if ( pViewData && !bCopyDone )
515 : {
516 0 : mpBtnCopy->Enable();
517 0 : mpFtCopyFrom->Enable();
518 0 : mpEdCopyFrom->Enable();
519 : }
520 0 : mpBtnNew->Show();
521 0 : mpBtnDiscard->Hide();
522 0 : bCancelMode = false;
523 0 : bModifyMode = false;
524 : }
525 : }
526 0 : else if (pBtn == mpBtnAdd || pBtn == mpBtnModify)
527 : {
528 0 : OUString theEntriesStr( mpEdEntries->GetText() );
529 :
530 0 : if ( !bModifyMode )
531 : {
532 0 : if ( !theEntriesStr.isEmpty() )
533 : {
534 0 : AddNewList( theEntriesStr );
535 0 : UpdateUserListBox();
536 0 : mpLbLists->SelectEntryPos( mpLbLists->GetEntryCount()-1 );
537 0 : LbSelectHdl( mpLbLists );
538 0 : mpFtLists->Enable();
539 0 : mpLbLists->Enable();
540 : }
541 : else
542 : {
543 0 : if ( mpLbLists->GetEntryCount() > 0 )
544 : {
545 0 : mpLbLists->SelectEntryPos( nCancelPos );
546 0 : LbSelectHdl( mpLbLists );
547 0 : mpLbLists->Enable();
548 0 : mpLbLists->Enable();
549 : }
550 : }
551 :
552 0 : mpBtnAdd->Disable();
553 0 : mpBtnModify->Disable();
554 0 : mpBtnRemove->Enable();
555 0 : mpBtnNew->Show();
556 0 : mpBtnDiscard->Hide();
557 0 : bCancelMode = false;
558 : }
559 : else // if ( bModifyMode )
560 : {
561 0 : sal_Int32 nSelList = mpLbLists->GetSelectEntryPos();
562 :
563 : OSL_ENSURE( nSelList != LISTBOX_ENTRY_NOTFOUND, "Modify without List :-/" );
564 :
565 0 : if ( !theEntriesStr.isEmpty() )
566 : {
567 0 : ModifyList( nSelList, theEntriesStr );
568 0 : UpdateUserListBox();
569 0 : mpLbLists->SelectEntryPos( nSelList );
570 : }
571 : else
572 : {
573 0 : mpLbLists->SelectEntryPos( 0 );
574 0 : LbSelectHdl( mpLbLists );
575 : }
576 :
577 0 : mpBtnNew->Show();
578 0 : mpBtnDiscard->Hide();
579 0 : bCancelMode = false;
580 0 : mpBtnAdd->Show();
581 0 : mpBtnModify->Show();
582 0 : mpBtnAdd->Disable();
583 0 : mpBtnModify->Disable();
584 0 : bModifyMode = false;
585 0 : mpBtnRemove->Enable();
586 0 : mpFtLists->Enable();
587 0 : mpLbLists->Enable();
588 : }
589 :
590 0 : if ( pViewData && !bCopyDone )
591 : {
592 0 : mpBtnCopy->Enable();
593 0 : mpFtCopyFrom->Enable();
594 0 : mpEdCopyFrom->Enable();
595 0 : }
596 : }
597 0 : else if ( pBtn == mpBtnRemove )
598 : {
599 0 : if ( mpLbLists->GetEntryCount() > 0 )
600 : {
601 0 : sal_Int32 nRemovePos = mpLbLists->GetSelectEntryPos();
602 0 : OUString aMsg ( aStrQueryRemove.getToken( 0, '#' ) );
603 :
604 0 : aMsg += mpLbLists->GetEntry( nRemovePos );
605 0 : aMsg += aStrQueryRemove.getToken( 1, '#' );
606 :
607 0 : if ( RET_YES == QueryBox( this,
608 : WinBits( WB_YES_NO | WB_DEF_YES ),
609 : aMsg
610 0 : ).Execute() )
611 : {
612 0 : RemoveList( nRemovePos );
613 0 : UpdateUserListBox();
614 :
615 0 : if ( mpLbLists->GetEntryCount() > 0 )
616 : {
617 : mpLbLists->SelectEntryPos(
618 0 : ( nRemovePos >= mpLbLists->GetEntryCount() )
619 0 : ? mpLbLists->GetEntryCount()-1
620 0 : : nRemovePos );
621 0 : LbSelectHdl( mpLbLists );
622 : }
623 : else
624 : {
625 0 : mpFtLists->Disable();
626 0 : mpLbLists->Disable();
627 0 : mpFtEntries->Disable();
628 0 : mpEdEntries->Disable();
629 0 : mpEdEntries->SetText( EMPTY_OUSTRING );
630 0 : mpBtnRemove->Disable();
631 : }
632 : }
633 :
634 0 : if ( pViewData && !bCopyDone && !mpBtnCopy->IsEnabled() )
635 : {
636 0 : mpBtnCopy->Enable();
637 0 : mpFtCopyFrom->Enable();
638 0 : mpEdCopyFrom->Enable();
639 0 : }
640 : }
641 : }
642 0 : else if ( pViewData && (pBtn == mpBtnCopy) )
643 : {
644 0 : if ( bCopyDone )
645 0 : return 0;
646 :
647 0 : ScRefAddress theStartPos;
648 0 : ScRefAddress theEndPos;
649 0 : OUString theAreaStr( mpEdCopyFrom->GetText() );
650 0 : bool bAreaOk = false;
651 :
652 0 : if ( !theAreaStr.isEmpty() )
653 : {
654 : bAreaOk = pRangeUtil->IsAbsArea( theAreaStr,
655 : pDoc,
656 0 : pViewData->GetTabNo(),
657 : &theAreaStr,
658 : &theStartPos,
659 : &theEndPos,
660 0 : pDoc->GetAddressConvention() );
661 0 : if ( !bAreaOk )
662 : {
663 : bAreaOk = pRangeUtil->IsAbsPos( theAreaStr,
664 : pDoc,
665 0 : pViewData->GetTabNo(),
666 : &theAreaStr,
667 : &theStartPos,
668 0 : pDoc->GetAddressConvention() );
669 0 : theEndPos = theStartPos;
670 : }
671 : }
672 :
673 0 : if ( bAreaOk )
674 : {
675 0 : CopyListFromArea( theStartPos, theEndPos );
676 0 : UpdateUserListBox();
677 0 : mpLbLists->SelectEntryPos( mpLbLists->GetEntryCount()-1 );
678 0 : LbSelectHdl( mpLbLists );
679 0 : mpEdCopyFrom->SetText( theAreaStr );
680 0 : mpEdCopyFrom->Disable();
681 0 : mpBtnCopy->Disable();
682 0 : mpFtCopyFrom->Disable();
683 : }
684 : else
685 : {
686 : MessageDialog(this,
687 0 : ScGlobal::GetRscString( STR_INVALID_TABREF )
688 0 : ).Execute();
689 0 : mpEdCopyFrom->GrabFocus();
690 0 : mpEdCopyFrom->SetSelection( Selection( 0, SELECTION_MAX ) );
691 0 : }
692 : }
693 :
694 0 : return 0;
695 : }
696 :
697 0 : IMPL_LINK( ScTpUserLists, EdEntriesModHdl, VclMultiLineEdit*, pEd )
698 : {
699 0 : if ( pEd != mpEdEntries )
700 0 : return 0;
701 :
702 0 : if ( mpBtnCopy->IsEnabled() )
703 : {
704 0 : mpBtnCopy->Disable();
705 0 : mpFtCopyFrom->Disable();
706 0 : mpEdCopyFrom->Disable();
707 : }
708 :
709 0 : if ( !mpEdEntries->GetText().isEmpty() )
710 : {
711 0 : if ( !bCancelMode && !bModifyMode )
712 : {
713 0 : mpBtnNew->Hide();
714 0 : mpBtnDiscard->Show();
715 0 : bCancelMode = true;
716 0 : mpBtnAdd->Hide();
717 0 : mpBtnAdd->Enable();
718 0 : mpBtnModify->Show();
719 0 : mpBtnModify->Enable();
720 0 : bModifyMode = true;
721 0 : mpBtnRemove->Disable();
722 0 : mpFtLists->Disable();
723 0 : mpLbLists->Disable();
724 : }
725 : else // if ( bCancelMode || bModifyMode )
726 : {
727 0 : if ( !mpBtnAdd->IsEnabled() )
728 : {
729 0 : mpBtnAdd->Enable();
730 0 : mpBtnModify->Enable();
731 : }
732 : }
733 : }
734 : else
735 : {
736 0 : if ( mpBtnAdd->IsEnabled() )
737 : {
738 0 : mpBtnAdd->Disable();
739 0 : mpBtnModify->Disable();
740 : }
741 : }
742 :
743 0 : return 0;
744 0 : }
745 :
746 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|