Home
last modified time | relevance | path

Searched refs:m_aSections (Results 1 – 4 of 4) sorted by relevance

/trunk/main/reportdesign/source/ui/report/
H A DViewsWindow.cxx193 m_aSections.clear(); in ~OViewsWindow()
229 TSectionsMap::iterator aIter = m_aSections.begin(); in resize()
230 TSectionsMap::iterator aEnd = m_aSections.end(); in resize()
261 if ( !m_aSections.empty() ) in Resize()
265 TSectionsMap::iterator aIter = m_aSections.begin(); in Resize()
266 TSectionsMap::iterator aEnd = m_aSections.end(); in Resize()
314 m_aSections.insert(getIteratorAtPos(_nPosition) , TSectionsMap::value_type(pSectionWindow)); in addSection()
315 …m_pParent->setMarked(&pSectionWindow->getReportSection().getSectionView(),m_aSections.size() == 1); in addSection()
321 if ( _nPosition < m_aSections.size() ) in removeSection()
328 m_aSections.erase(aPos); in removeSection()
[all …]
H A DReportControllerObserver.cxx59 ::std::vector< uno::Reference< container::XChild> > m_aSections;
148 …vector< uno::Reference< container::XChild > >::const_iterator aIter = m_pImpl->m_aSections.begin(); in IMPL_LINK()
149 …d::vector< uno::Reference< container::XChild > >::const_iterator aEnd = m_pImpl->m_aSections.end(); in IMPL_LINK()
199 m_pImpl->m_aSections.clear(); in Clear()
236 m_pImpl->m_aSections.push_back(xChild); in AddSection()
253 … m_pImpl->m_aSections.erase(::std::remove(m_pImpl->m_aSections.begin(),m_pImpl->m_aSections.end(), in RemoveSection()
254 xChild), m_pImpl->m_aSections.end()); in RemoveSection()
399 …d::vector< uno::Reference< container::XChild> >::const_iterator aFind = m_pImpl->m_aSections.end(); in getSection()
402 aFind = ::std::find(m_pImpl->m_aSections.begin(),m_pImpl->m_aSections.end(),_xContainer); in getSection()
404 if ( aFind == m_pImpl->m_aSections.end() ) in getSection()
/trunk/main/reportdesign/source/core/sdr/
H A DUndoEnv.cxx114 ::std::vector< uno::Reference< container::XChild> > m_aSections;
206 m_pImpl->m_aSections.clear(); in Clear()
385 …d::vector< uno::Reference< container::XChild> >::const_iterator aFind = m_pImpl->m_aSections.end(); in getSection()
388 aFind = ::std::find(m_pImpl->m_aSections.begin(),m_pImpl->m_aSections.end(),_xContainer); in getSection()
390 if ( aFind == m_pImpl->m_aSections.end() ) in getSection()
416 if ( aFind != m_pImpl->m_aSections.end() ) in elementInserted()
486 if ( aFind != m_pImpl->m_aSections.end() && xReportComponent.is() ) in elementRemoved()
532 m_pImpl->m_aSections.push_back(xChild); in AddSection()
549 … m_pImpl->m_aSections.erase(::std::remove(m_pImpl->m_aSections.begin(),m_pImpl->m_aSections.end(), in RemoveSection()
550 xChild), m_pImpl->m_aSections.end()); in RemoveSection()
/trunk/main/reportdesign/source/ui/inc/
H A DViewsWindow.hxx135 TSectionsMap m_aSections; member in rptui::OViewsWindow
210 inline bool empty() const { return m_aSections.empty(); } in empty()