Searched refs:font (Results 51 - 75 of 293) sorted by relevance

1234567891011>>

/haiku/src/apps/mediaconverter/
H A DMediaFileInfoView.h29 virtual void SetFont(const BFont* font,
44 int32 stringCount, const BFont& font);
/haiku/src/tests/kits/interface/flatten_picture/
H A DTestResultItem.h24 void Update(BView *owner, const BFont *font);
49 virtual void Update(BView *owner, const BFont *font);
/haiku/src/apps/aboutsystem/
H A DHyperTextView.cpp36 BFont font; local
37 view->GetFont(&font);
38 font.SetFace(B_UNDERSCORE_FACE);
39 view->SetFontAndColor(startOffset, endOffset, &font, B_FONT_FACE);
50 BFont font; local
51 view->GetFont(&font);
52 font.SetFace(B_REGULAR_FACE);
53 view->SetFontAndColor(startOffset, endOffset, &font, B_FONT_FACE);
/haiku/src/preferences/printers/
H A DPrinterListView.cpp336 BFont font; local
337 view->GetFont(&font);
339 leftColumn = font.StringWidth(fName.String());
340 leftColumn = MAX(leftColumn, font.StringWidth(fDriverName.String()));
342 rightColumn = font.StringWidth(fPendingJobs.String());
343 rightColumn = MAX(rightColumn, font.StringWidth(fTransport.String()));
344 rightColumn = MAX(rightColumn, font.StringWidth(fComments.String()));
349 PrinterItem::Update(BView *owner, const BFont *font) argument
351 BListItem::Update(owner,font);
354 font
[all...]
/haiku/src/preferences/input/
H A DInputDeviceView.cpp88 BFont font = be_plain_font; local
90 font.GetHeight(&fontInfo);
92 onto->SetFont(&font);
120 DeviceListItemView::Update(BView* owner, const BFont* font) argument
122 BListItem::Update(owner, font);
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp382 BFont font; local
383 font.SetFamilyAndStyle(fontFamily, fontStyle);
384 fItalicItem->SetMarked((font.Face() & B_ITALIC_FACE) != 0);
385 fBoldItem->SetMarked((font.Face() & B_BOLD_FACE) != 0);
386 fUnderlineItem->SetMarked((font.Face() & B_UNDERSCORE_FACE) != 0);
407 BFont font; local
408 font.SetFamilyAndStyle(fontFamily, fontStyle);
409 fItalicItem->SetMarked((font.Face() & B_ITALIC_FACE) != 0);
410 fBoldItem->SetMarked((font.Face() & B_BOLD_FACE) != 0);
411 fUnderlineItem->SetMarked((font
419 BFont font; local
438 BFont font; local
455 BFont font; local
472 BFont font; local
489 BFont font; local
719 BFont font; local
1853 BFont font; local
1867 BFont font; local
1879 BFont font; local
[all...]
/haiku/src/add-ons/translators/rtf/
H A Dconvert.cpp244 set_font_face(BFont &font, uint16 face, bool on) argument
249 if (font.Face() == B_REGULAR_FACE && on)
250 font.SetFace(face);
251 else if ((font.Face() & ~face) == 0 && !on)
252 font.SetFace(B_REGULAR_FACE);
254 font.SetFace(font.Face() | face);
256 font.SetFace(font.Face() & ~face);
271 && a->font
484 BFont font; local
[all...]
/haiku/src/servers/app/
H A DPictureBoundingBoxPlayer.cpp408 ServerFont font = state->GetDrawState()->Font(); local
412 font.GetBoundingBoxesForStrings((char**)&string, &length, 1, &rect,
620 ServerFont font; local
621 font.SetStyle(fontStyle);
622 state->GetDrawState()->SetFont(font, B_FONT_FAMILY_AND_STYLE);
633 ServerFont font(state->GetDrawState()->Font());
634 FontStyle* fontStyle = gFontManager->GetStyle(font.Family(), style);
635 font.SetStyle(fontStyle);
636 state->GetDrawState()->SetFont(font, B_FONT_FAMILY_AND_STYLE);
646 ServerFont font; local
658 ServerFont font; local
670 ServerFont font; local
682 ServerFont font; local
694 ServerFont font; local
706 ServerFont font; local
718 ServerFont font; local
[all...]
H A DServerPicture.cpp794 ServerFont font; local
795 font.SetStyle(fontStyle);
796 canvas->CurrentState()->SetFont(font, B_FONT_FAMILY_AND_STYLE);
806 ServerFont font(canvas->CurrentState()->Font());
808 FontStyle* fontStyle = gFontManager->GetStyle(font.Family(), style);
810 font.SetStyle(fontStyle);
811 canvas->CurrentState()->SetFont(font, B_FONT_FAMILY_AND_STYLE);
819 ServerFont font; local
820 font.SetSpacing(spacing);
821 canvas->CurrentState()->SetFont(font, B_FONT_SPACIN
829 ServerFont font; local
839 ServerFont font; local
849 ServerFont font; local
859 ServerFont font; local
869 ServerFont font; local
879 ServerFont font; local
1223 WriteFontState(const ServerFont& font, uint16 mask) argument
[all...]
H A DDesktopSettingsPrivate.h34 void SetDefaultPlainFont(const ServerFont& font);
37 void SetDefaultBoldFont(const ServerFont& font);
40 void SetDefaultFixedFont(const ServerFont& font);
/haiku/src/apps/mail/
H A DEnclosures.cpp109 BFont font(be_plain_font);
110 font.SetSize(font.Size() * kPlainFontSizeScale);
111 SetFont(&font);
332 BFont font(be_plain_font);
333 font.SetSize(font.Size() * kPlainFontSizeScale);
334 SetFont(&font);
420 TListItem::Update(BView* owner, const BFont* font) argument
422 BListItem::Update(owner, font);
503 BFont font; local
[all...]
/haiku/src/apps/cortex/DormantNodeView/
H A DDormantNodeListItem.cpp145 const BFont *font) {
147 BListItem::Update(owner, font);
149 SetWidth(font->StringWidth(m_info.name));
194 const BFont *font) const {
201 r.right += font->StringWidth(m_info.name);
204 r.right = font->StringWidth(m_info.name);
207 font->GetHeight(&fh);
143 Update( BView *owner, const BFont *font) argument
/haiku/src/libs/print/libprint/
H A DPagesView.cpp36 BFont font(be_plain_font);
37 font.SetSize(8);
38 SetFont(&font);
/haiku/src/tests/servers/app/lock_focus/
H A DLockFocusTest.cpp82 BFont font; local
83 font.SetSize(72);
84 SetFont(&font);
/haiku/src/kits/interface/
H A DStringItem.cpp120 BStringItem::Update(BView* owner, const BFont* font) argument
123 SetWidth(font->StringWidth(fText)
128 font->GetHeight(&fheight);
H A DSeparatorItem.cpp76 BFont font(be_plain_font);
78 Menu()->GetFont(&font);
80 const float height = floorf((font.Size() * 0.8) / 2) * 2;
/haiku/src/apps/deskbar/
H A DShowHideMenuItem.cpp58 BFont font(be_plain_font);
59 fTitleWidth = ceilf(font.StringWidth(title));
61 font.GetHeight(&fontHeight);
/haiku/src/apps/processcontroller/
H A DNoiseBarMenuItem.cpp43 BFont font; local
44 menu->GetFont(&font);
45 frame = bar_rect(frame, &font);
/haiku/src/servers/app/font/
H A DFontCache.cpp50 FontCache::FontCacheEntryFor(const ServerFont& font, bool forceVector) argument
54 FontCacheEntry::GenerateSignature(signature, signatureSize, font,
63 //printf("FontCacheEntryFor(%ld): %p\n", font.GetFamilyAndStyle(), entry);
76 // inserted a cache entry for this font. So we look again if there
85 if (!entry || !entry->Init(font, forceVector)
88 "out of memory or no font file\n");
92 //printf("FontCacheEntryFor(%ld): %p (insert)\n", font.GetFamilyAndStyle(), entry);
H A DFontCacheEntry.h108 bool Init(const ServerFont& font, bool forceVector);
130 const ServerFont& font, bool forceVector);
143 static glyph_rendering _RenderTypeFor(const ServerFont& font,
/haiku/headers/os/interface/
H A DStringItem.h29 virtual void Update(BView* owner, const BFont* font);
/haiku/src/apps/debuganalyzer/gui/chart/
H A DStringChartLegend.h29 StringChartLegendRenderer(const BFont& font);
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DOptionValueView.cpp78 BFont font; local
79 GetFont(&font);
82 font.GetHeight(&fh);
85 font.TruncateString(&truncated, B_TRUNCATE_END, b.Width());
/haiku/src/preferences/time/
H A DTimeZoneListItem.h29 virtual void Update(BView* owner, const BFont* font);
/haiku/src/preferences/network/
H A DServiceListItem.h32 virtual void Update(BView* owner, const BFont* font);

Completed in 119 milliseconds

1234567891011>>