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

Comparing rxvt-unicode/src/main.C (file contents):
Revision 1.46 by pcg, Tue Feb 24 22:28:42 2004 UTC vs.
Revision 1.54 by pcg, Mon Mar 15 00:08:11 2004 UTC

56 STRNCPY (curlocale, locale, 128); 56 STRNCPY (curlocale, locale, 128);
57 setlocale (LC_CTYPE, curlocale); 57 setlocale (LC_CTYPE, curlocale);
58 } 58 }
59} 59}
60 60
61#if ENABLE_COMBINING
62class rxvt_composite_vec rxvt_composite;
63
64text_t rxvt_composite_vec::compose (unicode_t c1, unicode_t c2)
65{
66 compose_char *cc;
67
68 // break compose chains, as stupid readline really likes to duplicate
69 // composing characters for some reason near the end of a line.
70 cc = (*this)[c1];
71 while (cc)
72 {
73 if (cc->c2 == c2) return c1;
74 cc = (*this)[cc->c1];
75 }
76
77 // check to see wether this combination already exists otherwise
78 for (cc = v.end (); cc-- > v.begin (); )
79 {
80 if (cc->c1 == c1 && cc->c2 == c2)
81 return COMPOSE_LO + (cc - v.begin ());
82 }
83
84 // allocate a new combination
85 if (v.size () == COMPOSE_HI - COMPOSE_LO + 1)
86 {
87 static int seen;
88
89 if (!seen++)
90 fprintf (stderr, "too many unrepresentable composite characters, try --enable-unicode3\n");
91
92 return REPLACEMENT_CHAR;
93 }
94
95 v.push_back (compose_char (c1, c2));
96
97 return v.size () - 1 + COMPOSE_LO;
98}
99
100int rxvt_composite_vec::expand (unicode_t c, wchar_t *r)
101{
102 compose_char *cc = (*this)[c];
103
104 if (!cc)
105 {
106 if (r) *r = c;
107 return 1;
108 }
109
110 int len = expand (cc->c1, r);
111
112 if (r) r += len;
113
114 if (cc->c2 != NOCHAR)
115 {
116 len++;
117 if (r) *r++ = cc->c2;
118 }
119
120 return len;
121
122}
123#endif
124
61void * 125void *
62rxvt_term::operator new (size_t s) 126rxvt_term::operator new (size_t s)
63{ 127{
64 void *p = malloc (s); 128 void *p = malloc (s);
65 129
385 449
386 p = malloc (size); 450 p = malloc (size);
387 if (p) 451 if (p)
388 return p; 452 return p;
389 453
390 fprintf (stderr, APL_NAME ": memory allocation failure. Aborting"); 454 fprintf (stderr, RESNAME ": memory allocation failure. Aborting");
391 rxvt_clean_exit (); 455 rxvt_clean_exit ();
392 exit (EXIT_FAILURE); 456 exit (EXIT_FAILURE);
393 /* NOTREACHED */ 457 /* NOTREACHED */
394} 458}
395 459
401 465
402 p = calloc (number, size); 466 p = calloc (number, size);
403 if (p) 467 if (p)
404 return p; 468 return p;
405 469
406 fprintf (stderr, APL_NAME ": memory allocation failure. Aborting"); 470 fprintf (stderr, RESNAME ": memory allocation failure. Aborting");
407 rxvt_clean_exit (); 471 rxvt_clean_exit ();
408 exit (EXIT_FAILURE); 472 exit (EXIT_FAILURE);
409 /* NOTREACHED */ 473 /* NOTREACHED */
410} 474}
411 475
420 else 484 else
421 p = malloc (size); 485 p = malloc (size);
422 if (p) 486 if (p)
423 return p; 487 return p;
424 488
425 fprintf (stderr, APL_NAME ": memory allocation failure. Aborting"); 489 fprintf (stderr, RESNAME ": memory allocation failure. Aborting");
426 rxvt_clean_exit (); 490 rxvt_clean_exit ();
427 exit (EXIT_FAILURE); 491 exit (EXIT_FAILURE);
428 /* NOTREACHED */ 492 /* NOTREACHED */
429} 493}
430 494
622 else 686 else
623 szHint.win_gravity = SouthWestGravity; 687 szHint.win_gravity = SouthWestGravity;
624 } 688 }
625 } 689 }
626 } 690 }
691
627 /* TODO: BOUNDS */ 692 /* TODO: BOUNDS */
628 TermWin.width = TermWin.ncol * TermWin.fwidth; 693 TermWin.width = TermWin.ncol * TermWin.fwidth;
629 TermWin.height = TermWin.nrow * TermWin.fheight; 694 TermWin.height = TermWin.nrow * TermWin.fheight;
630 max_width = MAX_COLS * TermWin.fwidth; 695 max_width = MAX_COLS * TermWin.fwidth;
631 max_height = MAX_ROWS * TermWin.fheight; 696 max_height = MAX_ROWS * TermWin.fheight;
1036 0, TermWin_TotalWidth (), menuBar_TotalHeight ()); 1101 0, TermWin_TotalWidth (), menuBar_TotalHeight ());
1037 1102
1038 XMoveResizeWindow (display->display, TermWin.vt, window_vt_x, 1103 XMoveResizeWindow (display->display, TermWin.vt, window_vt_x,
1039 window_vt_y, TermWin_TotalWidth (), 1104 window_vt_y, TermWin_TotalWidth (),
1040 TermWin_TotalHeight ()); 1105 TermWin_TotalHeight ());
1041 scr_clear (); 1106 scr_clear (height != old_height);
1042#ifdef XPM_BACKGROUND 1107#ifdef XPM_BACKGROUND
1043 resize_pixmap (); 1108 resize_pixmap ();
1044#endif 1109#endif
1045 1110
1046 } 1111 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines