Searched refs:left (Results 151 - 175 of 687) sorted by relevance

1234567891011>>

/haiku/src/apps/resedit/
H A DResFields.cpp52 drawrect.right = drawrect.left +
68 stringrect.left = stringrect.right - parent->StringWidth(out.String());
69 if (stringrect.left < drawrect.right + 5)
70 stringrect.left = drawrect.right + 5;
/haiku/src/apps/switcher/
H A DLaunchButton.cpp387 AddLine(BPoint(r.left, r.bottom), BPoint(r.left, r.top), col1);
388 AddLine(BPoint(r.left + 1.0, r.top), BPoint(r.right, r.top), col1);
390 AddLine(BPoint(r.right - 1.0, r.bottom), BPoint(r.left + 1.0, r.bottom), col2);
392 AddLine(BPoint(r.left, r.bottom), BPoint(r.left, r.top), col3);
393 AddLine(BPoint(r.left + 1.0, r.top), BPoint(r.right, r.top), col3);
395 AddLine(BPoint(r.right - 1.0, r.bottom), BPoint(r.left + 1.0, r.bottom), col4);
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DAlphaSlider.cpp183 float pos = floorf(b.left + Value() * b.Width() / 255.0 + 0.5);
185 if (pos - 2 >= b.left) {
189 if (pos - 1 >= b.left) {
206 StrokeLine(BPoint(b.left, pos - 2), BPoint(b.right, pos - 2));
210 StrokeLine(BPoint(b.left, pos - 1), BPoint(b.right, pos - 1));
214 StrokeLine(BPoint(b.left, pos + 1), BPoint(b.right, pos + 1));
218 StrokeLine(BPoint(b.left, pos + 2), BPoint(b.right, pos + 2));
397 value = (int32)(255 * (where.x - r.left) / r.Width() + 0.5);
/haiku/src/tests/servers/app/hide_and_show/
H A DHideAndShow.cpp39 rect.left += 20;
87 rect.left += 20;
/haiku/src/kits/interface/
H A DToolTipManager.cpp191 if (size.width > where.x - screenFrame.left
193 // There is no space to put the tip to the left or the right of the
213 if (location.x < screenFrame.left) {
214 location.x = screenFrame.left;
220 if (location.x < screenFrame.left) {
221 location.x = screenFrame.left;
285 if (screenFrame.left > where.x) {
286 size.width -= where.x - screenFrame.left;
287 where.x = screenFrame.left;
H A DRegion.cpp134 return BRect(fBounds.left, fBounds.top,
142 return (clipping_rect){ fBounds.left, fBounds.top,
159 return BRect(r.left, r.top, r.right - 1, r.bottom - 1);
179 return (clipping_rect){ r.left, r.top, r.right - 1, r.bottom - 1 };
250 i, rect->left, rect->top, rect->right - 1, rect->bottom - 1);
429 // be left in a valid state.
491 return (clipping_rect){ (int)floorf(rect.left), (int)floorf(rect.top),
499 return (clipping_rect){ (int)floorf(rect.left), (int)floorf(rect.top),
507 return (clipping_rect){ rect.left, rect.top,
/haiku/src/add-ons/screen_savers/gravity/
H A DRainbowItem.cpp57 colorRect.left += spacer;
58 colorRect.right = colorRect.left + floorf(colorRect.Height() * M_PHI);
/haiku/src/add-ons/screen_savers/debugnow/
H A DDebugNow.cpp76 fLine1Start.Set(((viewWidth - stringRect.Width()) / 2) - stringRect.left, y);
79 fLine2Start.Set(((viewWidth - stringRect.Width()) / 2) - stringRect.left,
/haiku/src/add-ons/translators/ppm/
H A DPPMMain.cpp72 if (o.x < f.left)
73 o.x = f.left;
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DFolderConfigWindow.cpp143 float left = itemRect.left; local
144 fBoxRect.left = left + 3;
146 fBoxRect.right = fBoxRect.left + boxRect.Width();
149 itemRect.left = fBoxRect.right + be_control_look->DefaultLabelSpacing();
159 BRect(left, itemRect.top, itemRect.left, itemRect.bottom));
/haiku/src/preferences/appearance/
H A DColorWhichItem.cpp57 colorRect.left += spacer;
58 colorRect.right = colorRect.left + floorf(colorRect.Height() * M_PHI);
/haiku/src/add-ons/translators/shared/
H A DTranslatorWindow.cpp114 if (wndpt.x < frame.left)
115 wndpt.x = frame.left;
/haiku/src/servers/app/drawing/interface/virtual/
H A DDWindowBuffer.cpp76 int32 xOffset = info->window_bounds.left;
87 fWidth = info->window_bounds.right - info->window_bounds.left + 1;
89 // offset bits to left top corner of window
/haiku/src/kits/shared/
H A DColorItem.cpp58 colorRect.left += spacer;
59 colorRect.right = colorRect.left + floorf(colorRect.Height() * M_PHI);
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DCapture.cpp62 void CCapture::SetClip(int left, int top, int right, int bottom) argument
65 left, top, right, bottom));
67 fClip.SetTo(left, top, right, bottom);
79 void CCapture::SetVBIClip(int left, int top, int right, int bottom) argument
82 left, top, right, bottom));
84 fVBIClip.SetTo(left, top, right, bottom);
/haiku/src/libs/print/libprint/
H A DHalftone.cpp139 const uchar *left = &fPattern[y * 16]; local
140 const uchar *pos = left + x;
141 const uchar *right = left + 0x0F;
146 pos = left;
342 // (left) 3 5 1 (right)
351 int* left = middle - 1; local
352 *left += 3 * error;
/haiku/src/tests/kits/game/file_game_sound_test/
H A DFileSoundWindow.cpp41 BRect textBounds(appBounds.left + 10, appBounds.top + 10, appBounds.right - 70, appBounds.top + 20);
45 float x1 = textControl -> Bounds().left;
57 BRect playBounds(textBounds.left,textBounds.bottom + 15, textBounds.left + 50, textBounds.bottom + 25);
73 BRect loopBounds(playBounds.left,playBounds.bottom + 20, playBounds.left + 150, playBounds.bottom + 30);
/haiku/src/tests/servers/app/newerClipping/
H A DClientLooper.cpp36 polygon[0].x = b.left;
48 polygon[3].x = b.left;
72 morph(&polygon[0].x, &polygon[0].direction_x, b.left, b.right);
73 morph(&polygon[1].x, &polygon[1].direction_x, b.left, b.right);
74 morph(&polygon[2].x, &polygon[2].direction_x, b.left, b.right);
75 morph(&polygon[3].x, &polygon[3].direction_x, b.left, b.right);
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPDriver.cpp237 rc.left = (int)bounds.left;
261 rc.left, rc.top, rc.right, rc.bottom));
263 x = rc.left;
266 int width = rc.right - rc.left + 1;
271 BRect imageRect(rc.left, rc.top, rc.right, rc.bottom);
/haiku/src/bin/network/ppp_up/
H A DPPPStatusView.cpp41 rect.left = rect.right - 80;
46 rect.right = rect.left - 10;
47 rect.left = rect.right - 80;
53 rect.right = rect.left - 10;
54 rect.left = 5;
62 rect.right = rect.left + (rect.Width() - 5) / 2;
/haiku/src/add-ons/print/drivers/canon_lips/lips4/
H A DLips4.cpp122 rc.left = (int)bounds.left;
146 rc.left, rc.top, rc.right, rc.bottom));
148 x = rc.left;
151 int width = rc.right - rc.left + 1;
169 + (rc.left * fHalftone->GetPixelDepth()) / 8;
/haiku/src/add-ons/print/drivers/canon_lips/lips3/
H A DLips3.cpp111 rc.left = (int)bounds.left;
135 rc.left, rc.top, rc.right, rc.bottom));
137 x = rc.left;
140 int width = rc.right - rc.left + 1;
159 + (rc.left * fHalftone->GetPixelDepth()) / 8;
/haiku/src/add-ons/print/drivers/pcl5/
H A DPCL5.cpp98 rc.left = (int)bounds.left;
122 rc.left, rc.top, rc.right, rc.bottom));
124 x = rc.left;
127 int width = rc.right - rc.left + 1;
145 + (rc.left * fHalftone->GetPixelDepth()) / 8;
/haiku/src/servers/app/
H A DView.cpp55 // follow with left side
57 frame.left += x;
59 frame.left += x / 2;
161 bounds->OffsetBy(fFrame.left - fScrollingOffset.x,
373 BRect rect(fFrame.left, fFrame.top, fFrame.right, fFrame.bottom);
409 View::FindViews(uint32 flags, BObjectList<View>& list, int32& left) argument
413 left--;
418 child->FindViews(flags, list, left);
419 if (left == 0)
575 offsetX += view->fFrame.left
[all...]
/haiku/src/apps/powerstatus/
H A DPowerStatusView.cpp179 float left = rect.left; local
180 rect.left += rect.Width() / 11;
181 lightningRect.left = rect.left;
191 gap = ceilf((rect.left - left) / 2);
193 // left
194 view->FillRect(BRect(rect.left, rect.top, rect.left
[all...]

Completed in 196 milliseconds

1234567891011>>