Searched refs:visibleRect (Results 1 - 2 of 2) sorted by relevance

/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1485 BRect visibleRect = fSourceView->Bounds(); local
1486 if (dragRect.Height() > visibleRect.Height()) {
1488 dragRect.bottom = visibleRect.Height();
1490 if (dragRect.Width() > visibleRect.Width()) {
1492 dragRect.right = visibleRect.Width();
1818 BRect visibleRect = Frame() & fSourceView->Bounds(); local
1819 if (point.y < visibleRect.top)
1820 difference = point.y - visibleRect.top;
1821 else if (point.y > visibleRect.bottom)
1822 difference = point.y - visibleRect
[all...]
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp1024 BRect visibleRect = Bounds(); local
1025 if (point.y < visibleRect.top)
1026 difference = point.y - visibleRect.top;
1027 else if (point.y > visibleRect.bottom)
1028 difference = point.y - visibleRect.bottom;

Completed in 93 milliseconds