Home
last modified time | relevance | path

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

/haiku/src/apps/cortex/ParameterView/
H A DParameterContainerView.cpp60 m_dataRect(dataRect), in ParameterContainerView()
158 …D_INTERNAL((" -> dataRect.Height() = %f scrollView.Height() = %f\n", m_dataRect.Height(), height… in _updateScrollBars()
159 if (height > m_dataRect.Height()) { in _updateScrollBars()
166 m_vScroll->SetRange(m_dataRect.top, m_dataRect.bottom - height); in _updateScrollBars()
167 m_vScroll->SetProportion(height / m_dataRect.Height()); in _updateScrollBars()
174 D_INTERNAL((" -> dataRect.Width() = %f scrollView.Width() = %f\n", m_dataRect.Width(), width)); in _updateScrollBars()
175 if (width > m_dataRect.Width()) { in _updateScrollBars()
182 m_hScroll->SetRange(m_dataRect.left, m_dataRect.right - width); in _updateScrollBars()
183 m_hScroll->SetProportion(width / m_dataRect.Width()); in _updateScrollBars()
H A DParameterContainerView.h80 BRect m_dataRect; variable
/haiku/src/apps/cortex/DiagramView/
H A DDiagramView.cpp75 m_dataRect = Bounds(); in DiagramView()
165 *width = m_dataRect.Width() + 10.0; in GetPreferredSize()
166 *height = m_dataRect.Height() + 10.0; in GetPreferredSize()
671 m_dataRect.right = boxRect.right; in updateDataRect()
672 m_dataRect.bottom = boxRect.bottom; in updateDataRect()
760 if (Bounds().Height() > m_dataRect.Height()) in _updateScrollBars()
767 scrollBar->SetRange(m_dataRect.top, m_dataRect.bottom - Bounds().Height()); in _updateScrollBars()
768 scrollBar->SetProportion(Bounds().Height() / m_dataRect.Height()); in _updateScrollBars()
776 if (Bounds().Width() > m_dataRect.Width()) in _updateScrollBars()
783 scrollBar->SetRange(m_dataRect.left, m_dataRect.right - Bounds().Width()); in _updateScrollBars()
[all …]
H A DDiagramView.h274 BRect m_dataRect; variable