comparison src/glyphs-x.c @ 50:ee648375d8d6 r19-16b91

Import from CVS: tag r19-16b91
author cvs
date Mon, 13 Aug 2007 08:56:41 +0200
parents 56c54cf7c5b6
children c0965ff3b039
comparison
equal deleted inserted replaced
49:b46643e427ac 50:ee648375d8d6
3584 /* #### PROBLEM: The display routines assume that the glyph is only 3584 /* #### PROBLEM: The display routines assume that the glyph is only
3585 being displayed in one buffer. If it is in two different buffers 3585 being displayed in one buffer. If it is in two different buffers
3586 which are both being displayed simultaneously you will lose big time. 3586 which are both being displayed simultaneously you will lose big time.
3587 This can be dealt with in the new redisplay. */ 3587 This can be dealt with in the new redisplay. */
3588 3588
3589 /* #### These are completely un-re-implemented in 19.14. Get it done 3589 /* #### These are completely un-re-implemented in 19.16. Get it done
3590 for 19.15. */ 3590 for 20.3. */
3591 3591
3592 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /* 3592 DEFUN ("make-subwindow", Fmake_subwindow, 0, 3, 0, /*
3593 Creates a new `subwindow' object of size WIDTH x HEIGHT. 3593 Creates a new `subwindow' object of size WIDTH x HEIGHT.
3594 The default is a window of size 1x1, which is also the minimum allowed 3594 The default is a window of size 1x1, which is also the minimum allowed
3595 window size. Subwindows are per-frame. A buffer being shown in two 3595 window size. Subwindows are per-frame. A buffer being shown in two
3609 struct frame *f; 3609 struct frame *f;
3610 unsigned int iw, ih; 3610 unsigned int iw, ih;
3611 XSetWindowAttributes xswa; 3611 XSetWindowAttributes xswa;
3612 Mask valueMask = 0; 3612 Mask valueMask = 0;
3613 3613
3614 error ("subwindows are not functional in 19.14; they will be in 19.15"); 3614 error ("subwindows are not functional in 19.16; perhaps some day ...");
3615 3615
3616 f = decode_x_frame (frame); 3616 f = decode_x_frame (frame);
3617 3617
3618 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f)); 3618 xs = LISP_DEVICE_TO_X_SCREEN (FRAME_DEVICE (f));
3619 dpy = DisplayOfScreen (xs); 3619 dpy = DisplayOfScreen (xs);