Home
last modified time | relevance | path

Searched refs:_xSection (Results 1 – 25 of 42) sorted by relevance

12

/trunk/main/reportdesign/source/ui/dlg/
H A DNavigator.cxx540 …SvLBoxEntry* pSection = insertEntry(_xSection->getName(),_pParent,_nImageId,_nPosition,new UserDat… in traverseSection()
541 const sal_Int32 nCount = _xSection->getCount(); in traverseSection()
605 traverseSection(_xSection,pReport,SID_REPORTHEADERFOOTER); in traverseReportHeader()
611 traverseSection(_xSection,pReport,SID_REPORTHEADERFOOTER); in traverseReportFooter()
617 traverseSection(_xSection,pReport,SID_PAGEHEADERFOOTER); in traversePageHeader()
623 traverseSection(_xSection,pReport,SID_PAGEHEADERFOOTER); in traversePageFooter()
648 SvLBoxEntry* pGroup = find(_xSection->getGroup()); in traverseGroupHeader()
650 traverseSection(_xSection,pGroup,SID_GROUPHEADER,1); in traverseGroupHeader()
655 SvLBoxEntry* pGroup = find(_xSection->getGroup()); in traverseGroupFooter()
657 traverseSection(_xSection,pGroup,SID_GROUPFOOTER); in traverseGroupFooter()
[all …]
/trunk/main/reportdesign/source/ui/misc/
H A DRptUndo.cxx59 if ( _xSection.is() ) in lcl_collectElements()
61 sal_Int32 nCount = _xSection->getCount(); in lcl_collectElements()
65 uno::Reference< drawing::XShape> xShape(_xSection->getByIndex(nCount-1),uno::UNO_QUERY); in lcl_collectElements()
67 _xSection->remove(xShape); in lcl_collectElements()
75 if ( _xSection.is() ) in lcl_insertElements()
85 _xSection->add(*aIter); in lcl_insertElements()
99 if ( _xSection.is() ) in lcl_setValues()
107 _xSection->setPropertyValue(aIter->first,aIter->second); in lcl_setValues()
163 void OSectionUndo::collectControls(const uno::Reference< report::XSection >& _xSection) in collectControls() argument
169 uno::Reference< beans::XPropertySetInfo> xInfo = _xSection->getPropertySetInfo(); in collectControls()
[all …]
/trunk/main/reportdesign/inc/
H A DReportVisitor.hxx37 …Header(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) = 0;
38 …Footer(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) = 0;
39 …Header(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) = 0;
40 …Footer(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) = 0;
45 …Header(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) = 0;
46 …Footer(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) = 0;
48 …Detail(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) = 0;
H A DRptModel.hxx82 …teNewPage(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection);
89 …* getPage(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection);
/trunk/main/reportdesign/source/filter/xml/
H A DxmlExport.cxx733 if ( !_xSection->getVisible() ) in exportSection()
738 sal_uInt16 nRet = _xSection->getForceNewPage(); in exportSection()
743 nRet = _xSection->getNewRowOrCol(); in exportSection()
746 if ( _xSection->getKeepTogether() ) in exportSection()
762 exportContainer(_xSection); in exportSection()
786 exportTableColumns(_xSection); in exportContainer()
972 exportShapes(_xSection); in exportContainer()
995 exportShapes(_xSection); in exportContainer()
1016 exportShapes(_xSection); in exportContainer()
1547 xShapeExport->seekShapes(_xSection.get()); in exportShapes()
[all …]
H A DxmlExport.hxx157 void exportContainer(const Reference< XSection>& _xSection);
158 …void exportShapes(const Reference< XSection>& _xSection,bool _bAddParagraph = t…
159 void exportTableColumns(const Reference< XSection>& _xSection);
H A DxmlSection.cxx69 ,const uno::Reference< report::XSection >& _xSection in DBG_NAME()
72 ,m_xSection(_xSection) in DBG_NAME()
/trunk/main/reportdesign/source/core/sdr/
H A DUndoActions.cxx67 …::XSection> , OGroupHelper> OGroupHelper::getMemberFunction(const Reference< XSection >& _xSection) in getMemberFunction() argument
70 uno::Reference< report::XGroup> xGroup = _xSection->getGroup(); in getMemberFunction()
71 if ( xGroup->getHeaderOn() && xGroup->getHeader() == _xSection ) in getMemberFunction()
76 …XSection> , OReportHelper> OReportHelper::getMemberFunction(const Reference< XSection >& _xSection) in getMemberFunction() argument
78 uno::Reference< report::XReportDefinition> xReportDefinition(_xSection->getReportDefinition()); in getMemberFunction()
80 … if ( xReportDefinition->getReportHeaderOn() && xReportDefinition->getReportHeader() == _xSection ) in getMemberFunction()
82 …else if ( xReportDefinition->getPageHeaderOn() && xReportDefinition->getPageHeader() == _xSection ) in getMemberFunction()
84 …else if ( xReportDefinition->getPageFooterOn() && xReportDefinition->getPageFooter() == _xSection ) in getMemberFunction()
86 else if ( xReportDefinition->getDetail() == _xSection ) in getMemberFunction()
H A DRptModel.cxx139 OReportPage* OReportModel::createNewPage(const uno::Reference< report::XSection >& _xSection) in createNewPage() argument
141 OReportPage* pPage = new OReportPage( *this ,_xSection); in createNewPage()
143 m_pUndoEnv->AddSection(_xSection); in createNewPage()
147 OReportPage* OReportModel::getPage(const uno::Reference< report::XSection >& _xSection) in getPage() argument
154 if ( pRptPage && pRptPage->getSection() == _xSection ) in getPage()
H A DUndoEnv.cxx525 void OXUndoEnvironment::AddSection(const Reference< report::XSection > & _xSection) in AddSection() argument
530 uno::Reference<container::XChild> xChild = _xSection.get(); in AddSection()
533 Reference< XInterface > xInt(_xSection); in AddSection()
543 void OXUndoEnvironment::RemoveSection(const Reference< report::XSection > & _xSection) in RemoveSection() argument
548 uno::Reference<container::XChild> xChild(_xSection.get()); in RemoveSection()
551 Reference< XInterface > xInt(_xSection); in RemoveSection()
/trunk/main/wizards/com/sun/star/wizards/reportbuilder/layout/
H A DReportBuilderLayouter.java655 if (_xSection != null) in insertLabel()
696 _xSection.add(xFixedText); in insertLabel()
745 if (_xSection != null) in insertFormattedField()
838 _xSection.add(xReportControlModel); in insertFormattedField()
872 …protected Rectangle insertVerticalLine(XSection _xSection, Rectangle _aRect, int _nWidth, int _nHe… in insertVerticalLine() argument
874 return insertLine(_xSection, _aRect, _nWidth, _nHeight, 1); in insertVerticalLine()
877 …protected Rectangle insertHorizontalLine(XSection _xSection, Rectangle _aRect, int _nWidth, int _n… in insertHorizontalLine() argument
879 return insertLine(_xSection, _aRect, _nWidth, _nHeight, 0); in insertHorizontalLine()
882 …protected Rectangle insertLine(XSection _xSection, Rectangle _aRect, int _nWidth, int _nHeight, in… in insertLine() argument
884 if (_xSection != null) in insertLine()
[all …]
/trunk/main/reportdesign/source/ui/report/
H A DReportWindow.cxx128 void OReportWindow::addSection(const uno::Reference< report::XSection >& _xSection,const ::rtl::OUS… in addSection() argument
130 if ( !_xSection.is() ) in addSection()
133 m_aViewsWindow.addSection(_xSection,_sColorEntry,_nPosition); in addSection()
322 void OReportWindow::setMarked(const uno::Reference< report::XSection>& _xSection,sal_Bool _bMark) in setMarked() argument
325 m_aViewsWindow.setMarked(_xSection,_bMark); in setMarked()
339 …indow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const in getSectionWindow()
341 return m_aViewsWindow.getSectionWindow(_xSection); in getSectionWindow()
H A DScrollHelper.cxx200 void OScrollWindowHelper::addSection(const uno::Reference< report::XSection >& _xSection in addSection() argument
204 m_aReportWindow.addSection(_xSection,_sColorEntry,_nPosition); in addSection()
292 void OScrollWindowHelper::setMarked(const uno::Reference< report::XSection>& _xSection,sal_Bool _bM… in setMarked() argument
294 m_aReportWindow.setMarked(_xSection,_bMark); in setMarked()
307 …indow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const in getSectionWindow()
309 return m_aReportWindow.getSectionWindow(_xSection); in getSectionWindow()
H A DReportControllerObserver.cxx230 void OXReportControllerObserver::AddSection(const uno::Reference< report::XSection > & _xSection) in AddSection() argument
235 uno::Reference<container::XChild> xChild = _xSection.get(); in AddSection()
237 uno::Reference< uno::XInterface > xInt(_xSection); in AddSection()
247 void OXReportControllerObserver::RemoveSection(const uno::Reference< report::XSection > & _xSection) in RemoveSection() argument
252 uno::Reference<container::XChild> xChild(_xSection.get()); in RemoveSection()
255 uno::Reference< uno::XInterface > xInt(_xSection); in RemoveSection()
H A DSectionWindow.cxx55 …indow( OViewsWindow* _pParent,const uno::Reference< report::XSection >& _xSection,const ::rtl::OUS… in DBG_NAME()
60 ,m_aReportSection( this,_xSection) in DBG_NAME()
75 m_aSplitter.SetSplitPosPixel(m_aSplitter.LogicToPixel(Size(0,_xSection->getHeight())).Height()); in DBG_NAME()
91 m_pSectionMulti = new OPropertyChangeMultiplexer(this,_xSection.get()); in DBG_NAME()
96 aEvent.Source = _xSection; in DBG_NAME()
98 uno::Reference< report::XGroup > xGroup(_xSection->getGroup()); in DBG_NAME()
H A DReportController.cxx2438 if ( _xSection.is() ) in openPageDialog()
2471 if ( _xSection.is() ) in openPageDialog()
2626 const sal_Int32 nElements = _xSection->getCount(); in shrinkSectionBottom()
2654 _xSection->setHeight(nMaxPositionY); in shrinkSectionBottom()
2695 _xSection->setHeight(nNewSectionHeight); in shrinkSectionTop()
2700 if ( _xSection.is() ) in shrinkSection()
2707 shrinkSectionTop(_xSection); in shrinkSection()
2708 shrinkSectionBottom(_xSection); in shrinkSection()
2712 shrinkSectionTop(_xSection); in shrinkSection()
2716 shrinkSectionBottom(_xSection); in shrinkSection()
[all …]
H A DDesignView.cxx454 void ODesignView::addSection(const uno::Reference< report::XSection >& _xSection,const ::rtl::OUStr… in addSection() argument
456 m_aScrollWindow.addSection(_xSection,_sColorEntry,_nPosition); in addSection()
643 …indow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const in getSectionWindow()
645 return m_aScrollWindow.getSectionWindow(_xSection); in getSectionWindow()
698 void ODesignView::setMarked(const uno::Reference< report::XSection>& _xSection,sal_Bool _bMark) in setMarked() argument
700 m_aScrollWindow.setMarked(_xSection,_bMark); in setMarked()
H A DViewsWindow.cxx311 void OViewsWindow::addSection(const uno::Reference< report::XSection >& _xSection,const ::rtl::OUSt… in addSection() argument
313 …::boost::shared_ptr<OSectionWindow> pSectionWindow( new OSectionWindow(this,_xSection,_sColorEntry… in addSection()
427 …ionWindow> OViewsWindow::getSectionWindow(const uno::Reference< report::XSection>& _xSection) const in getSectionWindow()
429 OSL_ENSURE(_xSection.is(),"Section is NULL!"); in getSectionWindow()
436 if ((*aIter)->getReportSection().getSection() == _xSection) in getSectionWindow()
637 void OViewsWindow::setMarked(const uno::Reference< report::XSection>& _xSection,sal_Bool _bMark) in setMarked() argument
643 if ( (*aIter)->getReportSection().getSection() != _xSection ) in setMarked()
/trunk/main/reportdesign/source/ui/inc/
H A DReportController.hxx149 … ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection,const ::rtl::OUS…
185 …PageDialog(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection);
229 …inkSectionBottom(::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > _xSection);
230 …shrinkSectionTop(::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > _xSection);
233 … ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > _xSection, sal_Int32 _nShr…
471 …ndow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const;
H A DReportWindow.hxx136 … addSection(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection
192 … ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection,sal_Bool _bMark);
197 …ndow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const;
H A DScrollHelper.hxx139 … addSection(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection
179 … ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection,sal_Bool _bMark);
184 …ndow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const;
H A DDesignView.hxx183 … addSection(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection
232 …ndow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const;
260 … ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection,sal_Bool _bMark);
H A DViewsWindow.hxx186 … addSection(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection
251 …ndow(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection) const;
264 … ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection,sal_Bool _bMark);
H A DReportControllerObserver.hxx87 …ddSection( const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection);
88 …eSection( const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection );
/trunk/main/reportdesign/source/core/inc/
H A DTools.hxx42 …,::com::sun::star::uno::Reference< ::com::sun::star::report::XSection>& _xSection/*in/out*/,bool _… in lcl_createSectionIfNeeded() argument
44 if ( _bOn && !_xSection.is() ) in lcl_createSectionIfNeeded()
45 _xSection = new OSection(_xParent,_xParent->getContext(),_bPageSection); in lcl_createSectionIfNeeded()
48 ::comphelper::disposeComponent(_xSection); in lcl_createSectionIfNeeded()

Completed in 173 milliseconds

12