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 <svx/simptabl.hxx>
21 : #include <vcl/svapp.hxx>
22 :
23 : #include <comphelper/processfactory.hxx>
24 : #include <unotools/intlwrapper.hxx>
25 : #include <svtools/svlbitm.hxx>
26 : #include "svtools/treelistentry.hxx"
27 :
28 : // SvxSimpleTableContainer ------------------------------------------------------
29 :
30 0 : SvxSimpleTableContainer::SvxSimpleTableContainer( Window* pParent, const ResId& rResId)
31 : : Control(pParent, rResId)
32 0 : , m_pTable(NULL)
33 : {
34 0 : SetBorderStyle(WINDOW_BORDER_NOBORDER);
35 0 : }
36 :
37 0 : void SvxSimpleTableContainer::SetTable(SvxSimpleTable* pTable)
38 : {
39 0 : m_pTable = pTable;
40 0 : }
41 :
42 0 : long SvxSimpleTableContainer::PreNotify( NotifyEvent& rNEvt )
43 : {
44 0 : long nResult = sal_True;
45 0 : if ( rNEvt.GetType() == EVENT_KEYINPUT )
46 : {
47 0 : const KeyCode& aKeyCode = rNEvt.GetKeyEvent()->GetKeyCode();
48 0 : sal_uInt16 nKey = aKeyCode.GetCode();
49 0 : if (nKey == KEY_TAB)
50 0 : GetParent()->Notify( rNEvt );
51 0 : else if (m_pTable && m_pTable->IsFocusOnCellEnabled() && ( nKey == KEY_LEFT || nKey == KEY_RIGHT))
52 0 : return 0;
53 : else
54 0 : nResult = Control::PreNotify( rNEvt );
55 : }
56 : else
57 0 : nResult = Control::PreNotify( rNEvt );
58 :
59 0 : return nResult;
60 : }
61 :
62 0 : void SvxSimpleTableContainer::SetSizePixel(const Size& rNewSize )
63 : {
64 0 : Control::SetSizePixel(rNewSize);
65 0 : if (m_pTable)
66 0 : m_pTable->UpdateViewSize();
67 0 : }
68 :
69 0 : void SvxSimpleTableContainer::GetFocus()
70 : {
71 0 : Control::GetFocus();
72 0 : if (m_pTable)
73 0 : m_pTable->GrabFocus();
74 0 : }
75 :
76 : // SvxSimpleTable ------------------------------------------------------------
77 :
78 0 : SvxSimpleTable::SvxSimpleTable(SvxSimpleTableContainer& rParent, WinBits nBits):
79 : SvHeaderTabListBox(&rParent, nBits | WB_CLIPCHILDREN | WB_HSCROLL | WB_TABSTOP),
80 : m_rParentTableContainer(rParent),
81 : aHeaderBar(&rParent,WB_BUTTONSTYLE | WB_BORDER | WB_TABSTOP),
82 : nHeaderItemId(1),
83 : bResizeFlag(sal_False),
84 0 : bPaintFlag(sal_True)
85 : {
86 0 : m_rParentTableContainer.SetTable(this);
87 :
88 0 : bSortDirection=sal_True;
89 0 : nSortCol=0xFFFF;
90 0 : nOldPos=0;
91 :
92 0 : aHeaderBar.SetStartDragHdl(LINK( this, SvxSimpleTable, StartDragHdl));
93 0 : aHeaderBar.SetDragHdl(LINK( this, SvxSimpleTable, DragHdl));
94 0 : aHeaderBar.SetEndDragHdl(LINK( this, SvxSimpleTable, EndDragHdl));
95 0 : aHeaderBar.SetSelectHdl(LINK( this, SvxSimpleTable, HeaderBarClick));
96 0 : aHeaderBar.SetDoubleClickHdl(LINK( this, SvxSimpleTable, HeaderBarDblClick));
97 :
98 0 : EnableCellFocus();
99 0 : DisableTransientChildren();
100 0 : InitHeaderBar( &aHeaderBar );
101 :
102 0 : UpdateViewSize();
103 :
104 0 : aHeaderBar.Show();
105 0 : SvHeaderTabListBox::Show();
106 0 : }
107 :
108 0 : SvxSimpleTable::~SvxSimpleTable()
109 : {
110 0 : m_rParentTableContainer.SetTable(NULL);
111 0 : }
112 :
113 0 : void SvxSimpleTable::UpdateViewSize()
114 : {
115 0 : Size theWinSize=m_rParentTableContainer.GetSizePixel();
116 0 : Size HbSize=aHeaderBar.GetSizePixel();
117 :
118 0 : HbSize.Width()=theWinSize.Width();
119 0 : theWinSize.Height()-=HbSize.Height();
120 0 : Point thePos(0,0);
121 :
122 0 : aHeaderBar.SetPosPixel(thePos);
123 0 : aHeaderBar.SetSizePixel(HbSize);
124 :
125 0 : thePos.Y()+=HbSize.Height();
126 0 : SvHeaderTabListBox::SetPosPixel(thePos);
127 0 : SvHeaderTabListBox::SetSizePixel(theWinSize);
128 0 : Invalidate();
129 0 : }
130 :
131 0 : void SvxSimpleTable::NotifyScrolled()
132 : {
133 0 : long nOffset=-GetXOffset();
134 0 : if(nOldPos!=nOffset)
135 : {
136 0 : aHeaderBar.SetOffset(nOffset);
137 0 : aHeaderBar.Invalidate();
138 0 : aHeaderBar.Update();
139 0 : nOldPos=nOffset;
140 : }
141 0 : SvHeaderTabListBox::NotifyScrolled();
142 0 : }
143 :
144 0 : void SvxSimpleTable::SetTabs()
145 : {
146 0 : SvHeaderTabListBox::SetTabs();
147 :
148 0 : sal_uInt16 nPrivTabCount = TabCount();
149 0 : if ( nPrivTabCount )
150 : {
151 0 : if ( nPrivTabCount > aHeaderBar.GetItemCount() )
152 0 : nPrivTabCount = aHeaderBar.GetItemCount();
153 :
154 0 : sal_uInt16 i, nNewSize = static_cast< sal_uInt16 >( GetTab(0) ), nPos = 0;
155 0 : for ( i = 1; i < nPrivTabCount; ++i )
156 : {
157 0 : nNewSize = static_cast< sal_uInt16 >( GetTab(i) ) - nPos;
158 0 : aHeaderBar.SetItemSize( i, nNewSize );
159 0 : nPos = (sal_uInt16)GetTab(i);
160 : }
161 :
162 0 : aHeaderBar.SetItemSize( i, HEADERBAR_FULLSIZE ); // because no tab for last entry
163 : }
164 0 : }
165 :
166 0 : void SvxSimpleTable::SetTabs( long* pTabs, MapUnit eMapUnit)
167 : {
168 0 : SvHeaderTabListBox::SetTabs(pTabs,eMapUnit);
169 0 : }
170 :
171 0 : void SvxSimpleTable::Paint( const Rectangle& rRect )
172 : {
173 0 : SvHeaderTabListBox::Paint(rRect );
174 :
175 0 : sal_uInt16 nPrivTabCount = TabCount();
176 0 : sal_uInt16 nNewSize = ( nPrivTabCount > 0 ) ? (sal_uInt16)GetTab(0) : 0;
177 :
178 0 : long nOffset=-GetXOffset();
179 0 : nOldPos=nOffset;
180 :
181 0 : aHeaderBar.SetOffset(nOffset);
182 0 : aHeaderBar.Invalidate();
183 :
184 0 : if(nPrivTabCount && bPaintFlag)
185 : {
186 0 : if(nPrivTabCount>aHeaderBar.GetItemCount())
187 0 : nPrivTabCount=aHeaderBar.GetItemCount();
188 :
189 0 : sal_uInt16 nPos = 0;
190 0 : for(sal_uInt16 i=1;i<nPrivTabCount;i++)
191 : {
192 0 : nNewSize = static_cast< sal_uInt16 >( GetTab(i) ) - nPos;
193 0 : aHeaderBar.SetItemSize( i, nNewSize );
194 0 : nPos= static_cast< sal_uInt16 >( GetTab(i) );
195 : }
196 : }
197 0 : bPaintFlag=sal_True;
198 0 : }
199 0 : void SvxSimpleTable::InsertHeaderEntry(const rtl::OUString& rText,
200 : sal_uInt16 nCol, HeaderBarItemBits nBits)
201 : {
202 0 : sal_Int32 nEnd = rText.indexOf( sal_Unicode( '\t' ) );
203 0 : if( nEnd == -1 )
204 : {
205 0 : aHeaderBar.InsertItem(nHeaderItemId++, rText, 0, nBits, nCol);
206 : }
207 : else
208 : {
209 0 : sal_Int32 nIndex = 0;
210 0 : do
211 : {
212 0 : rtl::OUString aString = rText.getToken(0, '\t', nIndex);
213 0 : aHeaderBar.InsertItem(nHeaderItemId++, aString, 0, nBits, nCol);
214 : }
215 : while ( nIndex >= 0 );
216 : }
217 0 : SetTabs();
218 0 : }
219 :
220 0 : void SvxSimpleTable::ClearHeader()
221 : {
222 0 : aHeaderBar.Clear();
223 0 : }
224 :
225 0 : void SvxSimpleTable::ShowTable()
226 : {
227 0 : m_rParentTableContainer.Show();
228 0 : }
229 :
230 0 : void SvxSimpleTable::HideTable()
231 : {
232 0 : m_rParentTableContainer.Hide();
233 0 : }
234 :
235 0 : sal_Bool SvxSimpleTable::IsVisible() const
236 : {
237 0 : return m_rParentTableContainer.IsVisible();
238 : }
239 :
240 0 : void SvxSimpleTable::EnableTable()
241 : {
242 0 : m_rParentTableContainer.Enable();
243 0 : }
244 :
245 0 : void SvxSimpleTable::DisableTable()
246 : {
247 0 : m_rParentTableContainer.Disable();
248 0 : }
249 :
250 0 : sal_Bool SvxSimpleTable::IsEnabled() const
251 : {
252 0 : return m_rParentTableContainer.IsEnabled();
253 : }
254 :
255 0 : sal_uInt16 SvxSimpleTable::GetSelectedCol()
256 : {
257 0 : return (aHeaderBar.GetCurItemId()-1);
258 : }
259 :
260 0 : void SvxSimpleTable::SortByCol(sal_uInt16 nCol,sal_Bool bDir)
261 : {
262 0 : bSortDirection=bDir;
263 0 : if(nSortCol!=0xFFFF)
264 0 : aHeaderBar.SetItemBits(nSortCol+1,HIB_STDSTYLE);
265 :
266 0 : if (nCol != 0xFFFF)
267 : {
268 0 : if(bDir)
269 : {
270 0 : aHeaderBar.SetItemBits( nCol+1, HIB_STDSTYLE | HIB_DOWNARROW);
271 0 : GetModel()->SetSortMode(SortAscending);
272 : }
273 : else
274 : {
275 0 : aHeaderBar.SetItemBits( nCol+1, HIB_STDSTYLE | HIB_UPARROW);
276 0 : GetModel()->SetSortMode(SortDescending);
277 : }
278 0 : nSortCol=nCol;
279 0 : GetModel()->SetCompareHdl( LINK( this, SvxSimpleTable, CompareHdl));
280 0 : GetModel()->Resort();
281 : }
282 : else
283 0 : GetModel()->SetSortMode(SortNone);
284 0 : nSortCol=nCol;
285 0 : }
286 :
287 0 : void SvxSimpleTable::HBarClick()
288 : {
289 0 : sal_uInt16 nId=aHeaderBar.GetCurItemId();
290 :
291 0 : if (aHeaderBar.GetItemBits(nId) & HIB_CLICKABLE)
292 : {
293 0 : if(nId==nSortCol+1)
294 : {
295 0 : SortByCol(nId-1,!bSortDirection);
296 : }
297 : else
298 : {
299 0 : SortByCol(nId-1,bSortDirection);
300 : }
301 :
302 0 : aHeaderBarClickLink.Call(this);
303 : }
304 0 : }
305 :
306 0 : void SvxSimpleTable::HBarDblClick()
307 : {
308 0 : aHeaderBarDblClickLink.Call(this);
309 0 : }
310 :
311 0 : void SvxSimpleTable::HBarStartDrag()
312 : {
313 0 : if(!aHeaderBar.IsItemMode())
314 : {
315 : Rectangle aSizeRect(Point(0,0),
316 0 : SvHeaderTabListBox::GetOutputSizePixel());
317 0 : aSizeRect.Left()=-GetXOffset()+aHeaderBar.GetDragPos();
318 0 : aSizeRect.Right()=-GetXOffset()+aHeaderBar.GetDragPos();
319 0 : ShowTracking( aSizeRect, SHOWTRACK_SPLIT );
320 : }
321 0 : }
322 0 : void SvxSimpleTable::HBarDrag()
323 : {
324 0 : HideTracking();
325 0 : if(!aHeaderBar.IsItemMode())
326 : {
327 : Rectangle aSizeRect(Point(0,0),
328 0 : SvHeaderTabListBox::GetOutputSizePixel());
329 0 : aSizeRect.Left()=-GetXOffset()+aHeaderBar.GetDragPos();
330 0 : aSizeRect.Right()=-GetXOffset()+aHeaderBar.GetDragPos();
331 0 : ShowTracking( aSizeRect, SHOWTRACK_SPLIT );
332 : }
333 0 : }
334 0 : void SvxSimpleTable::HBarEndDrag()
335 : {
336 0 : HideTracking();
337 0 : sal_uInt16 nPrivTabCount=TabCount();
338 :
339 0 : if(nPrivTabCount)
340 : {
341 0 : if(nPrivTabCount>aHeaderBar.GetItemCount())
342 0 : nPrivTabCount=aHeaderBar.GetItemCount();
343 :
344 0 : sal_uInt16 nPos=0;
345 0 : sal_uInt16 nNewSize=0;
346 0 : for(sal_uInt16 i=1;i<nPrivTabCount;i++)
347 : {
348 0 : nNewSize = static_cast< sal_uInt16 >( aHeaderBar.GetItemSize(i) ) + nPos;
349 0 : SetTab( i, nNewSize, MAP_PIXEL );
350 0 : nPos = nNewSize;
351 : }
352 : }
353 0 : bPaintFlag=sal_False;
354 0 : Invalidate();
355 0 : Update();
356 0 : }
357 :
358 0 : CommandEvent SvxSimpleTable::GetCommandEvent() const
359 : {
360 0 : return aCEvt;
361 : }
362 :
363 0 : void SvxSimpleTable::Command( const CommandEvent& rCEvt )
364 : {
365 0 : aCEvt=rCEvt;
366 0 : aCommandLink.Call(this);
367 0 : SvHeaderTabListBox::Command(rCEvt);
368 0 : }
369 :
370 0 : IMPL_LINK( SvxSimpleTable, StartDragHdl, HeaderBar*, pCtr)
371 : {
372 0 : if(pCtr==&aHeaderBar)
373 : {
374 0 : HBarStartDrag();
375 : }
376 0 : return 0;
377 : }
378 :
379 0 : IMPL_LINK( SvxSimpleTable, DragHdl, HeaderBar*, pCtr)
380 : {
381 0 : if(pCtr==&aHeaderBar)
382 : {
383 0 : HBarDrag();
384 : }
385 0 : return 0;
386 : }
387 :
388 0 : IMPL_LINK( SvxSimpleTable, EndDragHdl, HeaderBar*, pCtr)
389 : {
390 0 : if(pCtr==&aHeaderBar)
391 : {
392 0 : HBarEndDrag();
393 : }
394 0 : return 0;
395 : }
396 :
397 0 : IMPL_LINK( SvxSimpleTable, HeaderBarClick, HeaderBar*, pCtr)
398 : {
399 0 : if(pCtr==&aHeaderBar)
400 : {
401 0 : HBarClick();
402 : }
403 0 : return 0;
404 : }
405 :
406 0 : IMPL_LINK( SvxSimpleTable, HeaderBarDblClick, HeaderBar*, pCtr)
407 : {
408 0 : if(pCtr==&aHeaderBar)
409 : {
410 0 : HBarDblClick();
411 : }
412 0 : return 0;
413 : }
414 :
415 0 : SvLBoxItem* SvxSimpleTable::GetEntryAtPos( SvTreeListEntry* pEntry, sal_uInt16 nPos ) const
416 : {
417 : DBG_ASSERT(pEntry,"GetEntryText:Invalid Entry");
418 0 : SvLBoxItem* pItem = NULL;
419 :
420 0 : if( pEntry )
421 : {
422 0 : sal_uInt16 nCount = pEntry->ItemCount();
423 :
424 0 : nPos++;
425 :
426 0 : if( nTreeFlags & TREEFLAG_CHKBTN ) nPos++;
427 :
428 0 : if( nPos < nCount )
429 : {
430 0 : pItem = pEntry->GetItem( nPos);
431 : }
432 : }
433 0 : return pItem;
434 : }
435 :
436 0 : StringCompare SvxSimpleTable::ColCompare(SvTreeListEntry* pLeft,SvTreeListEntry* pRight)
437 : {
438 0 : StringCompare eCompare=COMPARE_EQUAL;
439 :
440 0 : SvLBoxItem* pLeftItem = GetEntryAtPos( pLeft, nSortCol);
441 0 : SvLBoxItem* pRightItem = GetEntryAtPos( pRight, nSortCol);
442 :
443 :
444 0 : if(pLeftItem != NULL && pRightItem != NULL)
445 : {
446 0 : sal_uInt16 nLeftKind = pLeftItem->GetType();
447 0 : sal_uInt16 nRightKind = pRightItem->GetType();
448 :
449 0 : if(nRightKind == SV_ITEM_ID_LBOXSTRING &&
450 : nLeftKind == SV_ITEM_ID_LBOXSTRING )
451 : {
452 0 : IntlWrapper aIntlWrapper( Application::GetSettings().GetLanguageTag() );
453 0 : const CollatorWrapper* pCollator = aIntlWrapper.getCaseCollator();
454 :
455 : eCompare=(StringCompare)pCollator->compareString( ((SvLBoxString*)pLeftItem)->GetText(),
456 0 : ((SvLBoxString*)pRightItem)->GetText());
457 :
458 0 : if(eCompare==COMPARE_EQUAL) eCompare=COMPARE_LESS;
459 : }
460 : }
461 0 : return eCompare;
462 : }
463 :
464 0 : IMPL_LINK( SvxSimpleTable, CompareHdl, SvSortData*, pData)
465 : {
466 0 : SvTreeListEntry* pLeft = (SvTreeListEntry*)(pData->pLeft );
467 0 : SvTreeListEntry* pRight = (SvTreeListEntry*)(pData->pRight );
468 0 : return (long) ColCompare(pLeft,pRight);
469 : }
470 :
471 :
472 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|