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 "DesignView.hxx"
21 : #include <tools/debug.hxx>
22 : #include "ReportController.hxx"
23 : #include <comphelper/types.hxx>
24 : #include <unotools/syslocale.hxx>
25 : #include <unotools/viewoptions.hxx>
26 : #include "RptDef.hxx"
27 : #include "UITools.hxx"
28 : #include "RptObject.hxx"
29 : #include "propbrw.hxx"
30 : #include <toolkit/helper/convert.hxx>
31 : #include "helpids.hrc"
32 : #include "SectionView.hxx"
33 : #include "ReportSection.hxx"
34 : #include "rptui_slotid.hrc"
35 : #include <svx/svxids.hrc>
36 : #include "AddField.hxx"
37 : #include "ScrollHelper.hxx"
38 : #include "Navigator.hxx"
39 : #include "SectionWindow.hxx"
40 : #include "RptResId.hrc"
41 :
42 : #include <vcl/settings.hxx>
43 : #include <vcl/svapp.hxx>
44 :
45 : namespace rptui
46 : {
47 : using namespace ::dbaui;
48 : using namespace ::utl;
49 : using namespace ::com::sun::star;
50 : using namespace uno;
51 : using namespace lang;
52 : using namespace beans;
53 : using namespace container;
54 :
55 : #define START_SIZE_TASKPANE 30
56 : #define COLSET_ID 1
57 : #define REPORT_ID 2
58 : #define TASKPANE_ID 3
59 :
60 0 : class OTaskWindow : public vcl::Window
61 : {
62 : PropBrw* m_pPropWin;
63 : public:
64 0 : OTaskWindow(vcl::Window* _pParent) : Window(_pParent),m_pPropWin(NULL){}
65 :
66 0 : inline void setPropertyBrowser(PropBrw* _pPropWin)
67 : {
68 0 : m_pPropWin = _pPropWin;
69 0 : }
70 :
71 0 : virtual void Resize() SAL_OVERRIDE
72 : {
73 0 : const Size aSize = GetOutputSizePixel();
74 0 : if ( m_pPropWin && aSize.Height() && aSize.Width() )
75 0 : m_pPropWin->SetSizePixel(aSize);
76 0 : }
77 : };
78 :
79 :
80 : // class ODesignView
81 :
82 :
83 0 : ODesignView::ODesignView( vcl::Window* pParent,
84 : const Reference< XComponentContext >& _rxOrb,
85 : OReportController& _rController) :
86 : ODataView( pParent, _rController, _rxOrb, WB_DIALOGCONTROL )
87 : ,m_aSplitWin(this)
88 : ,m_rReportController( _rController )
89 : ,m_aScrollWindow(this)
90 : ,m_pPropWin(NULL)
91 : ,m_pAddField(NULL)
92 : ,m_pCurrentView(NULL)
93 : ,m_pReportExplorer(NULL)
94 : ,m_eMode( RPTUI_SELECT )
95 : ,m_nCurrentPosition(USHRT_MAX)
96 : ,m_eActObj( OBJ_NONE )
97 : ,m_bFirstDraw(false)
98 : ,m_aGridSizeCoarse( 1000, 1000 ) // #i93595# 100TH_MM changed to grid using coarse 1 cm grid
99 : ,m_aGridSizeFine( 250, 250 ) // and a 0,25 cm subdivision for better visualisation
100 : ,m_bGridVisible(true)
101 : ,m_bGridSnap(true)
102 0 : ,m_bDeleted( false )
103 : {
104 0 : SetHelpId(UID_RPT_RPT_APP_VIEW);
105 0 : ImplInitSettings();
106 :
107 0 : SetMapMode( MapMode( MAP_100TH_MM ) );
108 :
109 : // now create the task pane on the right side :-)
110 0 : m_pTaskPane = new OTaskWindow(this);
111 :
112 0 : m_aSplitWin.InsertItem( COLSET_ID,100,SPLITWINDOW_APPEND, 0, SWIB_PERCENTSIZE | SWIB_COLSET );
113 0 : m_aSplitWin.InsertItem( REPORT_ID, &m_aScrollWindow, 100, SPLITWINDOW_APPEND, COLSET_ID, SWIB_PERCENTSIZE);
114 :
115 : // Splitter einrichten
116 0 : m_aSplitWin.SetSplitHdl(LINK(this, ODesignView,SplitHdl));
117 0 : m_aSplitWin.ShowAutoHideButton();
118 0 : m_aSplitWin.SetAlign(WINDOWALIGN_LEFT);
119 0 : m_aSplitWin.Show();
120 :
121 0 : m_aMarkTimer.SetTimeout( 100 );
122 0 : m_aMarkTimer.SetTimeoutHdl( LINK( this, ODesignView, MarkTimeout ) );
123 0 : }
124 :
125 :
126 0 : ODesignView::~ODesignView()
127 : {
128 0 : m_bDeleted = true;
129 0 : Hide();
130 0 : m_aScrollWindow.Hide();
131 0 : m_aMarkTimer.Stop();
132 0 : if ( m_pPropWin )
133 : {
134 0 : notifySystemWindow(this,m_pPropWin,::comphelper::mem_fun(&TaskPaneList::RemoveWindow));
135 0 : ::std::unique_ptr<vcl::Window> aTemp2(m_pPropWin);
136 0 : m_pPropWin = NULL;
137 : }
138 0 : if ( m_pAddField )
139 : {
140 0 : SvtViewOptions aDlgOpt( E_WINDOW, OUString( UID_RPT_RPT_APP_VIEW ) );
141 0 : aDlgOpt.SetWindowState(OStringToOUString(m_pAddField->GetWindowState(WINDOWSTATE_MASK_ALL), RTL_TEXTENCODING_ASCII_US));
142 0 : notifySystemWindow(this,m_pAddField,::comphelper::mem_fun(&TaskPaneList::RemoveWindow));
143 0 : ::std::unique_ptr<vcl::Window> aTemp2(m_pAddField);
144 0 : m_pAddField = NULL;
145 : }
146 0 : if ( m_pReportExplorer )
147 : {
148 0 : SvtViewOptions aDlgOpt(E_WINDOW, OStringToOUString(m_pReportExplorer->GetHelpId(), RTL_TEXTENCODING_UTF8));
149 0 : aDlgOpt.SetWindowState(OStringToOUString(m_pReportExplorer->GetWindowState(WINDOWSTATE_MASK_ALL), RTL_TEXTENCODING_ASCII_US));
150 0 : notifySystemWindow(this,m_pReportExplorer,::comphelper::mem_fun(&TaskPaneList::RemoveWindow));
151 0 : ::std::unique_ptr<vcl::Window> aTemp2(m_pReportExplorer);
152 0 : m_pReportExplorer = NULL;
153 : }
154 : {
155 0 : ::std::unique_ptr<vcl::Window> aTemp2(m_pTaskPane);
156 0 : m_pTaskPane = NULL;
157 : }
158 0 : }
159 :
160 0 : void ODesignView::initialize()
161 : {
162 0 : SetMapMode( MapMode( MAP_100TH_MM ) );
163 0 : m_aScrollWindow.initialize();
164 0 : m_aScrollWindow.Show();
165 0 : }
166 :
167 0 : void ODesignView::DataChanged( const DataChangedEvent& rDCEvt )
168 : {
169 0 : ODataView::DataChanged( rDCEvt );
170 :
171 0 : if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
172 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
173 : {
174 0 : ImplInitSettings();
175 0 : Invalidate();
176 : }
177 0 : }
178 :
179 0 : bool ODesignView::PreNotify( NotifyEvent& rNEvt )
180 : {
181 0 : bool nRet = ODataView::PreNotify(rNEvt); // 1 := has to be handled here
182 0 : switch(rNEvt.GetType())
183 : {
184 : case EVENT_KEYINPUT:
185 0 : if ( (m_pPropWin && m_pPropWin->HasChildPathFocus()) )
186 0 : return false;
187 0 : if ( (m_pAddField && m_pAddField->HasChildPathFocus()) )
188 0 : return false;
189 0 : if ( (m_pReportExplorer && m_pReportExplorer->HasChildPathFocus()) )
190 0 : return false;
191 : {
192 0 : const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
193 0 : if ( handleKeyEvent(*pKeyEvent) )
194 0 : nRet = true;
195 0 : else if ( nRet && m_pAccel.get() )
196 : {
197 0 : const vcl::KeyCode& rCode = pKeyEvent->GetKeyCode();
198 0 : util::URL aUrl;
199 0 : aUrl.Complete = m_pAccel->findCommand(svt::AcceleratorExecute::st_VCLKey2AWTKey(rCode));
200 0 : if ( aUrl.Complete.isEmpty() || !m_rController.isCommandEnabled( aUrl.Complete ) )
201 0 : nRet = false;
202 : }
203 : }
204 0 : break;
205 : default:
206 0 : break;
207 : }
208 :
209 0 : return nRet;
210 : }
211 :
212 0 : void ODesignView::resizeDocumentView(Rectangle& _rPlayground)
213 : {
214 0 : if ( !_rPlayground.IsEmpty() )
215 : {
216 0 : const Size aPlaygroundSize( _rPlayground.GetSize() );
217 :
218 : // calc the split pos, and forward it to the controller
219 0 : sal_Int32 nSplitPos = getController().getSplitPos();
220 0 : if ( 0 != aPlaygroundSize.Width() )
221 : {
222 0 : if ( ( -1 == nSplitPos )
223 0 : || ( nSplitPos >= aPlaygroundSize.Width() )
224 : )
225 : {
226 0 : long nMinWidth = static_cast<long>(0.1*aPlaygroundSize.Width());
227 0 : if ( m_pPropWin && m_pPropWin->IsVisible() )
228 0 : nMinWidth = m_pPropWin->GetMinOutputSizePixel().Width();
229 0 : nSplitPos = static_cast<sal_Int32>(_rPlayground.Right() - nMinWidth);
230 0 : getController().setSplitPos(nSplitPos);
231 : }
232 : }
233 :
234 0 : if ( m_aSplitWin.IsItemValid(TASKPANE_ID) )
235 : {
236 : // normalize the split pos
237 0 : const long nSplitterWidth = GetSettings().GetStyleSettings().GetSplitSize();
238 0 : Point aTaskPanePos(nSplitPos + nSplitterWidth, _rPlayground.Top());
239 0 : if (m_pTaskPane && m_pTaskPane->IsVisible() && m_pPropWin)
240 : {
241 0 : aTaskPanePos.X() = aPlaygroundSize.Width() - m_pTaskPane->GetSizePixel().Width();
242 0 : sal_Int32 nMinWidth = m_pPropWin->getMinimumSize().Width();
243 0 : if ( nMinWidth > (aPlaygroundSize.Width() - aTaskPanePos.X()) )
244 : {
245 0 : aTaskPanePos.X() = aPlaygroundSize.Width() - nMinWidth;
246 : }
247 0 : nSplitPos = aTaskPanePos.X() - nSplitterWidth;
248 0 : getController().setSplitPos(nSplitPos);
249 :
250 0 : const long nTaskPaneSize = static_cast<long>((aPlaygroundSize.Width() - aTaskPanePos.X())*100/aPlaygroundSize.Width());
251 0 : if ( m_aSplitWin.GetItemSize( TASKPANE_ID ) != nTaskPaneSize )
252 : {
253 0 : m_aSplitWin.SetItemSize( REPORT_ID, 99 - nTaskPaneSize );
254 0 : m_aSplitWin.SetItemSize( TASKPANE_ID, nTaskPaneSize );
255 : }
256 : }
257 : }
258 : // set the size of the report window
259 0 : m_aSplitWin.SetPosSizePixel( _rPlayground.TopLeft(),aPlaygroundSize );
260 : }
261 : // just for completeness: there is no space left, we occupied it all ...
262 0 : _rPlayground.SetPos( _rPlayground.BottomRight() );
263 0 : _rPlayground.SetSize( Size( 0, 0 ) );
264 :
265 0 : }
266 :
267 : // set the view readonly or not
268 0 : void ODesignView::setReadOnly(bool /*_bReadOnly*/)
269 : {
270 0 : }
271 :
272 0 : IMPL_LINK_NOARG(ODesignView, MarkTimeout)
273 : {
274 0 : if ( m_pPropWin && m_pPropWin->IsVisible() )
275 : {
276 0 : m_pPropWin->Update(m_pCurrentView);
277 0 : uno::Reference<beans::XPropertySet> xProp(m_xReportComponent,uno::UNO_QUERY);
278 0 : if ( xProp.is() )
279 : {
280 0 : m_pPropWin->Update(xProp);
281 0 : static_cast<OTaskWindow*>(m_pTaskPane)->Resize();
282 : }
283 0 : Resize();
284 : }
285 :
286 0 : return 0;
287 : }
288 :
289 :
290 0 : void ODesignView::SetMode( DlgEdMode _eNewMode )
291 : {
292 0 : m_eMode = _eNewMode;
293 0 : if ( m_eMode == RPTUI_SELECT )
294 0 : m_eActObj = OBJ_NONE;
295 :
296 0 : m_aScrollWindow.SetMode(_eNewMode);
297 0 : }
298 :
299 0 : void ODesignView::SetInsertObj( sal_uInt16 eObj,const OUString& _sShapeType )
300 : {
301 0 : m_eActObj = eObj;
302 0 : m_aScrollWindow.SetInsertObj( eObj,_sShapeType );
303 0 : }
304 :
305 0 : OUString ODesignView::GetInsertObjString() const
306 : {
307 0 : return m_aScrollWindow.GetInsertObjString();
308 : }
309 :
310 :
311 :
312 :
313 0 : void ODesignView::Cut()
314 : {
315 0 : Copy();
316 0 : Delete();
317 0 : }
318 :
319 :
320 :
321 0 : void ODesignView::Copy()
322 : {
323 0 : m_aScrollWindow.Copy();
324 0 : }
325 :
326 :
327 :
328 0 : void ODesignView::Paste()
329 : {
330 0 : m_aScrollWindow.Paste();
331 0 : }
332 :
333 0 : void ODesignView::Delete()
334 : {
335 0 : m_aScrollWindow.Delete();
336 0 : }
337 :
338 0 : bool ODesignView::HasSelection() const
339 : {
340 0 : return m_aScrollWindow.HasSelection();
341 : }
342 :
343 :
344 0 : bool ODesignView::IsPasteAllowed() const
345 : {
346 0 : return m_aScrollWindow.IsPasteAllowed();
347 : }
348 :
349 :
350 0 : void ODesignView::UpdatePropertyBrowserDelayed(OSectionView& _rView)
351 : {
352 0 : if ( m_pCurrentView != &_rView )
353 : {
354 0 : if ( m_pCurrentView )
355 0 : m_aScrollWindow.setMarked(m_pCurrentView,false);
356 0 : m_pCurrentView = &_rView;
357 0 : if ( m_pCurrentView )
358 0 : m_aScrollWindow.setMarked(m_pCurrentView,true);
359 0 : m_xReportComponent.clear();
360 0 : DlgEdHint aHint( RPTUI_HINT_SELECTIONCHANGED );
361 0 : Broadcast( aHint );
362 : }
363 0 : m_aMarkTimer.Start();
364 0 : }
365 :
366 :
367 0 : void ODesignView::toggleGrid(bool _bGridVisible)
368 : {
369 0 : m_aScrollWindow.toggleGrid(_bGridVisible);
370 0 : }
371 :
372 0 : sal_uInt16 ODesignView::getSectionCount() const
373 : {
374 0 : return m_aScrollWindow.getSectionCount();
375 : }
376 :
377 0 : void ODesignView::showRuler(bool _bShow)
378 : {
379 0 : m_aScrollWindow.showRuler(_bShow);
380 0 : }
381 :
382 0 : void ODesignView::removeSection(sal_uInt16 _nPosition)
383 : {
384 0 : m_aScrollWindow.removeSection(_nPosition);
385 0 : }
386 :
387 0 : void ODesignView::addSection(const uno::Reference< report::XSection >& _xSection,const OUString& _sColorEntry,sal_uInt16 _nPosition)
388 : {
389 0 : m_aScrollWindow.addSection(_xSection,_sColorEntry,_nPosition);
390 0 : }
391 :
392 0 : void ODesignView::GetFocus()
393 : {
394 0 : Window::GetFocus();
395 :
396 0 : if ( !m_bDeleted )
397 : {
398 0 : ::boost::shared_ptr<OSectionWindow> pSectionWindow = m_aScrollWindow.getMarkedSection();
399 0 : if ( pSectionWindow )
400 0 : pSectionWindow->GrabFocus();
401 : }
402 0 : }
403 :
404 0 : void ODesignView::ImplInitSettings()
405 : {
406 0 : SetBackground( Wallpaper( Application::GetSettings().GetStyleSettings().GetFaceColor() ));
407 0 : SetFillColor( Application::GetSettings().GetStyleSettings().GetFaceColor() );
408 0 : SetTextFillColor( Application::GetSettings().GetStyleSettings().GetFaceColor() );
409 0 : }
410 :
411 0 : IMPL_LINK( ODesignView, SplitHdl, void*, )
412 : {
413 0 : const Size aOutputSize = GetOutputSizePixel();
414 0 : const long nTest = aOutputSize.Width() * m_aSplitWin.GetItemSize(TASKPANE_ID) / 100;
415 0 : long nMinWidth = static_cast<long>(0.1*aOutputSize.Width());
416 0 : if ( m_pPropWin && m_pPropWin->IsVisible() )
417 0 : nMinWidth = m_pPropWin->GetMinOutputSizePixel().Width();
418 :
419 0 : if ( (aOutputSize.Width() - nTest) >= nMinWidth && nTest > m_aScrollWindow.getMaxMarkerWidth(false) )
420 : {
421 0 : long nOldSplitPos = getController().getSplitPos();
422 : (void)nOldSplitPos;
423 0 : getController().setSplitPos(nTest);
424 : }
425 :
426 0 : return 0L;
427 : }
428 :
429 0 : void ODesignView::SelectAll(const sal_uInt16 _nObjectType)
430 : {
431 0 : m_aScrollWindow.SelectAll(_nObjectType);
432 0 : }
433 :
434 0 : void ODesignView::unmarkAllObjects(OSectionView* _pSectionView)
435 : {
436 0 : m_aScrollWindow.unmarkAllObjects(_pSectionView);
437 0 : }
438 :
439 0 : void ODesignView::togglePropertyBrowser(bool _bToogleOn)
440 : {
441 0 : if ( !m_pPropWin && _bToogleOn )
442 : {
443 0 : m_pPropWin = new PropBrw(getController().getORB(), m_pTaskPane,this);
444 0 : m_pPropWin->Invalidate();
445 0 : static_cast<OTaskWindow*>(m_pTaskPane)->setPropertyBrowser(m_pPropWin);
446 0 : notifySystemWindow(this,m_pPropWin,::comphelper::mem_fun(&TaskPaneList::AddWindow));
447 : }
448 0 : if ( m_pPropWin && _bToogleOn != m_pPropWin->IsVisible() )
449 : {
450 0 : if ( !m_pCurrentView && !m_xReportComponent.is() )
451 0 : m_xReportComponent = getController().getReportDefinition();
452 :
453 0 : const bool bWillBeVisible = _bToogleOn;
454 0 : m_pPropWin->Show(bWillBeVisible);
455 0 : m_pTaskPane->Show(bWillBeVisible);
456 0 : m_pTaskPane->Invalidate();
457 :
458 0 : if ( bWillBeVisible )
459 0 : m_aSplitWin.InsertItem( TASKPANE_ID, m_pTaskPane,START_SIZE_TASKPANE, SPLITWINDOW_APPEND, COLSET_ID, SWIB_PERCENTSIZE);
460 : else
461 0 : m_aSplitWin.RemoveItem(TASKPANE_ID);
462 :
463 0 : if ( bWillBeVisible )
464 0 : m_aMarkTimer.Start();
465 : }
466 0 : }
467 :
468 0 : void ODesignView::showProperties(const uno::Reference< uno::XInterface>& _xReportComponent)
469 : {
470 0 : if ( m_xReportComponent != _xReportComponent )
471 : {
472 0 : m_xReportComponent = _xReportComponent;
473 0 : if ( m_pCurrentView )
474 0 : m_aScrollWindow.setMarked(m_pCurrentView,false);
475 0 : m_pCurrentView = NULL;
476 0 : m_aMarkTimer.Start();
477 : }
478 0 : }
479 :
480 0 : bool ODesignView::isReportExplorerVisible() const
481 : {
482 0 : return m_pReportExplorer && m_pReportExplorer->IsVisible();
483 : }
484 :
485 0 : void ODesignView::toggleReportExplorer()
486 : {
487 0 : if ( !m_pReportExplorer )
488 : {
489 0 : OReportController& rReportController = getController();
490 0 : m_pReportExplorer = new ONavigator(this,rReportController);
491 0 : SvtViewOptions aDlgOpt(E_WINDOW, OStringToOUString(m_pReportExplorer->GetHelpId(), RTL_TEXTENCODING_UTF8));
492 0 : if ( aDlgOpt.Exists() )
493 0 : m_pReportExplorer->SetWindowState(OUStringToOString(aDlgOpt.GetWindowState(), RTL_TEXTENCODING_ASCII_US));
494 0 : m_pReportExplorer->AddEventListener(LINK(&rReportController,OReportController,EventLstHdl));
495 0 : notifySystemWindow(this,m_pReportExplorer,::comphelper::mem_fun(&TaskPaneList::AddWindow));
496 : }
497 : else
498 0 : m_pReportExplorer->Show(!m_pReportExplorer->IsVisible());
499 0 : }
500 :
501 0 : bool ODesignView::isAddFieldVisible() const
502 : {
503 0 : return m_pAddField && m_pAddField->IsVisible();
504 : }
505 :
506 0 : void ODesignView::toggleAddField()
507 : {
508 0 : if ( !m_pAddField )
509 : {
510 0 : uno::Reference< report::XReportDefinition > xReport(m_xReportComponent,uno::UNO_QUERY);
511 0 : uno::Reference< report::XReportComponent > xReportComponent(m_xReportComponent,uno::UNO_QUERY);
512 0 : OReportController& rReportController = getController();
513 0 : if ( !m_pCurrentView && !xReport.is() )
514 : {
515 0 : if ( xReportComponent.is() )
516 0 : xReport = xReportComponent->getSection()->getReportDefinition();
517 : else
518 0 : xReport = rReportController.getReportDefinition().get();
519 : }
520 0 : else if ( m_pCurrentView )
521 : {
522 0 : uno::Reference< report::XSection > xSection = m_pCurrentView->getReportSection()->getSection();
523 0 : xReport = xSection->getReportDefinition();
524 : }
525 0 : uno::Reference < beans::XPropertySet > xSet(rReportController.getRowSet(),uno::UNO_QUERY);
526 0 : m_pAddField = new OAddFieldWindow(this,xSet);
527 0 : m_pAddField->SetCreateHdl(LINK( &rReportController, OReportController, OnCreateHdl ) );
528 0 : SvtViewOptions aDlgOpt( E_WINDOW, OUString( UID_RPT_RPT_APP_VIEW ) );
529 0 : if ( aDlgOpt.Exists() )
530 0 : m_pAddField->SetWindowState(OUStringToOString(aDlgOpt.GetWindowState(), RTL_TEXTENCODING_ASCII_US));
531 0 : m_pAddField->Update();
532 0 : m_pAddField->AddEventListener(LINK(&rReportController,OReportController,EventLstHdl));
533 0 : notifySystemWindow(this,m_pAddField,::comphelper::mem_fun(&TaskPaneList::AddWindow));
534 0 : m_pAddField->Show();
535 : }
536 : else
537 0 : m_pAddField->Show(!m_pAddField->IsVisible());
538 0 : }
539 :
540 0 : uno::Reference< report::XSection > ODesignView::getCurrentSection() const
541 : {
542 0 : uno::Reference< report::XSection > xSection;
543 0 : if ( m_pCurrentView )
544 0 : xSection = m_pCurrentView->getReportSection()->getSection();
545 :
546 0 : return xSection;
547 : }
548 :
549 0 : uno::Reference< report::XReportComponent > ODesignView::getCurrentControlModel() const
550 : {
551 0 : uno::Reference< report::XReportComponent > xModel;
552 0 : if ( m_pCurrentView )
553 : {
554 0 : xModel = m_pCurrentView->getReportSection()->getCurrentControlModel();
555 : }
556 0 : return xModel;
557 : }
558 :
559 0 : ::boost::shared_ptr<OSectionWindow> ODesignView::getMarkedSection(NearSectionAccess nsa) const
560 : {
561 0 : return m_aScrollWindow.getMarkedSection(nsa);
562 : }
563 :
564 0 : ::boost::shared_ptr<OSectionWindow> ODesignView::getSectionWindow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const
565 : {
566 0 : return m_aScrollWindow.getSectionWindow(_xSection);
567 : }
568 :
569 0 : void ODesignView::markSection(const sal_uInt16 _nPos)
570 : {
571 0 : m_aScrollWindow.markSection(_nPos);
572 0 : }
573 :
574 0 : void ODesignView::fillCollapsedSections(::std::vector<sal_uInt16>& _rCollapsedPositions) const
575 : {
576 0 : m_aScrollWindow.fillCollapsedSections(_rCollapsedPositions);
577 0 : }
578 :
579 0 : void ODesignView::collapseSections(const uno::Sequence< beans::PropertyValue>& _aCollpasedSections)
580 : {
581 0 : m_aScrollWindow.collapseSections(_aCollpasedSections);
582 0 : }
583 :
584 0 : OUString ODesignView::getCurrentPage() const
585 : {
586 0 : return m_pPropWin ? m_pPropWin->getCurrentPage() : OUString();
587 : }
588 :
589 0 : void ODesignView::setCurrentPage(const OUString& _sLastActivePage)
590 : {
591 0 : if ( m_pPropWin )
592 0 : m_pPropWin->setCurrentPage(_sLastActivePage);
593 0 : }
594 :
595 0 : void ODesignView::alignMarkedObjects(sal_Int32 _nControlModification,bool _bAlignAtSection, bool bBoundRects)
596 : {
597 0 : m_aScrollWindow.alignMarkedObjects(_nControlModification, _bAlignAtSection,bBoundRects);
598 0 : }
599 :
600 0 : bool ODesignView::handleKeyEvent(const KeyEvent& _rEvent)
601 : {
602 0 : if ( (m_pPropWin && m_pPropWin->HasChildPathFocus()) )
603 0 : return false;
604 0 : if ( (m_pAddField && m_pAddField->HasChildPathFocus()) )
605 0 : return false;
606 0 : if ( (m_pReportExplorer && m_pReportExplorer->HasChildPathFocus()) )
607 0 : return false;
608 0 : return m_aScrollWindow.handleKeyEvent(_rEvent);
609 : }
610 :
611 0 : void ODesignView::setMarked(const uno::Reference< report::XSection>& _xSection,bool _bMark)
612 : {
613 0 : m_aScrollWindow.setMarked(_xSection,_bMark);
614 0 : if ( _bMark )
615 0 : UpdatePropertyBrowserDelayed(getMarkedSection()->getReportSection().getSectionView());
616 : else
617 0 : m_pCurrentView = NULL;
618 0 : }
619 :
620 0 : void ODesignView::setMarked(const uno::Sequence< uno::Reference< report::XReportComponent> >& _aShapes,bool _bMark)
621 : {
622 0 : m_aScrollWindow.setMarked(_aShapes,_bMark);
623 0 : if ( _aShapes.hasElements() && _bMark )
624 0 : showProperties(_aShapes[0]);
625 : else
626 0 : m_xReportComponent.clear();
627 0 : }
628 :
629 0 : void ODesignView::MouseButtonDown( const MouseEvent& rMEvt )
630 : {
631 0 : if ( rMEvt.IsLeft() )
632 : {
633 0 : const uno::Sequence< beans::PropertyValue> aArgs;
634 0 : getController().executeChecked(SID_SELECT_REPORT,aArgs);
635 : }
636 0 : ODataView::MouseButtonDown(rMEvt);
637 0 : }
638 :
639 0 : uno::Any ODesignView::getCurrentlyShownProperty() const
640 : {
641 0 : uno::Any aRet;
642 0 : ::boost::shared_ptr<OSectionWindow> pSectionWindow = getMarkedSection();
643 0 : if ( pSectionWindow )
644 : {
645 0 : ::std::vector< uno::Reference< uno::XInterface > > aSelection;
646 0 : pSectionWindow->getReportSection().fillControlModelSelection(aSelection);
647 0 : if ( !aSelection.empty() )
648 : {
649 0 : ::std::vector< uno::Reference< uno::XInterface > >::iterator aIter = aSelection.begin();
650 0 : uno::Sequence< uno::Reference< report::XReportComponent > > aSeq(aSelection.size());
651 0 : for(sal_Int32 i = 0; i < aSeq.getLength(); ++i,++aIter)
652 : {
653 0 : aSeq[i].set(*aIter,uno::UNO_QUERY);
654 : }
655 0 : aRet <<= aSeq;
656 0 : }
657 : }
658 0 : return aRet;
659 : }
660 :
661 0 : void ODesignView::fillControlModelSelection(::std::vector< uno::Reference< uno::XInterface > >& _rSelection) const
662 : {
663 0 : m_aScrollWindow.fillControlModelSelection(_rSelection);
664 0 : }
665 :
666 0 : void ODesignView::setGridSnap(bool bOn)
667 : {
668 0 : m_aScrollWindow.setGridSnap(bOn);
669 :
670 0 : }
671 :
672 0 : void ODesignView::setDragStripes(bool bOn)
673 : {
674 0 : m_aScrollWindow.setDragStripes(bOn);
675 0 : }
676 :
677 0 : bool ODesignView::isHandleEvent(sal_uInt16 /*_nId*/) const
678 : {
679 0 : return m_pPropWin && m_pPropWin->HasChildPathFocus();
680 : }
681 :
682 0 : sal_uInt32 ODesignView::getMarkedObjectCount() const
683 : {
684 0 : return m_aScrollWindow.getMarkedObjectCount();
685 : }
686 :
687 0 : void ODesignView::zoom(const Fraction& _aZoom)
688 : {
689 0 : m_aScrollWindow.zoom(_aZoom);
690 0 : }
691 :
692 0 : sal_uInt16 ODesignView::getZoomFactor(SvxZoomType _eType) const
693 : {
694 0 : return m_aScrollWindow.getZoomFactor(_eType);
695 : }
696 :
697 6 : } // rptui
698 :
699 :
700 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|