Searched refs:fh (Results 51 - 75 of 76) sorted by relevance

1234

/haiku/src/apps/resedit/
H A DBitmapView.cpp86 font_height fh; local
87 GetFontHeight(&fh);
88 float totalheight = fh.ascent + fh.descent + fh.leading;
/haiku/src/apps/diskusage/
H A DPieView.cpp156 struct font_height fh; local
157 font.GetHeight(&fh);
158 fFontHeight = ceilf(fh.ascent) + ceilf(fh.descent) + ceilf(fh.leading);
/haiku/src/kits/interface/
H A DTabView.cpp447 font_height fh; local
448 GetFontHeight(&fh);
449 fTabHeight = ceilf(fh.ascent + fh.descent + fh.leading + 8.0f);
1382 font_height fh; local
1383 GetFontHeight(&fh);
1384 fTabHeight = ceilf(fh.ascent + fh.descent + fh
[all...]
H A DButton.cpp51 font_height fh; local
52 font.GetHeight(&fh);
53 float minHeight = font.Size() + (float)ceil(fh.ascent + fh.descent);
H A DColumnListView.cpp1637 font_height fh; local
1638 fOutlineView->GetFontHeight(&fh);
1639 float baseline = floor(rect.top + fh.ascent
1640 + (rect.Height() + 1 - (fh.ascent + fh.descent)) / 2);
2671 font_height fh; local
2672 GetFontHeight(&fh);
2674 float baseline = floor(drawRect.top + fh.ascent
2675 + (drawRect.Height() + 1 - (fh.ascent + fh
3484 font_height fh; local
[all...]
H A DColumnTypes.cpp40 font_height fh; local
42 be_plain_font->GetHeight(&fh);
43 fFontHeight = fh.descent + fh.leading;
H A DMenu.cpp2705 font_height fh; local
2706 GetFontHeight(&fh);
2707 frame.Set(0.0f, 0.0f, 0.0f, ceilf(fh.ascent + fh.descent + fPad.top
3016 font_height fh; local
3017 GetFontHeight(&fh);
3018 fAscent = fh.ascent;
3019 fDescent = fh.descent;
3020 fFontHeight = ceilf(fh.ascent + fh
[all...]
H A DTextControl.cpp1227 font_height& fh = fLayoutData->font_info;
1228 GetFontHeight(&fh);
1233 fLayoutData->label_height = ceilf(fh.ascent) + ceilf(fh.descent);
H A DMenuField.cpp1331 font_height& fh = fLayoutData->font_info;
1332 GetFontHeight(&fh);
1337 fLayoutData->label_height = ceilf(fh.ascent) + ceilf(fh.descent);
H A DTextView.cpp3999 font_height fh; local
4000 font->GetHeight(&fh);
4001 *_ascent = fh.ascent;
4002 *_descent = fh.descent + fh.leading;
/haiku/src/apps/icon-o-matic/generic/gui/
H A DIconButton.cpp156 font_height fh; local
157 GetFontHeight(&fh);
159 y -= fh.descent;
273 font_height fh; local
274 GetFontHeight(&fh);
275 minHeight += ceilf(fh.ascent + fh.descent) + 4.0;
H A DListViews.cpp67 font_height fh; local
68 owner->GetFontHeight(&fh);
76 float textHeight = fh.ascent + fh.descent;
80 + ceilf(height / 2 - textHeight / 2 + fh.ascent);
/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaNodePanel.cpp832 font_height fh; local
833 be_plain_font->GetHeight(&fh);
840 m_labelRect.bottom = 2 * M_LABEL_V_MARGIN + (fh.ascent + fh.descent + fh.leading) + 1.0;
866 m_labelOffset.y = m_labelRect.bottom - M_LABEL_V_MARGIN - fh.descent - (fh.leading / 2.0) - 1.0;
H A DMediaJack.cpp511 font_height fh; local
513 font.GetHeight(&fh);
515 p.y = (Frame().Height() / 2.0) + (fh.ascent / 2.0);
585 font_height fh; local
587 font.GetHeight(&fh);
589 p.y = (Frame().Height() / 2.0) + (fh.ascent / 2.0);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DReplyInterpreter.h78 status_t GetFH(FileHandle* fh);
H A DRequestBuilder.h62 status_t PutFH(const FileHandle& fh);
H A DRequestBuilder.cpp468 RequestBuilder::PutFH(const FileHandle& fh) argument
476 fRequest->Stream().AddOpaque(fh.fData, fh.fSize);
870 FileHandle* fh = reinterpret_cast<FileHandle*>(attr[i].fData.fPointer); local
871 str.AddOpaque(fh->fData, fh->fSize);
H A DInodeDir.cpp176 FileHandle fh;
177 reply.GetFH(&fh);
H A DReplyInterpreter.cpp237 ReplyInterpreter::GetFH(FileHandle* fh) argument
252 if (fh != NULL) {
253 fh->fSize = size;
254 memcpy(fh->fData, ptr, size);
/haiku/src/apps/mediaplayer/playlist/
H A DListViews.cpp65 font_height fh; local
66 owner->GetFontHeight( &fh );
72 float textHeight = fh.ascent + fh.descent;
77 + fh.ascent);
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp197 font_height fh; local
198 GetFontHeight(&fh);
285 FillRect(BRect(startX, drawPoint.y - fh.ascent, endX,
286 drawPoint.y + fh.descent));
/haiku/src/kits/shared/
H A DIconButton.cpp237 font_height fh; local
238 GetFontHeight(&fh);
239 minHeight += ceilf(fh.ascent + fh.descent) + vPadding;
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp1383 font_height fh; local
1384 font.GetHeight(&fh);
1386 const float itemHeight = ceilf(fh.ascent + fh.descent + 2 * fh.leading);
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dlowntfs.c496 of = (struct open_file*)(long)fi->fh;
566 of = (struct open_file*)(long)fi->fh;
810 fi->fh = (long)of;
/haiku/src/apps/deskbar/
H A DSwitcher.cpp2223 font_height fh; local
2224 be_plain_font->GetHeight(&fh);
2225 fItemHeight = (int32) fh.ascent + fh.descent;

Completed in 186 milliseconds

1234