Searched refs:bounds (Results 1 - 25 of 293) sorted by path

1234567891011>>

/haiku/headers/build/os/interface/
H A DBitmap.h38 BBitmap(BRect bounds, uint32 flags, color_space colorSpace,
41 BBitmap(BRect bounds, color_space colorSpace, bool acceptsViews = false,
89 void InitObject(BRect bounds, color_space colorSpace, uint32 flags,
/haiku/headers/libs/agg/
H A Dagg_font_cache_manager.h42 rect_i bounds; member in struct:agg::glyph_cache
90 const rect_i& bounds,
114 glyph->bounds = bounds;
205 const rect_i& bounds,
215 bounds,
297 m_engine.bounds(),
86 cache_glyph(unsigned glyph_code, unsigned glyph_index, unsigned data_size, glyph_data_type data_type, const rect_i& bounds, double advance_x, double advance_y) argument
201 cache_glyph(unsigned glyph_code, unsigned glyph_index, unsigned data_size, glyph_data_type data_type, const rect_i& bounds, double advance_x, double advance_y) argument
H A Dagg_path_storage_integer.h169 rect_d bounds(1e100, 1e100, -1e100, -1e100);
172 bounds.x1 = bounds.y1 = bounds.x2 = bounds.y2 = 0.0;
181 if(x < bounds.x1) bounds.x1 = x;
182 if(y < bounds.y1) bounds.y1 = y;
183 if(x > bounds
[all...]
/haiku/headers/os/add-ons/network_settings/
H A DNetworkSettingsAddOn.h104 BRect bounds, bool complete);
/haiku/headers/os/interface/
H A DStringView.h51 virtual void Draw(BRect bounds);
/haiku/headers/private/interface/
H A DColumnListView.h401 void _GetChildViewRects(const BRect& bounds,
H A DIcon.h33 BBitmap* CreateBitmap(const BRect& bounds,
H A DPrivateScreen.h57 BRect* bounds);
59 BRect* bounds);
H A DShapePrivate.h70 BRect bounds; local
73 return bounds;
76 bounds.left = ptList[0].x;
77 bounds.top = ptList[0].y;
78 bounds.right = ptList[0].x;
79 bounds.bottom = ptList[0].y;
82 if (bounds.left > ptList[i].x)
83 bounds.left = ptList[i].x;
85 if (bounds.top > ptList[i].y)
86 bounds
[all...]
/haiku/src/add-ons/accelerants/et6x00/
H A DSetDisplayMode.c30 display_mode bounds, target; local
35 target = bounds = *mode_to_set;
36 if (PROPOSE_DISPLAY_MODE(&target, &bounds, &bounds) != B_OK) /* ==B_ERROR???/// */
/haiku/src/add-ons/accelerants/radeon/
H A DSetDisplayMode.c352 display_mode bounds, mode; local
354 mode = bounds = *mode_in;
362 if( PROPOSE_DISPLAY_MODE( &mode, &bounds, &bounds ) == B_ERROR ) {
/haiku/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.h72 ServerBitmap* _CreateTemporaryBitmap(BRect bounds) const;
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPDriver.cpp234 BRect bounds = bitmap->Bounds(); local
237 rc.left = (int)bounds.left;
238 rc.top = (int)bounds.top;
239 rc.right = (int)bounds.right;
240 rc.bottom = (int)bounds.bottom;
H A DGPParameterVisitor.cpp53 bool isColorPrinter = stp_string_list_is_present(printingMode.bounds.str,
177 stp_string_list_t* list = parameter->bounds.str;
241 double lower = description->bounds.dbl.lower;
242 double upper = description->bounds.dbl.upper;
255 int lower = description->bounds.integer.lower;
256 int upper = description->bounds.integer.upper;
269 double lower = description->bounds.dimension.lower;
270 double upper = description->bounds.dimension.upper;
/haiku/src/add-ons/print/drivers/pcl6/
H A DRasterizer.cpp26 BRect bounds = bitmap->Bounds(); local
28 fBounds.left = (int)bounds.left;
29 fBounds.top = (int)bounds.top;
30 fBounds.right = (int)bounds.right;
31 fBounds.bottom = (int)bounds.bottom;
/haiku/src/add-ons/screen_savers/butterfly/
H A DButterfly.cpp69 BRect bounds = view->Bounds(); local
70 fScale = MIN(bounds.Width(), bounds.Height()) * 0.1f;
71 fTrans.Set(bounds.Width() * 0.5f, bounds.Height() * 0.5f);
72 fBounds = bounds;
/haiku/src/add-ons/screen_savers/flurry/
H A DFlurry.cpp61 FlurryView::FlurryView(BRect bounds) argument
63 BGLView(bounds, (const char *)NULL, B_FOLLOW_ALL,
71 fWidth = bounds.Width();
72 fHeight = bounds.Height();
H A DFlurry.h19 FlurryView(BRect bounds);
/haiku/src/add-ons/screen_savers/ifs/
H A DIFS.h39 clipping_rect bounds; member in struct:buffer_info
89 IFS(BRect bounds);
H A DIFSSaver.cpp79 BRect bounds = view->Bounds(); local
80 bounds.InsetBy(10.0f, 10.0f);
81 BRect frame(0.0f, 0.0f, bounds.Width(), 20.0f);
91 bounds.bottom -= fAdditiveCB->Bounds().Height() * 2.0f;
92 fAdditiveCB->MoveTo(bounds.LeftBottom());
106 bounds.bottom -= fSpeedS->Bounds().Height() + 15.0f;
107 fSpeedS->MoveTo(bounds.LeftBottom());
112 BRect textRect = bounds;
114 BTextView* textView = new BTextView(bounds, B_EMPTY_STRING, textRect,
188 fDirectInfo.bounds
271 _Init(BRect bounds) argument
[all...]
H A DIFSSaver.h35 void _Init(BRect bounds);
/haiku/src/add-ons/screen_savers/leaves/
H A DLeaves.cpp60 // bounds for settings
101 BRect bounds = view->Bounds(); local
102 bounds.InsetBy(10, 10);
103 BRect frame(0, 0, bounds.Width(), 20);
111 bounds.bottom -= dropRateSlider->Bounds().Height() * 1.5;
112 dropRateSlider->MoveTo(bounds.LeftBottom());
121 bounds.bottom -= leafSizeSlider->Bounds().Height() * 1.5;
122 leafSizeSlider->MoveTo(bounds.LeftBottom());
131 bounds.bottom -= sizeVariationSlider->Bounds().Height() * 1.5;
132 sizeVariationSlider->MoveTo(bounds
[all...]
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DSlideShowSaver.cpp252 BRect border = destRect, bounds = view->Bounds(); local
254 view->FillRect(BRect(0, 0, bounds.right, border.top-1), B_SOLID_LOW);
258 view->FillRect(BRect(border.right+1, border.top, bounds.right, border.bottom), B_SOLID_LOW);
260 view->FillRect(BRect(0, border.bottom+1, bounds.right, bounds.bottom), B_SOLID_LOW);
474 BRect bounds(view->Bounds());
480 pos.x = (bounds.left + bounds.right - width)/2;
482 pos.y = bounds.bottom - fontHeight.descent - 5;
/haiku/src/add-ons/screen_savers/spider/
H A DPolygon.cpp15 Polygon::Polygon(BRect bounds, int32 vertices) argument
17 fBounds(bounds)
19 float min = bounds.Width() / 64000.0;
20 float max = bounds.Width() / 320.0;
23 pv->point.x = bounds.left + fmod(lrand48(), bounds.Width());
24 pv->point.y = bounds.top + fmod(lrand48(), bounds.Height());
32 Polygon::Polygon(BRect bounds, BList points) argument
34 fBounds(bounds)
[all...]
H A DPolygon.h22 Polygon(BRect bounds, BList points);
23 Polygon(BRect bounds, int32 vertices);

Completed in 135 milliseconds

1234567891011>>