ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/defaultfont.C
(Generate patch)

Comparing rxvt-unicode/src/defaultfont.C (file contents):
Revision 1.34 by pcg, Thu Mar 4 04:28:50 2004 UTC vs.
Revision 1.39 by pcg, Thu Mar 11 20:26:49 2004 UTC

268 bool load (const rxvt_fontprop &prop) 268 bool load (const rxvt_fontprop &prop)
269 { 269 {
270 width = 1; height = 1; 270 width = 1; height = 1;
271 ascent = 1; descent = 0; 271 ascent = 1; descent = 0;
272 272
273 set_name ("built-in pseudofont");
274
273 return true; 275 return true;
274 } 276 }
275 277
276 bool has_codepoint (uint32_t unicode) 278 bool has_codepoint (uint32_t unicode)
277 { 279 {
283 285
284 if (unicode >= 0x2500 && unicode <= 0x257f 286 if (unicode >= 0x2500 && unicode <= 0x257f
285 && linedraw_cmds[unicode - 0x2500]) 287 && linedraw_cmds[unicode - 0x2500])
286 return true; 288 return true;
287 289
288 if (IS_PSEUDO (unicode)) 290 if (IS_COMPOSE (unicode))
289 return true; 291 return true;
290 292
291 switch (unicode) 293 switch (unicode)
292 { 294 {
293 case ZERO_WIDTH_CHAR: 295 case ZERO_WIDTH_CHAR:
311 313
312 XSetForeground (d.display->display, GC, r->PixColors[fg]); 314 XSetForeground (d.display->display, GC, r->PixColors[fg]);
313 315
314 while (len--) 316 while (len--)
315 { 317 {
318#if ENABLE_COMBINING
319 compose_char *cc;
320#endif
316 text_t t = *text++; 321 text_t t = *text++;
317 322
318 // is it in our linedrawing table? 323 // is it in our linedrawing table?
319 if (t >= 0x2500 & t <= 0x2580 && linedraw_cmds[t - 0x2500]) 324 if (t >= 0x2500 & t <= 0x2580 && linedraw_cmds[t - 0x2500])
320 { 325 {
349 } 354 }
350 355
351 gcv.line_width = 0; 356 gcv.line_width = 0;
352 XChangeGC (d.display->display, GC, GCLineWidth, &gcv); 357 XChangeGC (d.display->display, GC, GCLineWidth, &gcv);
353 } 358 }
354 else if (IS_PSEUDO (t)) 359#if ENABLE_COMBINING
355 { 360 else if (IS_COMPOSE (t) && (cc = rxvt_composite[t]))
356 const compose_char &cc = r->composite (t);
357 (void)0; //D ADD pseudo handling here
358 } 361 {
362 rxvt_font *f1 = (*fs)[fs->find_font (cc->c1)];
363 f1->draw (d, x, y, &(t = cc->c1), 1, fg, bg);
364 if (cc->c2 != NOCHAR)
365 {
366 // prefer font of first character, for no good reasons
367 rxvt_font *f2 = f1->has_codepoint (cc->c2)
368 ? f1
369 : (*fs)[fs->find_font (cc->c2)];
370
371 f2->draw (d, x, y, &(t = cc->c2), 1, fg, -1);
372 }
373 }
374#endif
359 else 375 else
360 switch (t) 376 switch (t)
361 { 377 {
362 case ZERO_WIDTH_CHAR: 378 case ZERO_WIDTH_CHAR:
363 break; 379 break;
1026 f = new rxvt_font_x11; 1042 f = new rxvt_font_x11;
1027 } 1043 }
1028 else 1044 else
1029 f = new rxvt_font_x11; 1045 f = new rxvt_font_x11;
1030 1046
1047 f->fs = this;
1031 f->set_term (r); 1048 f->set_term (r);
1032 f->set_name (strdup (name)); 1049 f->set_name (strdup (name));
1033 1050
1034 f->cs = cs; 1051 f->cs = cs;
1035 f->loaded = false; 1052 f->loaded = false;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines