Searched refs:height (Results 1 - 25 of 838) sorted by last modified time

1234567891011>>

/haiku/src/kits/tracker/
H A DContainerWindow.cpp882 // Count view height is 1px smaller than scroll bar because it has
884 size.height -= 1;
H A DUtilities.cpp494 FadeRGBA32Horizontal(uint32* bits, int32 width, int32 height, int32 from, argument
498 if (width < 0 || height < 0 || from < 0 || to < 0)
508 for (int32 y = 0; y < height; y++) {
528 FadeRGBA32Vertical(uint32* bits, int32 width, int32 height, int32 from, argument
532 if (width < 0 || height < 0 || from < 0 || to < 0)
536 bits += width * (height - (from - to));
726 font_height height; local
727 GetFontHeight(&height);
757 loc.y = bounds.bottom - (1 + height.descent);
826 TitledSeparatorItem::GetContentSize(float* width, float* height) argument
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatReader.cpp1162 = codecParams->height - 1;
1177 = codecParams->height;
1178 TRACE(" width/height: %d/%d\n", codecParams->width,
1179 codecParams->height);
H A DAVCodecDecoder.cpp1334 - display.line_count copied to fCodecContext->height
1351 fCodecContext->height = containerProperties.display.line_count;
1580 fRawDecodedPicture->height, 1);
1582 fHeader.u.raw_video.display_line_count = fRawDecodedPicture->height;
1591 fHeader.u.raw_video.line_count = fRawDecodedPicture->height;
1630 int displayHeight = fRawDecodedPicture->height;
1741 int32 height)
1753 "[out]buffersink", width, height,
1781 fLastHeight = height;
1799 enum AVPixelFormat pixfmt, int32 width, int32 height)
1740 _InitFilterGraph(enum AVPixelFormat pixfmt, int32 width, int32 height) argument
1798 _ProcessFilterGraph(AVFrame *dst, const AVFrame *src, enum AVPixelFormat pixfmt, int32 width, int32 height) argument
[all...]
H A DUtilities.h51 - AVCodecContext.height (must)
55 video aspect ratio height. E.g. 16:9 -> 9 is returned here
61 if (contextIn.width <= 0 || contextIn.height <= 0) {
77 contextIn.height, 1024 * 1024);
87 contextIn.height * contextIn.sample_aspect_ratio.den,
99 if (parametersIn.width <= 0 || parametersIn.height <= 0) {
115 parametersIn.height, 1024 * 1024);
125 parametersIn.height * parametersIn.sample_aspect_ratio.den,
142 ratio height. E.g. 16:9 -> 9 is passed here.
147 - AVCodecContext.height (mus
[all...]
/haiku/src/preferences/screen/
H A DScreenWindow.cpp136 mode.width, mode.height);
195 // we need the "Current Workspace" first to get its height
324 if (mode.width == previousWidth && mode.height == previousHeight)
328 previousHeight = mode.height;
331 if (maxHeight < mode.height)
332 maxHeight = mode.height;
358 if (mode.width == previousWidth && mode.height == previousHeight)
362 previousHeight = mode.height;
366 message->AddInt32("height", mode.height);
[all...]
H A DScreenMode.cpp153 return width != other.width || height != other.height
166 height = mode.virtual_height;
174 height /= 2;
405 + info.height * info.height) / 0.254) / 10.0;
490 ? mode.height * 2 : mode.height;
539 // For the mode selected by the width, height, and refresh rate, compute
542 compute_display_timing(mode.width, mode.height, mod
[all...]
/haiku/src/apps/showimage/
H A DShowImageWindow.cpp214 fToolBar->ResizeTo(viewFrame.Width(), fToolBar->MinSize().height);
270 fBar->MinSize().height + gridLayout->MinSize().height, 100000);
547 float height = r.Height() + 1 + fBar->Frame().Height() local
567 if (height < minH)
568 height = minH;
572 if (height > maxHeight)
573 height = maxHeight;
575 ResizeTo(width, height);
632 ShowImageWindow::Zoom(BPoint origin, float width, float height) argument
1152 BString frameText, height, width; local
1635 int32 height = bounds.IntegerHeight() + 1; local
[all...]
H A DShowImageWindow.h65 virtual void Zoom(BPoint origin, float width, float height);
H A DShowImageStatusView.cpp62 *_height = fPreferredSize.height;
69 float width, height; local
70 GetPreferredSize(&width, &height);
75 BView::ResizeTo(width, height);
217 // height
221 fPreferredSize.height = ceilf(fontHeight.ascent + fontHeight.descent
225 if (fPreferredSize.height < scrollBarSize)
226 fPreferredSize.height = scrollBarSize;
/haiku/src/preferences/filetypes/
H A DIconView.cpp807 float width, height; local
808 GetPreferredSize(&width, &height);
809 return BSize(width, height);
/haiku/src/apps/text_search/
H A DGrepWindow.cpp147 void GrepWindow::FrameResized(float width, float height) argument
149 BWindow::FrameResized(width, height);
/haiku/src/apps/terminal/
H A DTermWindow.cpp123 float width, height; local
124 fTermView->GetPreferredSize(&width, &height);
126 *_height = height + 2 * kTermViewOffset;
1365 float width, height; local
1366 view->GetFontSize(&width, &height);
1376 minimumHeight + MIN_ROWS * height - 1,
1377 minimumHeight + MAX_ROWS * height - 1);
1560 TermWindow::Zoom(BPoint leftTop, float width, float height) argument
1563 BWindow::Zoom(leftTop, width, height);
1765 float height; local
[all...]
/haiku/src/servers/app/
H A DServerApp.cpp1324 // 3) uint32 cursor height in number of pixels
2325 font_height height; local
2326 fontStyle->GetHeight(size, height);
2329 fLink.Attach<font_height>(height);
H A DServerFont.h166 void GetHeight(font_height& height) const;
/haiku/headers/os/interface/
H A DFont.h254 void GetHeight(font_height* height) const;
/haiku/src/apps/haikudepot/server/
H A DWebAppInterface.cpp680 the specified width and height.
685 int32 width, int32 height, BDataIO* stream)
689 << width << "&th=" << height, stream);
684 RetrieveScreenshot(const BString& code, int32 width, int32 height, BDataIO* stream) argument
H A DWebAppInterface.h114 int32 width, int32 height,
/haiku/src/kits/interface/
H A DHaikuControlLook.cpp2341 float height = 0; local
2345 height = icon->Bounds().Height() + 1;
2350 // truncate the label if necessary and get the width and height
2362 height = std::max(height, textHeight);
2366 BSize(width - 1, height - 1), alignment));
2370 if (icon->Bounds().Height() + 1 < height)
2371 location.y += ceilf((height - icon->Bounds().Height() - 1) / 2);
2381 if (textHeight < height)
2382 location.y += ceilf((height
[all...]
H A DStatusBar.cpp139 // resize so that the height fits
140 float width, height; local
141 GetPreferredSize(&width, &height);
142 ResizeTo(Bounds().Width(), height);
224 float width, height; local
225 GetPreferredSize(&width, &height);
227 return BLayoutUtils::ComposeSize(ExplicitMinSize(), BSize(width, height));
234 float width, height; local
235 GetPreferredSize(&width, &height);
238 BSize(B_SIZE_UNLIMITED, height));
245 float width, height; local
450 float width, height; local
778 font_height height; local
[all...]
/haiku/src/apps/webpositive/
H A DURLInputGroup.cpp322 min.height = ceilf(LineHeight(0) + kHorizontalTextRectInset);
325 min.width = min.height * 3;
/haiku/src/apps/deskcalc/
H A DCalcView.cpp736 CalcView::FrameResized(float width, float height) argument
739 fHeight = height;
1015 float height = fHeight; local
1024 window->ResizeTo(width, height * kDisplayScaleY);
1026 ResizeTo(width, height * kDisplayScaleY);
1046 if (height < kMinimumHeightScientific)
1047 height = kMinimumHeightScientific;
1048 else if (height > kMaximumHeightScientific)
1049 height = kMaximumHeightScientific;
1051 if (width != fWidth || height !
[all...]
H A DCalcView.h62 virtual void FrameResized(float width, float height);
/haiku/src/apps/deskbar/
H A DSwitcher.cpp1338 float height = fIconView->Bounds().Height(); local
1341 BRect box(3, 3, bounds.right - 3, 3 + height + kChildInset * 2);
/haiku/src/add-ons/control_look/BeControlLook/
H A DBeControlLook.cpp2343 float height = 0; local
2348 height = icon->Bounds().Height() + 1;
2353 // truncate the label if necessary and get the width and height
2365 height = std::max(height, textHeight);
2369 BSize(width - 1, height - 1), alignment));
2373 if (icon->Bounds().Height() + 1 < height)
2374 location.y += ceilf((height - icon->Bounds().Height() - 1) / 2);
2383 if (textHeight < height)
2384 location.y += ceilf((height
[all...]

Completed in 151 milliseconds

1234567891011>>