Searched refs:underline (Results 1 - 11 of 11) sorted by relevance

/haiku/src/apps/terminal/
H A DTerminalLine.h25 uint32 underline; member in struct:Attributes
28 Attributes() : state(0), foreground(0), background(0), underline(0), underlineStyle(0) {}
35 underline = 0;
66 underline = 0x80000000 | (red << 16) | (green << 8) | blue;
89 underline = index;
113 underline = 0;
147 if ((underline & 0x80000000) != 0)
148 return make_color((underline >> 16) & 0xFF,
149 (underline >> 8) & 0xFF,
150 underline
[all...]
/haiku/src/apps/haikudepot/textview/
H A DCharacterStyle.cpp414 CharacterStyle::SetUnderline(uint8 underline) argument
418 if ((underline && (face & B_UNDERSCORE_FACE) != 0)
419 || (!underline && (face & B_UNDERSCORE_FACE) == 0)) {
424 if (underline) {
436 // implements drawing the fancy underline styles. Until then, we can at least get simple
438 CharacterStyleDataRef data = fStyleData->SetUnderline(underline);
440 return data->Underline() == underline;
H A DCharacterStyle.h73 bool SetUnderline(uint8 underline);
H A DCharacterStyleData.h103 CharacterStyleDataRef SetUnderline(uint8 underline);
H A DCharacterStyleData.cpp337 CharacterStyleData::SetUnderline(uint8 underline) argument
339 if (fUnderlineStyle == underline)
346 ret->fUnderlineStyle = underline;
/haiku/src/apps/serialconnect/libvterm/src/
H A Dpen.c150 state->pen.underline = 0; setpenattr_int( state, VTERM_ATTR_UNDERLINE, 0);
172 setpenattr_int( state, VTERM_ATTR_UNDERLINE, state->pen.underline);
243 state->pen.underline = 1;
269 state->pen.underline = 2;
284 state->pen.underline = 0;
383 if(state->pen.underline == 1)
398 if(state->pen.underline == 2)
432 val->number = state->pen.underline;
H A Dscreen.c19 unsigned int underline : 2; member in struct:__anon24
404 screen->pen.underline = val->number;
757 cell->attrs.underline = intcell->pen.underline;
796 intcell->pen.underline = cell->attrs.underline;
880 if((attrs & VTERM_ATTR_UNDERLINE_MASK) && (a->pen.underline != b->pen.underline))
H A Dvterm_internal.h28 unsigned int underline:2; member in struct:VTermPen
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css202 emphasis[role="underline"] {
203 text-decoration:underline;
326 text-decoration:underline;
352 text-decoration: underline;
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h220 unsigned int underline : 2; member in struct:__anon14::__anon15
/haiku/src/apps/serialconnect/
H A DTermView.cpp133 if (cell.attrs.underline)

Completed in 108 milliseconds