Symbol: fFontInfo
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1649
scrollBar->SetSteps(fFontInfo.lineHeight, height + 1);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1758
be_plain_font->GetHeight(&fFontInfo.fontHeight);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1759
fFontInfo.lineHeight = ceilf(fFontInfo.fontHeight.ascent)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1760
+ ceilf(fFontInfo.fontHeight.descent);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1766
fThreadsView = new ThreadsView(fFontInfo, &fFilterModel,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1768
fSchedulingView = new SchedulingView(fFontInfo, &fFilterModel,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1770
fFontInfo, &fFilterModel)).View();
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
307
return fFontInfo.lineHeight * CountLines();
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
312
int32 line = (int32)point.y / (int32)fFontInfo.lineHeight;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
318
int32 lineHeight = (int32)fFontInfo.lineHeight;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
327
float y = (float)line * fFontInfo.lineHeight;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
328
return BRect(0, y, Bounds().right, y + fFontInfo.lineHeight - 1);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
334
FontInfo& fFontInfo;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
529
float top = (float)index * fFontInfo.lineHeight;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
530
float bottom = (float)(index + count) * fFontInfo.lineHeight - 1;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
589
float y = lineRect.bottom - fFontInfo.fontHeight.descent + 1;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
594
BRect lowerRect(0, (float)CountLines() * fFontInfo.lineHeight,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
702
scrollBar->SetSteps(fFontInfo.lineHeight, width + 1);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.h
51
FontInfo fFontInfo;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1005
float y = ((float)line + 0.5f) * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1011
float y = (maxLine + 1) * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1192
SetFont(&fFontInfo->font);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1220
y = i * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1222
FillRect(BRect(0.0, y, kLeftTextMargin, y + fFontInfo->lineHeight),
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1247
y + fFontInfo->lineHeight - 1), B_SOLID_LOW);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1253
BPoint linePoint(kLeftTextMargin, y + fFontInfo->fontHeight.ascent);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1274
y = (maxLine + 1) * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
133
FontInfo* fFontInfo;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1689
selectionRect.top = fSelectionStart.line * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1692
selectionRect.bottom = selectionRect.top + fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1699
selectionRect.top = fSelectionStart.line * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1701
selectionRect.bottom = selectionRect.top + fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1708
* fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1710
selectionRect.bottom = fSelectionEnd.line * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1717
selectionRect.top = fSelectionEnd.line * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1720
selectionRect.bottom = selectionRect.top + fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1858
factor = (int)(ceilf(difference / fFontInfo->lineHeight));
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1895
vertical->SetValue(value + fFontInfo->lineHeight * lineCount);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2078
fFontInfo.font = *be_fixed_font;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2079
fFontInfo.font.GetHeight(&fFontInfo.fontHeight);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2080
fFontInfo.lineHeight = ceilf(fFontInfo.fontHeight.ascent)
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2081
+ ceilf(fFontInfo.fontHeight.descent);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2351
float top = (float)line * fFontInfo.lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2352
float bottom = top + fFontInfo.lineHeight - 1;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2366
} else if (top - fFontInfo.lineHeight < visible.top)
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2367
ScrollBy(0, top - fFontInfo.lineHeight - visible.top);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2368
else if (bottom + fFontInfo.lineHeight > visible.bottom)
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2369
ScrollBy(0, bottom + fFontInfo.lineHeight - visible.bottom);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2468
fMarkerManager, &fFontInfo));
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2469
AddChild(fTextView = new TextView(this, fMarkerManager, &fFontInfo));
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2485
scrollBar->SetSteps(fFontInfo.lineHeight, size.width + 1);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
2498
scrollBar->SetSteps(fFontInfo.lineHeight, size.height + 1);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
423
fFontInfo(fontInfo),
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
456
float height = LineCount() * fFontInfo->lineHeight - 1;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
468
int32 line = (int32)yOffset / (int32)fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
477
int32 lineHeight = (int32)fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
488
float y = (float)line * fFontInfo->lineHeight;
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
489
return BRect(0, y, Bounds().right, y + fFontInfo->lineHeight - 1);
src/apps/debugger/user_interface/gui/team_window/SourceView.h
97
FontInfo fFontInfo;