Searched refs:face (Results 26 - 39 of 39) sorted by relevance

12

/haiku/src/kits/interface/
H A DFont.cpp53 uint16 face; member in struct:style
190 *_face = style->face;
266 link.Read<uint16>(&style->face);
477 // The face value returned by this function is not very reliable. At the
574 // R5 has a bug here: the face is not updated even though the IDs are set.
575 // This is a problem because the face flag includes Regular/Bold/Italic
604 // Sets the font's family and face all at once
606 BFont::SetFamilyAndFace(const font_family family, uint16 face) argument
609 // i.e. passing a nonexistent family will cause only the face to be set.
610 // Additionally, if a particular face doe
681 SetFace(uint16 face) argument
[all...]
H A DPicturePlayer.cpp427 set_font_face(void* _context, uint16 face) argument
431 face);
1551 const uint32* face; local
1552 if (callbacks.set_font_face == NULL || !reader.Get(face))
1555 callbacks.set_font_face(userData, *face);
H A DPictureDataWriter.cpp839 PictureDataWriter::WriteSetFontFace(const int32& face) argument
843 Write<int32>(face);
H A DTextView.cpp102 uint16 face; // typically 0 member in struct:flattened_text_run
2936 array->styles[i].face = B_HOST_TO_BENDIAN_INT16(
2988 uint16 face = B_BENDIAN_TO_HOST_INT16(array->styles[i].face); local
2989 if (face != B_REGULAR_FACE) {
2991 runArray->runs[i].font.SetFace(face);
/haiku/src/add-ons/translators/rtf/
H A Dconvert.cpp244 set_font_face(BFont &font, uint16 face, bool on) argument
250 font.SetFace(face);
251 else if ((font.Face() & ~face) == 0 && !on)
254 font.SetFace(font.Face() | face);
256 font.SetFace(font.Face() & ~face);
/haiku/src/servers/app/
H A DDrawState.cpp198 uint16 face; local
199 link.Read<uint16>(&face);
200 fFont.SetFace(face);
757 // face
H A DPictureBoundingBoxPlayer.cpp713 set_font_face(void* _state, uint16 face) argument
719 font.SetFace(face);
H A DServerApp.cpp1590 // 3) uint16 - face of added font
1646 // 3) uint16 - face of added font
1855 // 4) uint16 - face flags
1932 // 2) uint16 - face of style
2018 // 5) face - the font's current face
2023 // 3) uint16 - face
2028 uint16 face; local
2033 && link.Read<uint16>(&face) == B_OK) {
2034 // get the font and return IDs and face
[all...]
H A DServerPicture.cpp876 set_font_face(void* _canvas, uint16 face) argument
880 font.SetFace(face);
/haiku/headers/private/interface/
H A DPicturePlayer.h85 void (*set_font_face)(void* userData, uint16 face);
H A DPictureDataWriter.h67 status_t WriteSetFontFace(const int32& face);
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp1904 uint16 face = 0; local
1907 face = font.Face();
1910 face |= B_BOLD_FACE;
1913 face |= B_ITALIC_FACE;
1916 face |= B_UNDERSCORE_FACE;
1918 font.SetFace(face);
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js181 // Font spacing and face
553 this.face = 0;
569 this.face = remoteMessage.dataView.readUint16();
1073 context.font = (this.font.face & B_ITALIC_FACE ? "italic " : "")
1074 + (this.font.face & B_BOLD_FACE ? "bold " : "")
/haiku/src/apps/terminal/
H A DTermView.cpp815 uint16 face = fBoldFont.Face(); local
816 fBoldFont.SetFace(B_BOLD_FACE | (face & ~B_REGULAR_FACE));

Completed in 205 milliseconds

12