Searched refs:bottom (Results 176 - 200 of 576) sorted by relevance

1234567891011>>

/haiku/src/kits/shared/
H A DVariant.cpp103 _SetTo(rect->left, rect->top, rect->right, rect->bottom);
180 return BRect(fRect.left, fRect.top, fRect.right, fRect.bottom)
182 other.fRect.bottom);
320 return BRect(fRect.left, fRect.top, fRect.right, fRect.bottom);
410 fRect.right, fRect.bottom));
633 BVariant::_SetTo(float left, float top, float right, float bottom) argument
640 fRect.bottom = bottom;
/haiku/src/kits/interface/
H A DSeparatorItem.cpp102 BPoint(startLeft, bounds.bottom - 1.0f));
105 BPoint(startLeft + 1.0f, bounds.bottom - 1.0f));
H A DSlider.cpp484 if (bounds.right <= 0.0f || bounds.bottom <= 0.0f)
750 invalid.bottom += 2;
954 frame.bottom -= 3.0f;
958 OffscreenView()->StrokeLine(BPoint(frame.left, frame.bottom + 2.0f),
959 BPoint(frame.right, frame.bottom + 2.0f));
962 BPoint(frame.left - 2.0f, frame.bottom));
998 BPoint(0.0f, bounds.bottom - fontHeight.descent));
1004 bounds.bottom - fontHeight.descent));
1024 baseLine = bounds.bottom - ceilf(fontHeight.descent);
1084 invalid.bottom
[all...]
/haiku/src/apps/processcontroller/
H A DProcessController.cpp171 frame.top = frame.bottom - 7;
584 param->top = where.y < BScreen(this->Window()).Frame().bottom-50;
607 float bottom = top + h; local
628 FillRect(BRect(right + 1, top - 1, leftMem, bottom + 1));
633 StrokeRect(BRect(left - 1, top - 1, right, bottom + 1));
637 BPoint(left + x * barWidth + x - 1, bottom));
642 StrokeRect(BRect(leftMem - 1, top - 1, leftMem + memWidth, bottom + 1));
649 float limit = bottom - barHeight; // horizontal line
650 float previousLimit = bottom - fLastBarHeight[x];
663 StrokeLine(BPoint(left, bottom
[all...]
/haiku/src/apps/haikudepot/ui_generic/
H A DBitmapView.cpp72 bounds.top = floorf(bounds.bottom - height);
82 bounds.bottom = ceilf(bounds.top + height);
/haiku/src/apps/cortex/InfoView/
H A DInfoView.cpp212 scrollRect.bottom -= B_H_SCROLL_BAR_HEIGHT - 1.0;
319 updateRect.top = p.y < (m_oldFrame.bottom - M_V_MARGIN - 15.0) ?
320 p.y - 15.0 : m_oldFrame.bottom - M_V_MARGIN - 15.0;
322 updateRect.bottom = m_oldFrame.bottom < newFrame.bottom ?
323 newFrame.bottom : m_oldFrame.bottom;
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.cpp82 BasicTerminalBuffer::_Invalidate(int32 top, int32 bottom) argument
84 //debug_printf("%p->BasicTerminalBuffer::_Invalidate(%ld, %ld)\n", this, top, bottom);
85 fDirtyInfo.ExtendDirtyRegion(top, bottom);
981 BasicTerminalBuffer::SetScrollRegion(int32 top, int32 bottom) argument
984 fScrollBottom = restrict_value(bottom, fScrollTop, fHeight - 1);
1473 BasicTerminalBuffer::_Scroll(int32 top, int32 bottom, int32 numLines) argument
1486 int32 toHistory = min_c(numLines, bottom - top + 1);
1494 if (numLines >= bottom - top + 1) {
1496 _ClearLines(top, bottom);
1497 } else if (bottom
[all...]
/haiku/src/apps/deskbar/
H A DBarView.cpp174 menuFrame.bottom = menuFrame.top + fTabHeight - 1;
176 menuFrame.bottom = menuFrame.top + TeamMenuItemHeight();
417 || whereScreen.y == screenFrame.bottom;
482 menuFrame.bottom = menuFrame.top + height;
541 statusLoc.y = fBarMenuBar->Frame().bottom + 1;
550 // and make room for the top and bottom borders
565 // make room for top and bottom border
612 expandoFrame.top = fTrayLocation != 0 ? fDragRegion->Frame().bottom + 1
613 : fBarMenuBar->Frame().bottom + 1;
615 expandoFrame.bottom
[all...]
/haiku/src/servers/app/drawing/Painter/
H A DPainter.h367 rect.bottom = ceilf(rect.bottom);
382 rect.bottom = ceilf(rect.bottom);
411 rect.bottom = ceilf(rect.bottom);
414 rect.bottom = floorf(rect.bottom);
/haiku/src/apps/diskprobe/
H A DDataView.cpp424 BPoint line_end(line_start.x, Bounds().bottom);
464 else if (point.y >= bounds.bottom - kVerticalSpace)
465 point.y = bounds.bottom - kVerticalSpace - 1;
582 float bottom; local
584 bottom = block.bottom;
586 bottom = firstLine.bottom;
589 AddLine(BPoint(firstLine.right, firstLine.top + 1), BPoint(firstLine.right, bottom), color);
604 rect.bottom
[all...]
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfwohcivar.h48 struct fwohcidb_tr *top, *bottom, *pdb_tr; member in struct:fwohci_softc::fwohci_dbch
/haiku/src/apps/bootmanager/
H A DDefaultPartitionPage.cpp179 rect.top = fDescription->Frame().bottom + kTextDistance;
191 rect.top = fDefaultPartition->Frame().bottom + kTextDistance;
268 float top = fDescription->Frame().bottom + kTextDistance;
271 top = fDefaultPartition->Frame().bottom + kTextDistance;
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLineChartRenderer.cpp196 float bottom = fFrame.bottom; local
199 bottom - ((info->samples[first] - minRange) * scale)));
203 float(bottom - ((info->samples[i] - minRange) * scale))));
/haiku/src/apps/mediaplayer/
H A DVideoView.h56 void SetSubTitleMaxBottom(float bottom);
/haiku/src/apps/switcher/
H A DLaunchButton.h69 rgb_color right, rgb_color bottom);
/haiku/src/preferences/screen/
H A DRefreshSlider.cpp63 rect.bottom--;
/haiku/src/servers/app/
H A DIntPoint.cpp22 y = max_c(min_c(y, r.bottom), r.top);
/haiku/src/tests/apps/miniterminal/
H A DConsole.h43 void SetScrollRegion(int top, int bottom);
86 int32 fScrollBottom; // bottom of the scroll region
/haiku/src/tests/kits/app/bmessage/
H A DMessageBRectItemTest.h76 << " b:" << rect.bottom
/haiku/src/tests/kits/interface/menu/menuworld/
H A DViewLayoutFactory.cpp150 viewLoc.Set(frame.left, frame.bottom);
153 viewLoc.Set(frame.left, average(frame.top, frame.bottom));
188 moveLoc.y -= (r.bottom - r.top) / 2;
254 fMax_y = std::max(fMax_y, r.bottom);
/haiku/src/tests/kits/interface/pictureprint/
H A DDumpPrintJob.cpp69 rect.left, rect.top, rect.right, rect.bottom);
/haiku/src/tests/servers/app/benchmark/
H A DHorizontalLineTest.cpp61 if (y > fViewBounds.bottom)
H A DVerticalLineTest.cpp55 BPoint(x, fViewBounds.bottom - 1));
/haiku/src/tests/servers/app/newerClipping/drawing/
H A DDirectWindowBuffer.cpp85 fHeight = info->window_bounds.bottom - info->window_bounds.top + 1;
/haiku/headers/os/interface/
H A DGroupLayoutBuilder.h40 float bottom);

Completed in 163 milliseconds

1234567891011>>