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 "srtdlg.hxx"
21 :
22 : #include <vcl/lstbox.hxx>
23 : #include <vcl/msgbox.hxx>
24 : #include <svl/intitem.hxx>
25 : #include <svl/eitem.hxx>
26 : #include <sfx2/dispatch.hxx>
27 : #include <svx/svxids.hrc>
28 : #include <editeng/unolingu.hxx>
29 : #include <svx/svxdlg.hxx>
30 : #include <svx/dialogs.hrc>
31 : #include <unotools/collatorwrapper.hxx>
32 : #include <svtools/collatorres.hxx>
33 : #include <swwait.hxx>
34 : #include <view.hxx>
35 : #include <cmdid.h>
36 : #include <wrtsh.hxx>
37 : #include <misc.hrc>
38 : #include <app.hrc>
39 : #include <swtable.hxx>
40 : #include <node.hxx>
41 : #include <tblsel.hxx>
42 : #include <sfx2/request.hxx>
43 : #include <boost/scoped_ptr.hpp>
44 :
45 : static bool bCheck1 = true;
46 : static bool bCheck2 = false;
47 : static bool bCheck3 = false;
48 :
49 : static sal_uInt16 nCol1 = 1;
50 : static sal_uInt16 nCol2 = 1;
51 : static sal_uInt16 nCol3 = 1;
52 :
53 : static sal_uInt16 nType1 = 0;
54 : static sal_uInt16 nType2 = 0;
55 : static sal_uInt16 nType3 = 0;
56 :
57 : static sal_uInt16 nLang = LANGUAGE_NONE;
58 :
59 : static bool bAsc1 = true;
60 : static bool bAsc2 = true;
61 : static bool bAsc3 = true;
62 : static bool bCol = false;
63 : static bool bCsSens= false;
64 :
65 : static sal_Unicode cDeli = '\t';
66 :
67 : using namespace ::com::sun::star::lang;
68 : using namespace ::com::sun::star::uno;
69 : using namespace ::com::sun::star;
70 :
71 0 : static void lcl_ClearLstBoxAndDelUserData( ListBox& rLstBox )
72 : {
73 0 : const sal_Int32 nEnd = rLstBox.GetEntryCount();
74 0 : for( sal_Int32 n = 0; n < nEnd; ++n )
75 : {
76 0 : delete reinterpret_cast<OUString *>(rLstBox.GetEntryData( n ));
77 : }
78 0 : rLstBox.Clear();
79 0 : }
80 :
81 : // determine lines and columns for table selection
82 0 : static bool lcl_GetSelTbl( SwWrtShell &rSh, sal_uInt16& rX, sal_uInt16& rY )
83 : {
84 0 : const SwTableNode* pTblNd = rSh.IsCrsrInTbl();
85 0 : if( !pTblNd )
86 0 : return false;
87 :
88 0 : _FndBox aFndBox( 0, 0 );
89 :
90 : // look for all boxes / lines
91 : {
92 0 : SwSelBoxes aSelBoxes;
93 0 : ::GetTblSel( rSh, aSelBoxes );
94 0 : _FndPara aPara( aSelBoxes, &aFndBox );
95 0 : const SwTable& rTbl = pTblNd->GetTable();
96 0 : ForEach_FndLineCopyCol( (SwTableLines&)rTbl.GetTabLines(), &aPara );
97 : }
98 0 : rX = aFndBox.GetLines().size();
99 0 : if( !rX )
100 0 : return false;
101 :
102 0 : rY = aFndBox.GetLines().front().GetBoxes().size();
103 0 : return true;
104 : }
105 :
106 : // init list
107 0 : SwSortDlg::SwSortDlg(vcl::Window* pParent, SwWrtShell &rShell)
108 : : SvxStandardDialog(pParent, "SortDialog", "modules/swriter/ui/sortdialog.ui")
109 : , aColTxt(SW_RES(STR_COL))
110 : , aRowTxt(SW_RES(STR_ROW))
111 : , aNumericTxt(SW_RES(STR_NUMERIC))
112 : , rSh(rShell)
113 : , pColRes(0)
114 : , nX(99)
115 0 : , nY(99)
116 : {
117 0 : get(m_pColLbl, "column");
118 0 : get(m_pTypLbl, "keytype");
119 :
120 0 : get(m_pKeyCB1, "key1");
121 0 : get(m_pColEdt1, "colsb1");
122 0 : get(m_pTypDLB1, "typelb1");
123 0 : get(m_pSortUp1RB, "up1");
124 0 : get(m_pSortDn1RB, "down1");
125 :
126 0 : get(m_pKeyCB2, "key2");
127 0 : get(m_pColEdt2, "colsb2");
128 0 : get(m_pTypDLB2, "typelb2");
129 0 : get(m_pSortUp2RB, "up2");
130 0 : get(m_pSortDn2RB, "down2");
131 :
132 0 : get(m_pKeyCB3, "key3");
133 0 : get(m_pColEdt3, "colsb3");
134 0 : get(m_pTypDLB3, "typelb3");
135 0 : get(m_pSortUp3RB, "up3");
136 0 : get(m_pSortDn3RB, "down3");
137 :
138 0 : get(m_pColumnRB, "columns");
139 0 : get(m_pRowRB, "rows");
140 :
141 0 : get(m_pDelimTabRB, "tabs");
142 0 : get(m_pDelimFreeRB, "character");
143 0 : get(m_pDelimEdt, "separator");
144 0 : get(m_pDelimPB, "delimpb");
145 :
146 0 : get(m_pLangLB, "langlb");
147 0 : get(m_pCaseCB, "matchcase");
148 :
149 0 : m_pColEdt1->SetAccessibleName(m_pColLbl->GetText());
150 0 : m_pColEdt2->SetAccessibleName(m_pColLbl->GetText());
151 0 : m_pColEdt3->SetAccessibleName(m_pColLbl->GetText());
152 0 : m_pTypDLB1->SetAccessibleName(m_pTypLbl->GetText());
153 0 : m_pTypDLB2->SetAccessibleName(m_pTypLbl->GetText());
154 0 : m_pTypDLB3->SetAccessibleName(m_pTypLbl->GetText());
155 0 : m_pSortUp1RB->SetAccessibleRelationMemberOf(m_pKeyCB1);
156 0 : m_pSortDn1RB->SetAccessibleRelationMemberOf(m_pKeyCB1);
157 0 : m_pSortUp2RB->SetAccessibleRelationMemberOf(m_pKeyCB2);
158 0 : m_pSortDn2RB->SetAccessibleRelationMemberOf(m_pKeyCB2);
159 0 : m_pSortUp3RB->SetAccessibleRelationMemberOf(m_pKeyCB3);
160 0 : m_pSortDn3RB->SetAccessibleRelationMemberOf(m_pKeyCB3);
161 :
162 0 : m_pDelimEdt->SetMaxTextLen( 1 );
163 0 : if(rSh.GetSelectionType() &
164 : (nsSelectionType::SEL_TBL|nsSelectionType::SEL_TBL_CELLS) )
165 : {
166 0 : m_pColumnRB->Check(bCol);
167 0 : m_pColLbl->SetText(bCol ? aRowTxt : aColTxt);
168 0 : m_pRowRB->Check(!bCol);
169 0 : m_pDelimTabRB->Enable(false);
170 0 : m_pDelimFreeRB->Enable(false);
171 0 : m_pDelimEdt->Enable(false);
172 : }
173 : else
174 : {
175 0 : m_pColumnRB->Enable(false);
176 0 : m_pRowRB->Check(true);
177 0 : m_pColLbl->SetText(aColTxt);
178 : }
179 :
180 : // initialise
181 0 : Link aLk = LINK(this,SwSortDlg, CheckHdl);
182 0 : m_pKeyCB1->SetClickHdl( aLk );
183 0 : m_pKeyCB2->SetClickHdl( aLk );
184 0 : m_pKeyCB3->SetClickHdl( aLk );
185 0 : m_pColumnRB->SetClickHdl( aLk );
186 0 : m_pRowRB->SetClickHdl( aLk );
187 :
188 0 : aLk = LINK(this,SwSortDlg, DelimHdl);
189 0 : m_pDelimFreeRB->SetClickHdl(aLk);
190 0 : m_pDelimTabRB->SetClickHdl(aLk);
191 :
192 0 : m_pDelimPB->SetClickHdl( LINK( this, SwSortDlg, DelimCharHdl ));
193 :
194 0 : m_pKeyCB1->Check(bCheck1);
195 0 : m_pKeyCB2->Check(bCheck2);
196 0 : m_pKeyCB3->Check(bCheck3);
197 :
198 0 : m_pColEdt1->SetValue(nCol1);
199 0 : m_pColEdt2->SetValue(nCol2);
200 0 : m_pColEdt3->SetValue(nCol3);
201 :
202 : // first initialise the language, then select the
203 0 : if( LANGUAGE_NONE == nLang || LANGUAGE_DONTKNOW == nLang )
204 0 : nLang = (sal_uInt16)GetAppLanguage();
205 :
206 0 : m_pLangLB->SetLanguageList( LANG_LIST_ALL | LANG_LIST_ONLY_KNOWN, true, false);
207 0 : m_pLangLB->SelectLanguage( nLang );
208 :
209 0 : LanguageHdl( 0 );
210 0 : m_pLangLB->SetSelectHdl( LINK( this, SwSortDlg, LanguageHdl ));
211 :
212 0 : m_pSortUp1RB->Check(bAsc1);
213 0 : m_pSortDn1RB->Check(!bAsc1);
214 0 : m_pSortUp2RB->Check(bAsc2);
215 0 : m_pSortDn2RB->Check(!bAsc2);
216 0 : m_pSortUp3RB->Check(bAsc3);
217 0 : m_pSortDn3RB->Check(!bAsc3);
218 :
219 0 : m_pCaseCB->Check( bCsSens );
220 :
221 0 : m_pDelimTabRB->Check(cDeli == '\t');
222 0 : if(!m_pDelimTabRB->IsChecked())
223 : {
224 0 : m_pDelimEdt->SetText(OUString(cDeli));
225 0 : m_pDelimFreeRB->Check(true);
226 0 : DelimHdl(m_pDelimFreeRB);
227 : }
228 : else
229 0 : DelimHdl(m_pDelimTabRB);
230 :
231 0 : if( ::lcl_GetSelTbl( rSh, nX, nY) )
232 : {
233 0 : sal_uInt16 nMax = m_pRowRB->IsChecked()? nY : nX;
234 0 : m_pColEdt1->SetMax(nMax);
235 0 : m_pColEdt2->SetMax(nMax);
236 0 : m_pColEdt3->SetMax(nMax);
237 : }
238 :
239 0 : m_pDelimPB->SetAccessibleRelationMemberOf(m_pDelimFreeRB);
240 :
241 0 : m_pColEdt1->SetAccessibleRelationMemberOf(m_pKeyCB1);
242 0 : m_pTypDLB1->SetAccessibleRelationMemberOf(m_pKeyCB1);
243 :
244 0 : m_pColEdt2->SetAccessibleRelationMemberOf(m_pKeyCB2);
245 0 : m_pTypDLB2->SetAccessibleRelationMemberOf(m_pKeyCB2);
246 :
247 0 : m_pColEdt3->SetAccessibleRelationMemberOf(m_pKeyCB3);
248 0 : m_pTypDLB3->SetAccessibleRelationMemberOf(m_pKeyCB3);
249 0 : }
250 :
251 0 : SwSortDlg::~SwSortDlg()
252 : {
253 0 : ::lcl_ClearLstBoxAndDelUserData(*m_pTypDLB1);
254 0 : ::lcl_ClearLstBoxAndDelUserData(*m_pTypDLB2);
255 0 : ::lcl_ClearLstBoxAndDelUserData(*m_pTypDLB3);
256 0 : delete pColRes;
257 0 : }
258 :
259 0 : sal_Unicode SwSortDlg::GetDelimChar() const
260 : {
261 0 : sal_Unicode cRet = '\t';
262 0 : if( !m_pDelimTabRB->IsChecked() )
263 : {
264 0 : OUString aTmp( m_pDelimEdt->GetText() );
265 0 : if( !aTmp.isEmpty() )
266 0 : cRet = aTmp[0];
267 : }
268 0 : return cRet;
269 : }
270 :
271 : // pass on to the Core
272 0 : void SwSortDlg::Apply()
273 : {
274 : // save all settings
275 0 : bCheck1 = m_pKeyCB1->IsChecked();
276 0 : bCheck2 = m_pKeyCB2->IsChecked();
277 0 : bCheck3 = m_pKeyCB3->IsChecked();
278 :
279 0 : nCol1 = (sal_uInt16)m_pColEdt1->GetValue();
280 0 : nCol2 = (sal_uInt16)m_pColEdt2->GetValue();
281 0 : nCol3 = (sal_uInt16)m_pColEdt3->GetValue();
282 :
283 0 : nType1 = m_pTypDLB1->GetSelectEntryPos();
284 0 : nType2 = m_pTypDLB2->GetSelectEntryPos();
285 0 : nType3 = m_pTypDLB3->GetSelectEntryPos();
286 :
287 0 : bAsc1 = m_pSortUp1RB->IsChecked();
288 0 : bAsc2 = m_pSortUp2RB->IsChecked();
289 0 : bAsc3 = m_pSortUp3RB->IsChecked();
290 0 : bCol = m_pColumnRB->IsChecked();
291 0 : nLang = m_pLangLB->GetSelectLanguage();
292 0 : cDeli = GetDelimChar();
293 0 : bCsSens = m_pCaseCB->IsChecked();
294 :
295 : void* pUserData;
296 0 : SwSortOptions aOptions;
297 0 : if( bCheck1 )
298 : {
299 0 : OUString sEntry( m_pTypDLB1->GetSelectEntry() );
300 0 : if( sEntry == aNumericTxt )
301 0 : sEntry = "";
302 0 : else if( 0 != (pUserData = m_pTypDLB1->GetEntryData(
303 0 : m_pTypDLB1->GetSelectEntryPos())) )
304 0 : sEntry = *(OUString*)pUserData;
305 :
306 : SwSortKey *pKey = new SwSortKey( nCol1, sEntry,
307 0 : bAsc1 ? SRT_ASCENDING : SRT_DESCENDING );
308 0 : aOptions.aKeys.push_back( pKey );
309 : }
310 :
311 0 : if( bCheck2 )
312 : {
313 0 : OUString sEntry( m_pTypDLB2->GetSelectEntry() );
314 0 : if( sEntry == aNumericTxt )
315 0 : sEntry = "";
316 0 : else if( 0 != (pUserData = m_pTypDLB2->GetEntryData(
317 0 : m_pTypDLB2->GetSelectEntryPos())) )
318 0 : sEntry = *(OUString*)pUserData;
319 :
320 : SwSortKey *pKey = new SwSortKey( nCol2, sEntry,
321 0 : bAsc2 ? SRT_ASCENDING : SRT_DESCENDING );
322 0 : aOptions.aKeys.push_back( pKey );
323 : }
324 :
325 0 : if( bCheck3 )
326 : {
327 0 : OUString sEntry( m_pTypDLB3->GetSelectEntry() );
328 0 : if( sEntry == aNumericTxt )
329 0 : sEntry = "";
330 0 : else if( 0 != (pUserData = m_pTypDLB3->GetEntryData(
331 0 : m_pTypDLB3->GetSelectEntryPos())) )
332 0 : sEntry = *(OUString*)pUserData;
333 :
334 : SwSortKey *pKey = new SwSortKey( nCol3, sEntry,
335 0 : bAsc3 ? SRT_ASCENDING : SRT_DESCENDING );
336 0 : aOptions.aKeys.push_back( pKey );
337 : }
338 :
339 0 : aOptions.eDirection = bCol ? SRT_COLUMNS : SRT_ROWS;
340 0 : aOptions.cDeli = cDeli;
341 0 : aOptions.nLanguage = nLang;
342 0 : aOptions.bTable = rSh.IsTableMode();
343 0 : aOptions.bIgnoreCase = !bCsSens;
344 :
345 : bool bRet;
346 : {
347 0 : SwWait aWait( *rSh.GetView().GetDocShell(), true );
348 0 : rSh.StartAllAction();
349 0 : if( (bRet = rSh.Sort( aOptions )))
350 0 : rSh.SetModified();
351 0 : rSh.EndAllAction();
352 : }
353 :
354 0 : if( !bRet )
355 0 : MessageDialog( this->GetParent(), SW_RES(STR_SRTERR), VCL_MESSAGE_INFO).Execute();
356 0 : }
357 :
358 0 : IMPL_LINK( SwSortDlg, DelimHdl, RadioButton*, pButton )
359 : {
360 0 : bool bEnable = pButton == m_pDelimFreeRB && m_pDelimFreeRB->IsEnabled();
361 0 : m_pDelimEdt->Enable( bEnable );
362 0 : m_pDelimPB->Enable( bEnable );
363 0 : return 0;
364 : }
365 :
366 0 : IMPL_LINK_NOARG(SwSortDlg, DelimCharHdl)
367 : {
368 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
369 0 : if(pFact)
370 : {
371 0 : SfxAllItemSet aSet( rSh.GetAttrPool() );
372 0 : aSet.Put( SfxInt32Item( SID_ATTR_CHAR, GetDelimChar() ) );
373 : boost::scoped_ptr<SfxAbstractDialog> pMap(pFact->CreateSfxDialog( m_pDelimPB, aSet,
374 0 : rSh.GetView().GetViewFrame()->GetFrame().GetFrameInterface(), RID_SVXDLG_CHARMAP ));
375 0 : if( RET_OK == pMap->Execute() )
376 : {
377 0 : SFX_ITEMSET_ARG( pMap->GetOutputItemSet(), pItem, SfxInt32Item, SID_ATTR_CHAR, false );
378 0 : if ( pItem )
379 0 : m_pDelimEdt->SetText( OUString(pItem->GetValue()) );
380 0 : }
381 : }
382 0 : return 0;
383 : }
384 :
385 0 : IMPL_LINK( SwSortDlg, CheckHdl, CheckBox *, pCheck )
386 : {
387 0 : if( pCheck == ( CheckBox* ) m_pRowRB)
388 : {
389 0 : m_pColLbl->SetText(aColTxt);
390 0 : m_pColEdt1->SetMax(nY);
391 0 : m_pColEdt2->SetMax(nY);
392 0 : m_pColEdt3->SetMax(nY);
393 :
394 0 : m_pColEdt1->SetAccessibleName(aColTxt);
395 0 : m_pColEdt2->SetAccessibleName(aColTxt);
396 0 : m_pColEdt3->SetAccessibleName(aColTxt);
397 : }
398 0 : else if( pCheck == ( CheckBox* ) m_pColumnRB)
399 : {
400 0 : m_pColLbl->SetText(aRowTxt);
401 0 : m_pColEdt1->SetMax(nX);
402 0 : m_pColEdt2->SetMax(nX);
403 0 : m_pColEdt3->SetMax(nX);
404 :
405 0 : m_pColEdt1->SetAccessibleName(aRowTxt);
406 0 : m_pColEdt2->SetAccessibleName(aRowTxt);
407 0 : m_pColEdt3->SetAccessibleName(aRowTxt);
408 : }
409 0 : else if(!m_pKeyCB1->IsChecked() &&
410 0 : !m_pKeyCB2->IsChecked() &&
411 0 : !m_pKeyCB3->IsChecked())
412 0 : pCheck->Check(true);
413 0 : return 0;
414 : }
415 :
416 0 : IMPL_LINK( SwSortDlg, LanguageHdl, ListBox*, pLBox )
417 : {
418 0 : Sequence < OUString > aSeq( GetAppCollator().listCollatorAlgorithms(
419 0 : LanguageTag( m_pLangLB->GetSelectLanguage()).getLocale() ));
420 :
421 0 : if( !pColRes )
422 0 : pColRes = new CollatorResource();
423 :
424 0 : const int nLstBoxCnt = 3;
425 0 : ListBox* aLstArr[ nLstBoxCnt ] = { m_pTypDLB1, m_pTypDLB2, m_pTypDLB3 };
426 0 : sal_uInt16* aTypeArr[ nLstBoxCnt ] = { &nType1, &nType2, &nType3 };
427 0 : OUString aOldStrArr[ nLstBoxCnt ];
428 :
429 0 : for( int n = 0; n < nLstBoxCnt; ++n )
430 : {
431 0 : ListBox* pL = aLstArr[ n ];
432 0 : void* pUserData = pL->GetEntryData( pL->GetSelectEntryPos() );
433 0 : if (pUserData)
434 0 : aOldStrArr[ n ] = *(OUString*)pUserData;
435 0 : ::lcl_ClearLstBoxAndDelUserData( *pL );
436 : }
437 :
438 0 : OUString sAlg, sUINm;
439 0 : const sal_Int32 nEnd = aSeq.getLength();
440 0 : for( sal_Int32 nCnt = 0; nCnt <= nEnd; ++nCnt )
441 : {
442 0 : if( nCnt < nEnd )
443 0 : sUINm = pColRes->GetTranslation( sAlg = aSeq[ nCnt ] );
444 : else
445 0 : sUINm = sAlg = aNumericTxt;
446 :
447 0 : for( int n = 0; n < nLstBoxCnt; ++n )
448 : {
449 0 : ListBox* pL = aLstArr[ n ];
450 0 : const sal_Int32 nInsPos = pL->InsertEntry( sUINm );
451 0 : pL->SetEntryData( nInsPos, new OUString( sAlg ));
452 0 : if( pLBox && sAlg == aOldStrArr[ n ] )
453 0 : pL->SelectEntryPos( nInsPos );
454 : }
455 : }
456 :
457 0 : for( int n = 0; n < nLstBoxCnt; ++n )
458 : {
459 0 : ListBox* pL = aLstArr[ n ];
460 0 : if( !pLBox )
461 0 : pL->SelectEntryPos( *aTypeArr[n] );
462 0 : else if( LISTBOX_ENTRY_NOTFOUND == pL->GetSelectEntryPos() )
463 0 : pL->SelectEntryPos( 0 );
464 : }
465 0 : return 0;
466 0 : }
467 :
468 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|