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 : #include "ScrollHelper.hxx"
20 : #include "DesignView.hxx"
21 : #include "ReportController.hxx"
22 : #include "ReportWindow.hxx"
23 : #include "UITools.hxx"
24 : #include <tools/debug.hxx>
25 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
26 : #include <toolkit/helper/convert.hxx>
27 :
28 : #include <vcl/settings.hxx>
29 : #include <vcl/svapp.hxx>
30 :
31 : namespace rptui
32 : {
33 : #define SECTION_OFFSET 3
34 : #define SCR_LINE_SIZE 10
35 : using namespace ::com::sun::star;
36 :
37 :
38 0 : void lcl_setScrollBar(sal_Int32 _nNewValue,const Point& _aPos,const Size& _aSize,ScrollBar& _rScrollBar)
39 : {
40 0 : _rScrollBar.SetPosSizePixel(_aPos,_aSize);
41 0 : _rScrollBar.SetPageSize( _nNewValue );
42 0 : _rScrollBar.SetVisibleSize( _nNewValue );
43 0 : }
44 :
45 :
46 0 : OScrollWindowHelper::OScrollWindowHelper( ODesignView* _pDesignView)
47 : : OScrollWindowHelper_BASE( _pDesignView,WB_DIALOGCONTROL)
48 : ,OPropertyChangeListener(m_aMutex)
49 : ,m_aHScroll( this, WB_HSCROLL|WB_REPEAT|WB_DRAG )
50 : ,m_aVScroll( this, WB_VSCROLL|WB_REPEAT|WB_DRAG )
51 : ,m_aCornerWin( this )
52 : ,m_pParent(_pDesignView)
53 : ,m_aReportWindow(this,m_pParent)
54 0 : ,m_pReportDefintionMultiPlexer(NULL)
55 : {
56 0 : SetMapMode( MapMode( MAP_100TH_MM ) );
57 :
58 0 : impl_initScrollBar( m_aHScroll );
59 0 : impl_initScrollBar( m_aVScroll );
60 :
61 0 : m_aReportWindow.SetMapMode( MapMode( MAP_100TH_MM ) );
62 0 : m_aReportWindow.Show();
63 :
64 : // normally we should be SCROLL_PANE
65 0 : SetAccessibleRole(accessibility::AccessibleRole::SCROLL_PANE);
66 0 : ImplInitSettings();
67 0 : }
68 :
69 :
70 0 : OScrollWindowHelper::~OScrollWindowHelper()
71 : {
72 0 : if ( m_pReportDefintionMultiPlexer.is() )
73 0 : m_pReportDefintionMultiPlexer->dispose();
74 0 : }
75 :
76 :
77 0 : void OScrollWindowHelper::impl_initScrollBar( ScrollBar& _rScrollBar ) const
78 : {
79 0 : AllSettings aSettings( _rScrollBar.GetSettings() );
80 0 : StyleSettings aStyle( aSettings.GetStyleSettings() );
81 0 : aStyle.SetDragFullOptions( aStyle.GetDragFullOptions() | DRAGFULL_OPTION_SCROLL ); // live scrolling
82 0 : aSettings.SetStyleSettings( aStyle );
83 0 : _rScrollBar.SetSettings( aSettings );
84 :
85 0 : _rScrollBar.SetScrollHdl( LINK( this, OScrollWindowHelper, ScrollHdl ) );
86 0 : _rScrollBar.SetLineSize( SCR_LINE_SIZE );
87 0 : }
88 :
89 :
90 0 : void OScrollWindowHelper::initialize()
91 : {
92 0 : uno::Reference<report::XReportDefinition> xReportDefinition = m_pParent->getController().getReportDefinition();
93 0 : m_pReportDefintionMultiPlexer = addStyleListener(xReportDefinition,this);
94 :
95 0 : m_aReportWindow.initialize();
96 0 : }
97 :
98 0 : void OScrollWindowHelper::setTotalSize(sal_Int32 _nWidth ,sal_Int32 _nHeight)
99 : {
100 0 : m_aTotalPixelSize.Width() = _nWidth;
101 0 : m_aTotalPixelSize.Height() = _nHeight;
102 :
103 : // now set the ranges without start marker
104 0 : Fraction aStartWidth(REPORT_STARTMARKER_WIDTH * m_pParent->getController().getZoomValue(),100);
105 0 : long nWidth = long(_nWidth - (double)aStartWidth);
106 0 : m_aHScroll.SetRangeMax( nWidth );
107 0 : m_aVScroll.SetRangeMax( m_aTotalPixelSize.Height() );
108 :
109 0 : Resize();
110 0 : }
111 :
112 0 : Size OScrollWindowHelper::ResizeScrollBars()
113 : {
114 : // get the new output-size in pixel
115 0 : Size aOutPixSz = GetOutputSizePixel();
116 0 : if ( aOutPixSz.Width() == 0 || aOutPixSz.Height() == 0 )
117 0 : return aOutPixSz;
118 :
119 0 : aOutPixSz.Height() -= m_aReportWindow.getRulerHeight();
120 : // determine the size of the output-area and if we need scrollbars
121 0 : const long nScrSize = GetSettings().GetStyleSettings().GetScrollBarSize();
122 0 : bool bVVisible = false; // by default no vertical-ScrollBar
123 0 : bool bHVisible = false; // by default no horizontal-ScrollBar
124 : bool bChanged; // determines if a visiblility was changed
125 0 : do
126 : {
127 0 : bChanged = false;
128 :
129 : // does we need a vertical ScrollBar
130 0 : if ( aOutPixSz.Width() < m_aTotalPixelSize.Width() && !bHVisible )
131 : {
132 0 : bHVisible = true;
133 0 : aOutPixSz.Height() -= nScrSize;
134 0 : bChanged = true;
135 : }
136 :
137 : // does we need a horizontal ScrollBar
138 0 : if ( aOutPixSz.Height() < m_aTotalPixelSize.Height() && !bVVisible )
139 : {
140 0 : bVVisible = true;
141 0 : aOutPixSz.Width() -= nScrSize;
142 0 : bChanged = true;
143 : }
144 :
145 : }
146 : while ( bChanged ); // until no visibility has changed
147 :
148 0 : aOutPixSz.Height() += m_aReportWindow.getRulerHeight();
149 :
150 : // show or hide scrollbars
151 0 : m_aVScroll.Show( bVVisible );
152 0 : m_aHScroll.Show( bHVisible );
153 :
154 : // disable painting in the corner between the scrollbars
155 0 : if ( bVVisible && bHVisible )
156 : {
157 0 : m_aCornerWin.SetPosSizePixel(Point(aOutPixSz.Width(), aOutPixSz.Height()), Size(nScrSize, nScrSize) );
158 0 : m_aCornerWin.Show();
159 : }
160 : else
161 0 : m_aCornerWin.Hide();
162 :
163 0 : const Point aOffset = LogicToPixel( Point( SECTION_OFFSET, SECTION_OFFSET ), MAP_APPFONT );
164 : // resize scrollbars and set their ranges
165 : {
166 0 : Fraction aStartWidth(long(REPORT_STARTMARKER_WIDTH*m_pParent->getController().getZoomValue()),100);
167 0 : const sal_Int32 nNewWidth = aOutPixSz.Width() - aOffset.X() - (long)aStartWidth;
168 0 : lcl_setScrollBar(nNewWidth,Point( (long)aStartWidth + aOffset.X(), aOutPixSz.Height() ),Size( nNewWidth, nScrSize ),m_aHScroll);
169 : }
170 : {
171 0 : const sal_Int32 nNewHeight = aOutPixSz.Height() - m_aReportWindow.getRulerHeight();
172 0 : lcl_setScrollBar(nNewHeight,Point( aOutPixSz.Width(), m_aReportWindow.getRulerHeight() ),Size( nScrSize,nNewHeight),m_aVScroll);
173 : }
174 :
175 0 : return aOutPixSz;
176 : }
177 :
178 0 : void OScrollWindowHelper::Resize()
179 : {
180 0 : OScrollWindowHelper_BASE::Resize();
181 0 : const Size aTotalOutputSize = ResizeScrollBars();
182 :
183 0 : m_aReportWindow.SetPosSizePixel(Point( 0, 0 ),aTotalOutputSize);
184 0 : }
185 :
186 0 : IMPL_LINK( OScrollWindowHelper, ScrollHdl, ScrollBar*, /*pScroll*/ )
187 : {
188 0 : m_aReportWindow.ScrollChildren( getThumbPos() );
189 0 : return 0;
190 : }
191 :
192 0 : void OScrollWindowHelper::addSection(const uno::Reference< report::XSection >& _xSection
193 : ,const OUString& _sColorEntry
194 : ,sal_uInt16 _nPosition)
195 : {
196 0 : m_aReportWindow.addSection(_xSection,_sColorEntry,_nPosition);
197 0 : }
198 :
199 0 : void OScrollWindowHelper::removeSection(sal_uInt16 _nPosition)
200 : {
201 0 : m_aReportWindow.removeSection(_nPosition);
202 0 : }
203 :
204 0 : void OScrollWindowHelper::toggleGrid(sal_Bool _bVisible)
205 : {
206 0 : m_aReportWindow.toggleGrid(_bVisible);
207 0 : }
208 :
209 0 : sal_uInt16 OScrollWindowHelper::getSectionCount() const
210 : {
211 0 : return m_aReportWindow.getSectionCount();
212 : }
213 :
214 0 : void OScrollWindowHelper::SetInsertObj( sal_uInt16 eObj,const OUString& _sShapeType )
215 : {
216 0 : m_aReportWindow.SetInsertObj(eObj,_sShapeType);
217 0 : }
218 :
219 0 : OUString OScrollWindowHelper::GetInsertObjString() const
220 : {
221 0 : return m_aReportWindow.GetInsertObjString();
222 : }
223 :
224 0 : void OScrollWindowHelper::SetMode( DlgEdMode _eNewMode )
225 : {
226 0 : m_aReportWindow.SetMode(_eNewMode);
227 0 : }
228 :
229 0 : sal_Bool OScrollWindowHelper::HasSelection() const
230 : {
231 0 : return m_aReportWindow.HasSelection();
232 : }
233 :
234 0 : void OScrollWindowHelper::Delete()
235 : {
236 0 : m_aReportWindow.Delete();
237 0 : }
238 :
239 0 : void OScrollWindowHelper::Copy()
240 : {
241 0 : m_aReportWindow.Copy();
242 0 : }
243 :
244 0 : void OScrollWindowHelper::Paste()
245 : {
246 0 : m_aReportWindow.Paste();
247 0 : }
248 :
249 0 : sal_Bool OScrollWindowHelper::IsPasteAllowed() const
250 : {
251 0 : return m_aReportWindow.IsPasteAllowed();
252 : }
253 :
254 0 : void OScrollWindowHelper::SelectAll(const sal_uInt16 _nObjectType)
255 : {
256 0 : m_aReportWindow.SelectAll(_nObjectType);
257 0 : }
258 :
259 0 : void OScrollWindowHelper::unmarkAllObjects(OSectionView* _pSectionView)
260 : {
261 0 : m_aReportWindow.unmarkAllObjects(_pSectionView);
262 0 : }
263 :
264 0 : sal_Int32 OScrollWindowHelper::getMaxMarkerWidth(sal_Bool _bWithEnd) const
265 : {
266 0 : return m_aReportWindow.getMaxMarkerWidth(_bWithEnd);
267 : }
268 :
269 0 : void OScrollWindowHelper::showRuler(sal_Bool _bShow)
270 : {
271 0 : m_aReportWindow.showRuler(_bShow);
272 0 : }
273 :
274 0 : sal_Bool OScrollWindowHelper::handleKeyEvent(const KeyEvent& _rEvent)
275 : {
276 0 : return m_aReportWindow.handleKeyEvent(_rEvent);
277 : }
278 :
279 0 : void OScrollWindowHelper::setMarked(OSectionView* _pSectionView,sal_Bool _bMark)
280 : {
281 0 : m_aReportWindow.setMarked(_pSectionView,_bMark);
282 0 : }
283 :
284 0 : void OScrollWindowHelper::setMarked(const uno::Reference< report::XSection>& _xSection,sal_Bool _bMark)
285 : {
286 0 : m_aReportWindow.setMarked(_xSection,_bMark);
287 0 : }
288 :
289 0 : void OScrollWindowHelper::setMarked(const uno::Sequence< uno::Reference< report::XReportComponent> >& _xShape,sal_Bool _bMark)
290 : {
291 0 : m_aReportWindow.setMarked(_xShape,_bMark);
292 0 : }
293 :
294 0 : ::boost::shared_ptr<OSectionWindow> OScrollWindowHelper::getMarkedSection(NearSectionAccess nsa) const
295 : {
296 0 : return m_aReportWindow.getMarkedSection(nsa);
297 : }
298 :
299 0 : ::boost::shared_ptr<OSectionWindow> OScrollWindowHelper::getSectionWindow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const
300 : {
301 0 : return m_aReportWindow.getSectionWindow(_xSection);
302 : }
303 :
304 0 : void OScrollWindowHelper::markSection(const sal_uInt16 _nPos)
305 : {
306 0 : m_aReportWindow.markSection(_nPos);
307 0 : }
308 :
309 0 : void OScrollWindowHelper::fillCollapsedSections(::std::vector<sal_uInt16>& _rCollapsedPositions) const
310 : {
311 0 : m_aReportWindow.fillCollapsedSections(_rCollapsedPositions);
312 0 : }
313 :
314 0 : void OScrollWindowHelper::collapseSections(const uno::Sequence< ::com::sun::star::beans::PropertyValue>& _aCollpasedSections)
315 : {
316 0 : m_aReportWindow.collapseSections(_aCollpasedSections);
317 0 : }
318 :
319 0 : bool OScrollWindowHelper::Notify( NotifyEvent& rNEvt )
320 : {
321 0 : const CommandEvent* pCommandEvent = rNEvt.GetCommandEvent();
322 0 : if ( pCommandEvent &&
323 0 : ( ((pCommandEvent->GetCommand() == COMMAND_WHEEL) ||
324 0 : (pCommandEvent->GetCommand() == COMMAND_STARTAUTOSCROLL) ||
325 0 : (pCommandEvent->GetCommand() == COMMAND_AUTOSCROLL))) )
326 : {
327 0 : ScrollBar* pHScrBar = NULL;
328 0 : ScrollBar* pVScrBar = NULL;
329 0 : if ( m_aHScroll.IsVisible() )
330 0 : pHScrBar = &m_aHScroll;
331 :
332 0 : if ( m_aVScroll.IsVisible() )
333 0 : pVScrBar = &m_aVScroll;
334 :
335 0 : if ( HandleScrollCommand( *pCommandEvent, pHScrBar, pVScrBar ) )
336 0 : return true;
337 : }
338 0 : return OScrollWindowHelper_BASE::Notify(rNEvt);
339 : }
340 :
341 0 : void OScrollWindowHelper::alignMarkedObjects(sal_Int32 _nControlModification,bool _bAlignAtSection, bool bBoundRects)
342 : {
343 0 : m_aReportWindow.alignMarkedObjects(_nControlModification, _bAlignAtSection, bBoundRects);
344 0 : }
345 :
346 0 : void OScrollWindowHelper::ImplInitSettings()
347 : {
348 0 : SetBackground( Wallpaper( Application::GetSettings().GetStyleSettings().GetFaceColor() ));
349 0 : SetFillColor( Application::GetSettings().GetStyleSettings().GetFaceColor() );
350 0 : SetTextFillColor( Application::GetSettings().GetStyleSettings().GetFaceColor() );
351 0 : }
352 :
353 0 : void OScrollWindowHelper::DataChanged( const DataChangedEvent& rDCEvt )
354 : {
355 0 : Window::DataChanged( rDCEvt );
356 :
357 0 : if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
358 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
359 : {
360 0 : ImplInitSettings();
361 0 : Invalidate();
362 : }
363 0 : }
364 :
365 0 : void OScrollWindowHelper::_propertyChanged(const beans::PropertyChangeEvent& /*_rEvent*/) throw( uno::RuntimeException)
366 : {
367 0 : m_aReportWindow.notifySizeChanged();
368 0 : }
369 :
370 0 : void OScrollWindowHelper::setGridSnap(sal_Bool bOn)
371 : {
372 0 : m_aReportWindow.setGridSnap(bOn);
373 0 : }
374 :
375 0 : void OScrollWindowHelper::setDragStripes(sal_Bool bOn)
376 : {
377 0 : m_aReportWindow.setDragStripes(bOn);
378 0 : }
379 :
380 0 : sal_uInt32 OScrollWindowHelper::getMarkedObjectCount() const
381 : {
382 0 : return m_aReportWindow.getMarkedObjectCount();
383 : }
384 :
385 0 : void OScrollWindowHelper::zoom(const Fraction& _aZoom)
386 : {
387 0 : m_aReportWindow.zoom(_aZoom);
388 0 : Resize();
389 0 : Invalidate(INVALIDATE_NOCHILDREN|INVALIDATE_TRANSPARENT);
390 0 : }
391 :
392 0 : void OScrollWindowHelper::fillControlModelSelection(::std::vector< uno::Reference< uno::XInterface > >& _rSelection) const
393 : {
394 0 : m_aReportWindow.fillControlModelSelection(_rSelection);
395 0 : }
396 :
397 0 : sal_uInt16 OScrollWindowHelper::getZoomFactor(SvxZoomType _eType) const
398 : {
399 0 : return m_aReportWindow.getZoomFactor(_eType);
400 : }
401 :
402 : } // rptui
403 :
404 :
405 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|