annotate src/glyphs.c @ 665:fdefd0186b75

[xemacs-hg @ 2001-09-20 06:28:42 by ben] The great integral types renaming. The purpose of this is to rationalize the names used for various integral types, so that they match their intended uses and follow consist conventions, and eliminate types that were not semantically different from each other. The conventions are: -- All integral types that measure quantities of anything are signed. Some people disagree vociferously with this, but their arguments are mostly theoretical, and are vastly outweighed by the practical headaches of mixing signed and unsigned values, and more importantly by the far increased likelihood of inadvertent bugs: Because of the broken "viral" nature of unsigned quantities in C (operations involving mixed signed/unsigned are done unsigned, when exactly the opposite is nearly always wanted), even a single error in declaring a quantity unsigned that should be signed, or even the even more subtle error of comparing signed and unsigned values and forgetting the necessary cast, can be catastrophic, as comparisons will yield wrong results. -Wsign-compare is turned on specifically to catch this, but this tends to result in a great number of warnings when mixing signed and unsigned, and the casts are annoying. More has been written on this elsewhere. -- All such quantity types just mentioned boil down to EMACS_INT, which is 32 bits on 32-bit machines and 64 bits on 64-bit machines. This is guaranteed to be the same size as Lisp objects of type `int', and (as far as I can tell) of size_t (unsigned!) and ssize_t. The only type below that is not an EMACS_INT is Hashcode, which is an unsigned value of the same size as EMACS_INT. -- Type names should be relatively short (no more than 10 characters or so), with the first letter capitalized and no underscores if they can at all be avoided. -- "count" == a zero-based measurement of some quantity. Includes sizes, offsets, and indexes. -- "bpos" == a one-based measurement of a position in a buffer. "Charbpos" and "Bytebpos" count text in the buffer, rather than bytes in memory; thus Bytebpos does not directly correspond to the memory representation. Use "Membpos" for this. -- "Char" refers to internal-format characters, not to the C type "char", which is really a byte. -- For the actual name changes, see the script below. I ran the following script to do the conversion. (NOTE: This script is idempotent. You can safely run it multiple times and it will not screw up previous results -- in fact, it will do nothing if nothing has changed. Thus, it can be run repeatedly as necessary to handle patches coming in from old workspaces, or old branches.) There are two tags, just before and just after the change: `pre-integral-type-rename' and `post-integral-type-rename'. When merging code from the main trunk into a branch, the best thing to do is first merge up to `pre-integral-type-rename', then apply the script and associated changes, then merge from `post-integral-type-change' to the present. (Alternatively, just do the merging in one operation; but you may then have a lot of conflicts needing to be resolved by hand.) Script `fixtypes.sh' follows: ----------------------------------- cut ------------------------------------ files="*.[ch] s/*.h m/*.h config.h.in ../configure.in Makefile.in.in ../lib-src/*.[ch] ../lwlib/*.[ch]" gr Memory_Count Bytecount $files gr Lstream_Data_Count Bytecount $files gr Element_Count Elemcount $files gr Hash_Code Hashcode $files gr extcount bytecount $files gr bufpos charbpos $files gr bytind bytebpos $files gr memind membpos $files gr bufbyte intbyte $files gr Extcount Bytecount $files gr Bufpos Charbpos $files gr Bytind Bytebpos $files gr Memind Membpos $files gr Bufbyte Intbyte $files gr EXTCOUNT BYTECOUNT $files gr BUFPOS CHARBPOS $files gr BYTIND BYTEBPOS $files gr MEMIND MEMBPOS $files gr BUFBYTE INTBYTE $files gr MEMORY_COUNT BYTECOUNT $files gr LSTREAM_DATA_COUNT BYTECOUNT $files gr ELEMENT_COUNT ELEMCOUNT $files gr HASH_CODE HASHCODE $files ----------------------------------- cut ------------------------------------ `fixtypes.sh' is a Bourne-shell script; it uses 'gr': ----------------------------------- cut ------------------------------------ #!/bin/sh # Usage is like this: # gr FROM TO FILES ... # globally replace FROM with TO in FILES. FROM and TO are regular expressions. # backup files are stored in the `backup' directory. from="$1" to="$2" shift 2 echo ${1+"$@"} | xargs global-replace "s/$from/$to/g" ----------------------------------- cut ------------------------------------ `gr' in turn uses a Perl script to do its real work, `global-replace', which follows: ----------------------------------- cut ------------------------------------ : #-*- Perl -*- ### global-modify --- modify the contents of a file by a Perl expression ## Copyright (C) 1999 Martin Buchholz. ## Copyright (C) 2001 Ben Wing. ## Authors: Martin Buchholz <martin@xemacs.org>, Ben Wing <ben@xemacs.org> ## Maintainer: Ben Wing <ben@xemacs.org> ## Current Version: 1.0, May 5, 2001 # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with XEmacs; see the file COPYING. If not, write to the Free # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. eval 'exec perl -w -S $0 ${1+"$@"}' if 0; use strict; use FileHandle; use Carp; use Getopt::Long; use File::Basename; (my $myName = $0) =~ s@.*/@@; my $usage=" Usage: $myName [--help] [--backup-dir=DIR] [--line-mode] [--hunk-mode] PERLEXPR FILE ... Globally modify a file, either line by line or in one big hunk. Typical usage is like this: [with GNU print, GNU xargs: guaranteed to handle spaces, quotes, etc. in file names] find . -name '*.[ch]' -print0 | xargs -0 $0 's/\bCONST\b/const/g'\n [with non-GNU print, xargs] find . -name '*.[ch]' -print | xargs $0 's/\bCONST\b/const/g'\n The file is read in, either line by line (with --line-mode specified) or in one big hunk (with --hunk-mode specified; it's the default), and the Perl expression is then evalled with \$_ set to the line or hunk of text, including the terminating newline if there is one. It should destructively modify the value there, storing the changed result in \$_. Files in which any modifications are made are backed up to the directory specified using --backup-dir, or to `backup' by default. To disable this, use --backup-dir= with no argument. Hunk mode is the default because it is MUCH MUCH faster than line-by-line. Use line-by-line only when it matters, e.g. you want to do a replacement only once per line (the default without the `g' argument). Conversely, when using hunk mode, *ALWAYS* use `g'; otherwise, you will only make one replacement in the entire file! "; my %options = (); $Getopt::Long::ignorecase = 0; &GetOptions ( \%options, 'help', 'backup-dir=s', 'line-mode', 'hunk-mode', ); die $usage if $options{"help"} or @ARGV <= 1; my $code = shift; die $usage if grep (-d || ! -w, @ARGV); sub SafeOpen { open ((my $fh = new FileHandle), $_[0]); confess "Can't open $_[0]: $!" if ! defined $fh; return $fh; } sub SafeClose { close $_[0] or confess "Can't close $_[0]: $!"; } sub FileContents { my $fh = SafeOpen ("< $_[0]"); my $olddollarslash = $/; local $/ = undef; my $contents = <$fh>; $/ = $olddollarslash; return $contents; } sub WriteStringToFile { my $fh = SafeOpen ("> $_[0]"); binmode $fh; print $fh $_[1] or confess "$_[0]: $!\n"; SafeClose $fh; } foreach my $file (@ARGV) { my $changed_p = 0; my $new_contents = ""; if ($options{"line-mode"}) { my $fh = SafeOpen $file; while (<$fh>) { my $save_line = $_; eval $code; $changed_p = 1 if $save_line ne $_; $new_contents .= $_; } } else { my $orig_contents = $_ = FileContents $file; eval $code; if ($_ ne $orig_contents) { $changed_p = 1; $new_contents = $_; } } if ($changed_p) { my $backdir = $options{"backup-dir"}; $backdir = "backup" if !defined ($backdir); if ($backdir) { my ($name, $path, $suffix) = fileparse ($file, ""); my $backfulldir = $path . $backdir; my $backfile = "$backfulldir/$name"; mkdir $backfulldir, 0755 unless -d $backfulldir; print "modifying $file (original saved in $backfile)\n"; rename $file, $backfile; } WriteStringToFile ($file, $new_contents); } } ----------------------------------- cut ------------------------------------ In addition to those programs, I needed to fix up a few other things, particularly relating to the duplicate definitions of types, now that some types merged with others. Specifically: 1. in lisp.h, removed duplicate declarations of Bytecount. The changed code should now look like this: (In each code snippet below, the first and last lines are the same as the original, as are all lines outside of those lines. That allows you to locate the section to be replaced, and replace the stuff in that section, verifying that there isn't anything new added that would need to be kept.) --------------------------------- snip ------------------------------------- /* Counts of bytes or chars */ typedef EMACS_INT Bytecount; typedef EMACS_INT Charcount; /* Counts of elements */ typedef EMACS_INT Elemcount; /* Hash codes */ typedef unsigned long Hashcode; /* ------------------------ dynamic arrays ------------------- */ --------------------------------- snip ------------------------------------- 2. in lstream.h, removed duplicate declaration of Bytecount. Rewrote the comment about this type. The changed code should now look like this: --------------------------------- snip ------------------------------------- #endif /* The have been some arguments over the what the type should be that specifies a count of bytes in a data block to be written out or read in, using Lstream_read(), Lstream_write(), and related functions. Originally it was long, which worked fine; Martin "corrected" these to size_t and ssize_t on the grounds that this is theoretically cleaner and is in keeping with the C standards. Unfortunately, this practice is horribly error-prone due to design flaws in the way that mixed signed/unsigned arithmetic happens. In fact, by doing this change, Martin introduced a subtle but fatal error that caused the operation of sending large mail messages to the SMTP server under Windows to fail. By putting all values back to be signed, avoiding any signed/unsigned mixing, the bug immediately went away. The type then in use was Lstream_Data_Count, so that it be reverted cleanly if a vote came to that. Now it is Bytecount. Some earlier comments about why the type must be signed: This MUST BE SIGNED, since it also is used in functions that return the number of bytes actually read to or written from in an operation, and these functions can return -1 to signal error. Note that the standard Unix read() and write() functions define the count going in as a size_t, which is UNSIGNED, and the count going out as an ssize_t, which is SIGNED. This is a horrible design flaw. Not only is it highly likely to lead to logic errors when a -1 gets interpreted as a large positive number, but operations are bound to fail in all sorts of horrible ways when a number in the upper-half of the size_t range is passed in -- this number is unrepresentable as an ssize_t, so code that checks to see how many bytes are actually written (which is mandatory if you are dealing with certain types of devices) will get completely screwed up. --ben */ typedef enum lstream_buffering --------------------------------- snip ------------------------------------- 3. in dumper.c, there are four places, all inside of switch() statements, where XD_BYTECOUNT appears twice as a case tag. In each case, the two case blocks contain identical code, and you should *REMOVE THE SECOND* and leave the first.
author ben
date Thu, 20 Sep 2001 06:31:11 +0000
parents b39c14581166
children 943eaba38521
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 /* Generic glyph/image implementation + display tables
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3 Copyright (C) 1995 Tinker Systems
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4 Copyright (C) 1995, 1996, 2000 Ben Wing
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5 Copyright (C) 1995 Sun Microsystems
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
6 Copyright (C) 1998, 1999, 2000 Andy Piper
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
8 This file is part of XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10 XEmacs is free software; you can redistribute it and/or modify it
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
11 under the terms of the GNU General Public License as published by the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
12 Free Software Foundation; either version 2, or (at your option) any
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
13 later version.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
14
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
18 for more details.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
19
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
21 along with XEmacs; see the file COPYING. If not, write to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23 Boston, MA 02111-1307, USA. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
25 /* Synched up with: Not in FSF. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
26
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
27 /* Written by Ben Wing and Chuck Thompson. Heavily modified /
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
28 rewritten by Andy Piper. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
29
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
30 #include <config.h>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
31 #include "lisp.h"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
32
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
33 #include "blocktype.h"
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
34 #include "buffer.h"
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
35 #include "chartab.h"
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
36 #include "device.h"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
37 #include "elhash.h"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
38 #include "faces.h"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
39 #include "frame.h"
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
40 #include "glyphs.h"
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
41 #include "insdel.h"
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
42 #include "objects.h"
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
43 #include "opaque.h"
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
44 #include "rangetab.h"
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
45 #include "redisplay.h"
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
46 #include "specifier.h"
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
47 #include "window.h"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
48
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
49 #if defined (HAVE_XPM) && !defined (HAVE_GTK)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
50 #include <X11/xpm.h>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
51 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
52
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
53 Lisp_Object Qimage_conversion_error;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
54
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
55 Lisp_Object Qglyphp, Qcontrib_p, Qbaseline;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
56 Lisp_Object Qbuffer_glyph_p, Qpointer_glyph_p, Qicon_glyph_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
57 Lisp_Object Qnothing_image_instance_p, Qtext_image_instance_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
58 Lisp_Object Qmono_pixmap_image_instance_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
59 Lisp_Object Qcolor_pixmap_image_instance_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
60 Lisp_Object Qpointer_image_instance_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
61 Lisp_Object Qsubwindow_image_instance_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
62 Lisp_Object Qwidget_image_instance_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
63 Lisp_Object Qconst_glyph_variable;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
64 Lisp_Object Qmono_pixmap, Qcolor_pixmap, Qsubwindow;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
65 Lisp_Object Q_file, Q_data, Q_face, Q_pixel_width, Q_pixel_height;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
66 Lisp_Object Qformatted_string;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
67 Lisp_Object Vcurrent_display_table;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
68 Lisp_Object Vtruncation_glyph, Vcontinuation_glyph, Voctal_escape_glyph;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
69 Lisp_Object Vcontrol_arrow_glyph, Vinvisible_text_glyph, Vhscroll_glyph;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
70 Lisp_Object Vxemacs_logo;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
71 Lisp_Object Vthe_nothing_vector;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
72 Lisp_Object Vimage_instantiator_format_list;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
73 Lisp_Object Vimage_instance_type_list;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
74 Lisp_Object Vglyph_type_list;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
75
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
76 int disable_animated_pixmaps;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
77
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
78 DEFINE_IMAGE_INSTANTIATOR_FORMAT (nothing);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
79 DEFINE_IMAGE_INSTANTIATOR_FORMAT (inherit);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
80 DEFINE_IMAGE_INSTANTIATOR_FORMAT (string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
81 DEFINE_IMAGE_INSTANTIATOR_FORMAT (formatted_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
82 DEFINE_IMAGE_INSTANTIATOR_FORMAT (subwindow);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
83 DEFINE_IMAGE_INSTANTIATOR_FORMAT (text);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
84 DEFINE_IMAGE_INSTANTIATOR_FORMAT (pointer);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
85
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
86 #ifdef HAVE_WINDOW_SYSTEM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
87 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xbm);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
88 Lisp_Object Qxbm;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
89
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
90 Lisp_Object Q_mask_file, Q_mask_data, Q_hotspot_x, Q_hotspot_y;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
91 Lisp_Object Q_foreground, Q_background;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
92 #ifndef BitmapSuccess
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
93 #define BitmapSuccess 0
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
94 #define BitmapOpenFailed 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
95 #define BitmapFileInvalid 2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
96 #define BitmapNoMemory 3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
97 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
98 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
99
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
100 #ifdef HAVE_XFACE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
101 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xface);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
102 Lisp_Object Qxface;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
103 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
104
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
105 #ifdef HAVE_XPM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
106 DEFINE_IMAGE_INSTANTIATOR_FORMAT (xpm);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
107 Lisp_Object Qxpm;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
108 Lisp_Object Q_color_symbols;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
109 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
110
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
111 typedef struct image_instantiator_format_entry image_instantiator_format_entry;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
112 struct image_instantiator_format_entry
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
113 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
114 Lisp_Object symbol;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
115 Lisp_Object device;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
116 struct image_instantiator_methods *meths;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
117 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
118
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
119 typedef struct
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
120 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
121 Dynarr_declare (struct image_instantiator_format_entry);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
122 } image_instantiator_format_entry_dynarr;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
123
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
124 /* This contains one entry per format, per device it's defined on. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
125 image_instantiator_format_entry_dynarr *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
126 the_image_instantiator_format_entry_dynarr;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
127
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
128 static Lisp_Object allocate_image_instance (Lisp_Object governing_domain,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
129 Lisp_Object parent,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
130 Lisp_Object instantiator);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
131 static void image_validate (Lisp_Object instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
132 static void glyph_property_was_changed (Lisp_Object glyph,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
133 Lisp_Object property,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
134 Lisp_Object locale);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
135 static void set_image_instance_dirty_p (Lisp_Object instance, int dirty);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
136 static void register_ignored_expose (struct frame* f, int x, int y, int width, int height);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
137 static void cache_subwindow_instance_in_frame_maybe (Lisp_Object instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
138 static void update_image_instance (Lisp_Object image_instance,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
139 Lisp_Object instantiator);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
140 /* Unfortunately windows and X are different. In windows BeginPaint()
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
141 will prevent WM_PAINT messages being generated so it is unnecessary
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
142 to register exposures as they will not occur. Under X they will
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
143 always occur. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
144 int hold_ignored_expose_registration;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
145
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
146 EXFUN (Fimage_instance_type, 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
147 EXFUN (Fglyph_type, 1);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
148 EXFUN (Fnext_window, 4);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
149
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
150
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
151 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
152 * Image Instantiators *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
153 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
154
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
155 struct image_instantiator_methods *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
156 decode_device_ii_format (Lisp_Object device, Lisp_Object format,
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
157 Error_Behavior errb)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
158 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
159 int i;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
160
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
161 if (!SYMBOLP (format))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
162 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
163 if (ERRB_EQ (errb, ERROR_ME))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
164 CHECK_SYMBOL (format);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
165 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
166 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
167
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
168 for (i = 0; i < Dynarr_length (the_image_instantiator_format_entry_dynarr);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
169 i++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
170 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
171 if ( EQ (format,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
172 Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
173 symbol) )
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
174 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
175 Lisp_Object d = Dynarr_at (the_image_instantiator_format_entry_dynarr, i).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
176 device;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
177 if ((NILP (d) && NILP (device))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
178 ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
179 (!NILP (device) &&
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
180 EQ (CONSOLE_TYPE (XCONSOLE
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
181 (DEVICE_CONSOLE (XDEVICE (device)))), d)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
182 return Dynarr_at (the_image_instantiator_format_entry_dynarr, i).meths;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
183 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
184 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
185
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
186 maybe_invalid_argument ("Invalid image-instantiator format", format,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
187 Qimage, errb);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
188
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
189 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
190 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
191
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
192 struct image_instantiator_methods *
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
193 decode_image_instantiator_format (Lisp_Object format, Error_Behavior errb)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
194 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
195 return decode_device_ii_format (Qnil, format, errb);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
196 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
197
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
198 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
199 valid_image_instantiator_format_p (Lisp_Object format, Lisp_Object locale)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
200 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
201 int i;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
202 struct image_instantiator_methods* meths =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
203 decode_image_instantiator_format (format, ERROR_ME_NOT);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
204 Lisp_Object contype = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
205 /* mess with the locale */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
206 if (!NILP (locale) && SYMBOLP (locale))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
207 contype = locale;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
208 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
209 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
210 struct console* console = decode_console (locale);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
211 contype = console ? CONSOLE_TYPE (console) : locale;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
212 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
213 /* nothing is valid in all locales */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
214 if (EQ (format, Qnothing))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
215 return 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
216 /* reject unknown formats */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
217 else if (NILP (contype) || !meths)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
218 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
219
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
220 for (i = 0; i < Dynarr_length (meths->consoles); i++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
221 if (EQ (contype, Dynarr_at (meths->consoles, i).symbol))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
222 return 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
223 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
224 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
225
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
226 DEFUN ("valid-image-instantiator-format-p", Fvalid_image_instantiator_format_p,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
227 1, 2, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
228 Given an IMAGE-INSTANTIATOR-FORMAT, return non-nil if it is valid.
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
229 If LOCALE is non-nil then the format is checked in that locale.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
230 If LOCALE is nil the current console is used.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
231
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
232 Valid formats are some subset of 'nothing, 'string, 'formatted-string,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
233 'xpm, 'xbm, 'xface, 'gif, 'jpeg, 'png, 'tiff, 'cursor-font, 'font,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
234 'autodetect, 'subwindow, 'inherit, 'mswindows-resource, 'bmp,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
235 'native-layout, 'layout, 'label, 'tab-control, 'tree-view,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
236 'progress-gauge, 'scrollbar, 'combo-box, 'edit-field, 'button,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
237 'widget, 'pointer, and 'text, depending on how XEmacs was compiled.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
238 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
239 (image_instantiator_format, locale))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
240 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
241 return valid_image_instantiator_format_p (image_instantiator_format,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
242 locale) ?
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
243 Qt : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
244 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
245
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
246 DEFUN ("image-instantiator-format-list", Fimage_instantiator_format_list,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
247 0, 0, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
248 Return a list of valid image-instantiator formats.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
249 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
250 ())
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
251 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
252 return Fcopy_sequence (Vimage_instantiator_format_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
253 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
254
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
255 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
256 add_entry_to_device_ii_format_list (Lisp_Object device, Lisp_Object symbol,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
257 struct image_instantiator_methods *meths)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
258 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
259 struct image_instantiator_format_entry entry;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
260
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
261 entry.symbol = symbol;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
262 entry.device = device;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
263 entry.meths = meths;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
264 Dynarr_add (the_image_instantiator_format_entry_dynarr, entry);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
265 if (NILP (memq_no_quit (symbol, Vimage_instantiator_format_list)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
266 Vimage_instantiator_format_list =
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
267 Fcons (symbol, Vimage_instantiator_format_list);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
268 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
269
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
270 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
271 add_entry_to_image_instantiator_format_list (Lisp_Object symbol,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
272 struct
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
273 image_instantiator_methods *meths)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
274 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
275 add_entry_to_device_ii_format_list (Qnil, symbol, meths);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
276 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
277
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
278 static Lisp_Object *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
279 get_image_conversion_list (Lisp_Object console_type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
280 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
281 return &decode_console_type (console_type, ERROR_ME)->image_conversion_list;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
282 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
283
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
284 DEFUN ("set-console-type-image-conversion-list", Fset_console_type_image_conversion_list,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
285 2, 2, 0, /*
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
286 Set the image-conversion-list for consoles of the given CONSOLE-TYPE.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
287 The image-conversion-list specifies how image instantiators that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
288 are strings should be interpreted. Each element of the list should be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
289 a list of two elements (a regular expression string and a vector) or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
290 a list of three elements (the preceding two plus an integer index into
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
291 the vector). The string is converted to the vector associated with the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
292 first matching regular expression. If a vector index is specified, the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
293 string itself is substituted into that position in the vector.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
294
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
295 Note: The conversion above is applied when the image instantiator is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
296 added to an image specifier, not when the specifier is actually
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
297 instantiated. Therefore, changing the image-conversion-list only affects
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
298 newly-added instantiators. Existing instantiators in glyphs and image
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
299 specifiers will not be affected.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
300 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
301 (console_type, list))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
302 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
303 Lisp_Object tail;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
304 Lisp_Object *imlist = get_image_conversion_list (console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
305
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
306 /* Check the list to make sure that it only has valid entries. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
307
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
308 EXTERNAL_LIST_LOOP (tail, list)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
309 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
310 Lisp_Object mapping = XCAR (tail);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
311
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
312 /* Mapping form should be (STRING VECTOR) or (STRING VECTOR INTEGER) */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
313 if (!CONSP (mapping) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
314 !CONSP (XCDR (mapping)) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
315 (!NILP (XCDR (XCDR (mapping))) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
316 (!CONSP (XCDR (XCDR (mapping))) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
317 !NILP (XCDR (XCDR (XCDR (mapping)))))))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
318 invalid_argument ("Invalid mapping form", mapping);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
319 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
320 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
321 Lisp_Object exp = XCAR (mapping);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
322 Lisp_Object typevec = XCAR (XCDR (mapping));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
323 Lisp_Object pos = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
324 Lisp_Object newvec;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
325 struct gcpro gcpro1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
326
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
327 CHECK_STRING (exp);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
328 CHECK_VECTOR (typevec);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
329 if (!NILP (XCDR (XCDR (mapping))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
330 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
331 pos = XCAR (XCDR (XCDR (mapping)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
332 CHECK_INT (pos);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
333 if (XINT (pos) < 0 ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
334 XINT (pos) >= XVECTOR_LENGTH (typevec))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
335 args_out_of_range_3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
336 (pos, Qzero, make_int (XVECTOR_LENGTH (typevec) - 1));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
337 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
338
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
339 newvec = Fcopy_sequence (typevec);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
340 if (INTP (pos))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
341 XVECTOR_DATA (newvec)[XINT (pos)] = exp;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
342 GCPRO1 (newvec);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
343 image_validate (newvec);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
344 UNGCPRO;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
345 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
346 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
347
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
348 *imlist = Fcopy_tree (list, Qt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
349 return list;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
350 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
351
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
352 DEFUN ("console-type-image-conversion-list", Fconsole_type_image_conversion_list,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
353 1, 1, 0, /*
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
354 Return the image-conversion-list for devices of the given CONSOLE-TYPE.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
355 The image-conversion-list specifies how to interpret image string
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
356 instantiators for the specified console type. See
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
357 `set-console-type-image-conversion-list' for a description of its syntax.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
358 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
359 (console_type))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
360 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
361 return Fcopy_tree (*get_image_conversion_list (console_type), Qt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
362 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
363
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
364 /* Process a string instantiator according to the image-conversion-list for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
365 CONSOLE_TYPE. Returns a vector. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
366
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
367 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
368 process_image_string_instantiator (Lisp_Object data,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
369 Lisp_Object console_type,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
370 int dest_mask)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
371 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
372 Lisp_Object tail;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
373
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
374 LIST_LOOP (tail, *get_image_conversion_list (console_type))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
375 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
376 Lisp_Object mapping = XCAR (tail);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
377 Lisp_Object exp = XCAR (mapping);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
378 Lisp_Object typevec = XCAR (XCDR (mapping));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
379
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
380 /* if the result is of a type that can't be instantiated
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
381 (e.g. a string when we're dealing with a pointer glyph),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
382 skip it. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
383 if (!(dest_mask &
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
384 IIFORMAT_METH (decode_image_instantiator_format
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
385 (INSTANTIATOR_TYPE (typevec), ERROR_ME),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
386 possible_dest_types, ())))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
387 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
388 if (fast_string_match (exp, 0, data, 0, -1, 0, ERROR_ME, 0) >= 0)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
389 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
390 if (!NILP (XCDR (XCDR (mapping))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
391 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
392 int pos = XINT (XCAR (XCDR (XCDR (mapping))));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
393 Lisp_Object newvec = Fcopy_sequence (typevec);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
394 XVECTOR_DATA (newvec)[pos] = data;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
395 return newvec;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
396 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
397 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
398 return typevec;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
399 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
400 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
401
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
402 /* Oh well. */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
403 invalid_argument ("Unable to interpret glyph instantiator",
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
404 data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
405
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
406 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
407 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
408
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
409 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
410 find_keyword_in_vector_or_given (Lisp_Object vector, Lisp_Object keyword,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
411 Lisp_Object default_)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
412 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
413 Lisp_Object *elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
414 int instantiator_len;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
415
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
416 elt = XVECTOR_DATA (vector);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
417 instantiator_len = XVECTOR_LENGTH (vector);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
418
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
419 elt++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
420 instantiator_len--;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
421
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
422 while (instantiator_len > 0)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
423 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
424 if (EQ (elt[0], keyword))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
425 return elt[1];
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
426 elt += 2;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
427 instantiator_len -= 2;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
428 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
429
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
430 return default_;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
431 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
432
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
433 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
434 find_keyword_in_vector (Lisp_Object vector, Lisp_Object keyword)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
435 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
436 return find_keyword_in_vector_or_given (vector, keyword, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
437 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
438
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
439 static Lisp_Object
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
440 find_instantiator_differences (Lisp_Object new, Lisp_Object old)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
441 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
442 Lisp_Object alist = Qnil;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
443 Lisp_Object *elt = XVECTOR_DATA (new);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
444 Lisp_Object *old_elt = XVECTOR_DATA (old);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
445 int len = XVECTOR_LENGTH (new);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
446 struct gcpro gcpro1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
447
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
448 /* If the vector length has changed then consider everything
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
449 changed. We could try and figure out what properties have
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
450 disappeared or been added, but this code is only used as an
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
451 optimization anyway so lets not bother. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
452 if (len != XVECTOR_LENGTH (old))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
453 return new;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
454
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
455 GCPRO1 (alist);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
456
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
457 for (len -= 2; len >= 1; len -= 2)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
458 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
459 /* Keyword comparisons can be done with eq, the value must be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
460 done with equal.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
461 #### Note that this does not optimize re-ordering. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
462 if (!EQ (elt[len], old_elt[len])
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
463 || !internal_equal (elt[len+1], old_elt[len+1], 0))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
464 alist = Fcons (Fcons (elt[len], elt[len+1]), alist);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
465 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
466
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
467 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
468 Lisp_Object result = alist_to_tagged_vector (elt[0], alist);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
469 free_alist (alist);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
470 RETURN_UNGCPRO (result);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
471 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
472 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
473
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
474 DEFUN ("set-instantiator-property", Fset_instantiator_property,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
475 3, 3, 0, /*
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
476 Destructively set the property KEYWORD of INSTANTIATOR to VALUE.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
477 If the property is not set then it is added to a copy of the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
478 instantiator and the new instantiator returned.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
479 Use `set-glyph-image' on glyphs to register instantiator changes. */
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
480 (instantiator, keyword, value))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
481 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
482 Lisp_Object *elt;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
483 int len;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
484
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
485 CHECK_VECTOR (instantiator);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
486 if (!KEYWORDP (keyword))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
487 invalid_argument ("instantiator property must be a keyword", keyword);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
488
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
489 elt = XVECTOR_DATA (instantiator);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
490 len = XVECTOR_LENGTH (instantiator);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
491
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
492 for (len -= 2; len >= 1; len -= 2)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
493 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
494 if (EQ (elt[len], keyword))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
495 {
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
496 elt[len+1] = value;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
497 break;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
498 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
499 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
500
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
501 /* Didn't find it so add it. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
502 if (len < 1)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
503 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
504 Lisp_Object alist = Qnil, result;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
505 struct gcpro gcpro1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
506
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
507 GCPRO1 (alist);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
508 alist = tagged_vector_to_alist (instantiator);
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
509 alist = Fcons (Fcons (keyword, value), alist);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
510 result = alist_to_tagged_vector (elt[0], alist);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
511 free_alist (alist);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
512 RETURN_UNGCPRO (result);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
513 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
514
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
515 return instantiator;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
516 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
517
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
518 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
519 check_valid_string (Lisp_Object data)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
520 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
521 CHECK_STRING (data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
522 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
523
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
524 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
525 check_valid_vector (Lisp_Object data)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
526 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
527 CHECK_VECTOR (data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
528 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
529
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
530 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
531 check_valid_face (Lisp_Object data)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
532 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
533 Fget_face (data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
534 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
535
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
536 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
537 check_valid_int (Lisp_Object data)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
538 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
539 CHECK_INT (data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
540 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
541
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
542 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
543 file_or_data_must_be_present (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
544 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
545 if (NILP (find_keyword_in_vector (instantiator, Q_file)) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
546 NILP (find_keyword_in_vector (instantiator, Q_data)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
547 sferror ("Must supply either :file or :data",
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
548 instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
549 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
550
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
551 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
552 data_must_be_present (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
553 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
554 if (NILP (find_keyword_in_vector (instantiator, Q_data)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
555 sferror ("Must supply :data", instantiator);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
556 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
557
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
558 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
559 face_must_be_present (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
560 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
561 if (NILP (find_keyword_in_vector (instantiator, Q_face)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
562 sferror ("Must supply :face", instantiator);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
563 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
564
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
565 /* utility function useful in retrieving data from a file. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
566
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
567 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
568 make_string_from_file (Lisp_Object file)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
569 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
570 /* This function can call lisp */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
571 int count = specpdl_depth ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
572 Lisp_Object temp_buffer;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
573 struct gcpro gcpro1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
574 Lisp_Object data;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
575
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
576 specbind (Qinhibit_quit, Qt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
577 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
578 temp_buffer = Fget_buffer_create (build_string (" *pixmap conversion*"));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
579 GCPRO1 (temp_buffer);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
580 set_buffer_internal (XBUFFER (temp_buffer));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
581 Ferase_buffer (Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
582 specbind (intern ("format-alist"), Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
583 Finsert_file_contents_internal (file, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
584 data = Fbuffer_substring (Qnil, Qnil, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
585 unbind_to (count, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
586 UNGCPRO;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
587 return data;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
588 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
589
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
590 /* The following two functions are provided to make it easier for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
591 the normalize methods to work with keyword-value vectors.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
592 Hash tables are kind of heavyweight for this purpose.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
593 (If vectors were resizable, we could avoid this problem;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
594 but they're not.) An alternative approach that might be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
595 more efficient but require more work is to use a type of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
596 assoc-Dynarr and provide primitives for deleting elements out
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
597 of it. (However, you'd also have to add an unwind-protect
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
598 to make sure the Dynarr got freed in case of an error in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
599 the normalization process.) */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
600
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
601 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
602 tagged_vector_to_alist (Lisp_Object vector)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
603 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
604 Lisp_Object *elt = XVECTOR_DATA (vector);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
605 int len = XVECTOR_LENGTH (vector);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
606 Lisp_Object result = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
607
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
608 assert (len & 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
609 for (len -= 2; len >= 1; len -= 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
610 result = Fcons (Fcons (elt[len], elt[len+1]), result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
611
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
612 return result;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
613 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
614
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
615 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
616 alist_to_tagged_vector (Lisp_Object tag, Lisp_Object alist)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
617 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
618 int len = 1 + 2 * XINT (Flength (alist));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
619 Lisp_Object *elt = alloca_array (Lisp_Object, len);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
620 int i;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
621 Lisp_Object rest;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
622
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
623 i = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
624 elt[i++] = tag;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
625 LIST_LOOP (rest, alist)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
626 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
627 Lisp_Object pair = XCAR (rest);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
628 elt[i] = XCAR (pair);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
629 elt[i+1] = XCDR (pair);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
630 i += 2;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
631 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
632
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
633 return Fvector (len, elt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
634 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
635
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
636 #ifdef ERROR_CHECK_GLYPHS
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
637 static int
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
638 check_instance_cache_mapper (Lisp_Object key, Lisp_Object value,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
639 void *flag_closure)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
640 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
641 /* This function can GC */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
642 /* value can be nil; we cache failures as well as successes */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
643 if (!NILP (value))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
644 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
645 Lisp_Object window;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
646 VOID_TO_LISP (window, flag_closure);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
647 assert (EQ (XIMAGE_INSTANCE_DOMAIN (value), window));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
648 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
649
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
650 return 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
651 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
652
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
653 void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
654 check_window_subwindow_cache (struct window* w)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
655 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
656 Lisp_Object window;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
657
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
658 XSETWINDOW (window, w);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
659
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
660 assert (!NILP (w->subwindow_instance_cache));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
661 elisp_maphash (check_instance_cache_mapper,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
662 w->subwindow_instance_cache,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
663 LISP_TO_VOID (window));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
664 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
665
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
666 void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
667 check_image_instance_structure (Lisp_Object instance)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
668 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
669 /* Weird nothing images exist at startup when the console is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
670 deleted. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
671 if (!NOTHING_IMAGE_INSTANCEP (instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
672 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
673 assert (DOMAIN_LIVE_P (instance));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
674 assert (VECTORP (XIMAGE_INSTANCE_INSTANTIATOR (instance)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
675 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
676 if (WINDOWP (XIMAGE_INSTANCE_DOMAIN (instance)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
677 check_window_subwindow_cache
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
678 (XWINDOW (XIMAGE_INSTANCE_DOMAIN (instance)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
679 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
680 #endif
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
681
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
682 /* Determine what kind of domain governs the image instance.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
683 Verify that the given domain is at least as specific, and extract
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
684 the governing domain from it. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
685 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
686 get_image_instantiator_governing_domain (Lisp_Object instantiator,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
687 Lisp_Object domain)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
688 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
689 int governing_domain;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
690
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
691 struct image_instantiator_methods *meths =
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
692 decode_image_instantiator_format (INSTANTIATOR_TYPE (instantiator),
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
693 ERROR_ME);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
694 governing_domain = IIFORMAT_METH_OR_GIVEN (meths, governing_domain, (),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
695 GOVERNING_DOMAIN_DEVICE);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
696
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
697 if (governing_domain == GOVERNING_DOMAIN_WINDOW
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
698 && NILP (DOMAIN_WINDOW (domain)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
699 invalid_argument_2
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
700 ("Domain for this instantiator must be resolvable to a window",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
701 instantiator, domain);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
702 else if (governing_domain == GOVERNING_DOMAIN_FRAME
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
703 && NILP (DOMAIN_FRAME (domain)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
704 invalid_argument_2
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
705 ("Domain for this instantiator must be resolvable to a frame",
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
706 instantiator, domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
707
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
708 if (governing_domain == GOVERNING_DOMAIN_WINDOW)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
709 domain = DOMAIN_WINDOW (domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
710 else if (governing_domain == GOVERNING_DOMAIN_FRAME)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
711 domain = DOMAIN_FRAME (domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
712 else if (governing_domain == GOVERNING_DOMAIN_DEVICE)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
713 domain = DOMAIN_DEVICE (domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
714 else
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
715 abort ();
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
716
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
717 return domain;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
718 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
719
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
720 Lisp_Object
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
721 normalize_image_instantiator (Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
722 Lisp_Object contype,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
723 Lisp_Object dest_mask)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
724 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
725 if (IMAGE_INSTANCEP (instantiator))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
726 return instantiator;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
727
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
728 if (STRINGP (instantiator))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
729 instantiator = process_image_string_instantiator (instantiator, contype,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
730 XINT (dest_mask));
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
731 /* Subsequent validation will pick this up. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
732 if (!VECTORP (instantiator))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
733 return instantiator;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
734 /* We have to always store the actual pixmap data and not the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
735 filename even though this is a potential memory pig. We have to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
736 do this because it is quite possible that we will need to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
737 instantiate a new instance of the pixmap and the file will no
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
738 longer exist (e.g. w3 pixmaps are almost always from temporary
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
739 files). */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
740 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
741 struct gcpro gcpro1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
742 struct image_instantiator_methods *meths;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
743
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
744 GCPRO1 (instantiator);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
745
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
746 meths = decode_image_instantiator_format (INSTANTIATOR_TYPE (instantiator),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
747 ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
748 RETURN_UNGCPRO (IIFORMAT_METH_OR_GIVEN (meths, normalize,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
749 (instantiator, contype, dest_mask),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
750 instantiator));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
751 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
752 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
753
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
754 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
755 instantiate_image_instantiator (Lisp_Object governing_domain,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
756 Lisp_Object domain,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
757 Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
758 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
759 int dest_mask, Lisp_Object glyph)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
760 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
761 Lisp_Object ii = allocate_image_instance (governing_domain,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
762 IMAGE_INSTANCEP (domain) ?
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
763 domain : glyph, instantiator);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
764 Lisp_Image_Instance* p = XIMAGE_INSTANCE (ii);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
765 struct image_instantiator_methods *meths, *device_meths;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
766 struct gcpro gcpro1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
767
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
768 GCPRO1 (ii);
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
769 if (!valid_image_instantiator_format_p (INSTANTIATOR_TYPE (instantiator),
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
770 DOMAIN_DEVICE (governing_domain)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
771 invalid_argument
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
772 ("Image instantiator format is invalid in this locale.",
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
773 instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
774
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
775 meths = decode_image_instantiator_format (INSTANTIATOR_TYPE (instantiator),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
776 ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
777 MAYBE_IIFORMAT_METH (meths, instantiate, (ii, instantiator, pointer_fg,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
778 pointer_bg, dest_mask, domain));
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
779
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
780 /* Now do device specific instantiation. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
781 device_meths = decode_device_ii_format (DOMAIN_DEVICE (governing_domain),
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
782 INSTANTIATOR_TYPE (instantiator),
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
783 ERROR_ME_NOT);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
784
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
785 if (!HAS_IIFORMAT_METH_P (meths, instantiate)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
786 && (!device_meths || !HAS_IIFORMAT_METH_P (device_meths, instantiate)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
787 invalid_argument
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
788 ("Don't know how to instantiate this image instantiator?",
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
789 instantiator);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
790
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
791 /* In general native window system methods will require sane
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
792 geometry values, thus the instance needs to have been laid-out
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
793 before they get called. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
794 image_instance_layout (ii, XIMAGE_INSTANCE_WIDTH (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
795 XIMAGE_INSTANCE_HEIGHT (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
796 IMAGE_UNCHANGED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
797 IMAGE_UNCHANGED_GEOMETRY, domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
798
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
799 MAYBE_IIFORMAT_METH (device_meths, instantiate, (ii, instantiator, pointer_fg,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
800 pointer_bg, dest_mask, domain));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
801 /* Do post instantiation. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
802 MAYBE_IIFORMAT_METH (meths, post_instantiate, (ii, instantiator, domain));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
803 MAYBE_IIFORMAT_METH (device_meths, post_instantiate, (ii, instantiator, domain));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
804
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
805 /* We're done. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
806 IMAGE_INSTANCE_INITIALIZED (p) = 1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
807 /* Now that we're done verify that we really are laid out. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
808 if (IMAGE_INSTANCE_LAYOUT_CHANGED (p))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
809 image_instance_layout (ii, XIMAGE_INSTANCE_WIDTH (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
810 XIMAGE_INSTANCE_HEIGHT (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
811 IMAGE_UNCHANGED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
812 IMAGE_UNCHANGED_GEOMETRY, domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
813
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
814 /* We *must* have a clean image at this point. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
815 IMAGE_INSTANCE_TEXT_CHANGED (p) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
816 IMAGE_INSTANCE_SIZE_CHANGED (p) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
817 IMAGE_INSTANCE_LAYOUT_CHANGED (p) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
818 IMAGE_INSTANCE_DIRTYP (p) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
819
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
820 assert ( XIMAGE_INSTANCE_HEIGHT (ii) >= 0
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
821 && XIMAGE_INSTANCE_WIDTH (ii) >= 0 );
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
822
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
823 ERROR_CHECK_IMAGE_INSTANCE (ii);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
824
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
825 RETURN_UNGCPRO (ii);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
826 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
827
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
828
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
829 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
830 * Image-Instance Object *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
831 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
832
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
833 Lisp_Object Qimage_instancep;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
834
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
835 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
836 mark_image_instance (Lisp_Object obj)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
837 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
838 Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
839
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
840 /* #### I want to check the instance here, but there are way too
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
841 many instances of the instance being marked while the domain is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
842 dead. For instance you can get marked through an event when using
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
843 callback_ex.*/
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
844 #if 0
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
845 ERROR_CHECK_IMAGE_INSTANCE (obj);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
846 #endif
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
847
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
848 mark_object (i->name);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
849 mark_object (i->instantiator);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
850 /* Is this legal in marking? We may get in the situation where the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
851 domain has been deleted - making the instance unusable. It seems
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
852 better to remove the domain so that it can be finalized. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
853 if (!DOMAIN_LIVE_P (i->domain))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
854 i->domain = Qnil;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
855 else
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
856 mark_object (i->domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
857
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
858 /* We don't mark the glyph reference since that would create a
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
859 circularity preventing GC. Ditto the instantiator. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
860 switch (IMAGE_INSTANCE_TYPE (i))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
861 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
862 case IMAGE_TEXT:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
863 mark_object (IMAGE_INSTANCE_TEXT_STRING (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
864 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
865 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
866 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
867 mark_object (IMAGE_INSTANCE_PIXMAP_FILENAME (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
868 mark_object (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
869 mark_object (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
870 mark_object (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
871 mark_object (IMAGE_INSTANCE_PIXMAP_FG (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
872 mark_object (IMAGE_INSTANCE_PIXMAP_BG (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
873 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
874
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
875 case IMAGE_WIDGET:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
876 mark_object (IMAGE_INSTANCE_WIDGET_TYPE (i));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
877 mark_object (IMAGE_INSTANCE_WIDGET_PROPS (i));
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
878 mark_object (IMAGE_INSTANCE_SUBWINDOW_FACE (i));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
879 mark_object (IMAGE_INSTANCE_WIDGET_ITEMS (i));
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
880 mark_object (IMAGE_INSTANCE_LAYOUT_CHILDREN (i));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
881 mark_object (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (i));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
882 mark_object (IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
883 mark_object (IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
884 case IMAGE_SUBWINDOW:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
885 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
886
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
887 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
888 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
889 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
890
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
891 /* The image may have been previously finalized (yes that's weird,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
892 see Fdelete_frame() and mark_window_as_deleted()), in which case
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
893 the domain will be nil, so cope with this. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
894 if (!NILP (IMAGE_INSTANCE_DEVICE (i)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
895 MAYBE_DEVMETH (XDEVICE (IMAGE_INSTANCE_DEVICE (i)),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
896 mark_image_instance, (i));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
897
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
898 return i->device;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
899 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
900
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
901 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
902 print_image_instance (Lisp_Object obj, Lisp_Object printcharfun,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
903 int escapeflag)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
904 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
905 char buf[100];
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
906 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
907
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
908 if (print_readably)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
909 printing_unreadable_object ("#<image-instance 0x%x>",
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
910 ii->header.uid);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
911 write_c_string ("#<image-instance (", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
912 print_internal (Fimage_instance_type (obj), printcharfun, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
913 write_c_string (") ", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
914 if (!NILP (ii->name))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
915 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
916 print_internal (ii->name, printcharfun, 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
917 write_c_string (" ", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
918 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
919 write_c_string ("on ", printcharfun);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
920 print_internal (ii->domain, printcharfun, 0);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
921 write_c_string (" ", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
922 switch (IMAGE_INSTANCE_TYPE (ii))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
923 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
924 case IMAGE_NOTHING:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
925 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
926
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
927 case IMAGE_TEXT:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
928 print_internal (IMAGE_INSTANCE_TEXT_STRING (ii), printcharfun, 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
929 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
930
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
931 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
932 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
933 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
934 if (STRINGP (IMAGE_INSTANCE_PIXMAP_FILENAME (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
935 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
936 char *s;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
937 Lisp_Object filename = IMAGE_INSTANCE_PIXMAP_FILENAME (ii);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
938 s = strrchr ((char *) XSTRING_DATA (filename), '/');
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
939 if (s)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
940 print_internal (build_string (s + 1), printcharfun, 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
941 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
942 print_internal (filename, printcharfun, 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
943 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
944 if (IMAGE_INSTANCE_PIXMAP_DEPTH (ii) > 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
945 sprintf (buf, " %dx%dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
946 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
947 IMAGE_INSTANCE_PIXMAP_DEPTH (ii));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
948 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
949 sprintf (buf, " %dx%d", IMAGE_INSTANCE_PIXMAP_WIDTH (ii),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
950 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
951 write_c_string (buf, printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
952 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
953 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
954 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
955 write_c_string (" @", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
956 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
957 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
958 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
959 write_c_string (buf, printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
960 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
961 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
962 write_c_string ("??", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
963 write_c_string (",", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
964 if (!NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
965 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
966 long_to_string (buf, XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
967 write_c_string (buf, printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
968 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
969 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
970 write_c_string ("??", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
971 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
972 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
973 !NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
974 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
975 write_c_string (" (", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
976 if (!NILP (IMAGE_INSTANCE_PIXMAP_FG (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
977 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
978 print_internal
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
979 (XCOLOR_INSTANCE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
980 (IMAGE_INSTANCE_PIXMAP_FG (ii))->name, printcharfun, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
981 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
982 write_c_string ("/", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
983 if (!NILP (IMAGE_INSTANCE_PIXMAP_BG (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
984 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
985 print_internal
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
986 (XCOLOR_INSTANCE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
987 (IMAGE_INSTANCE_PIXMAP_BG (ii))->name, printcharfun, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
988 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
989 write_c_string (")", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
990 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
991 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
992
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
993 case IMAGE_WIDGET:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
994 print_internal (IMAGE_INSTANCE_WIDGET_TYPE (ii), printcharfun, 0);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
995
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
996 if (GUI_ITEMP (IMAGE_INSTANCE_WIDGET_ITEM (ii)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
997 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
998 write_c_string (" ", printcharfun);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
999 print_internal (IMAGE_INSTANCE_WIDGET_TEXT (ii), printcharfun, 1);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1000 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1001
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1002 if (!NILP (IMAGE_INSTANCE_WIDGET_FACE (ii)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1003 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1004 write_c_string (" face=", printcharfun);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1005 print_internal
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1006 (IMAGE_INSTANCE_WIDGET_FACE (ii), printcharfun, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1007 }
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1008 /* fallthrough */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1009
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1010 case IMAGE_SUBWINDOW:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1011 sprintf (buf, " %dx%d", IMAGE_INSTANCE_WIDTH (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1012 IMAGE_INSTANCE_HEIGHT (ii));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1013 write_c_string (buf, printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1014
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1015 /* This is stolen from frame.c. Subwindows are strange in that they
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1016 are specific to a particular frame so we want to print in their
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1017 description what that frame is. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1018
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1019 write_c_string (" on #<", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1020 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1021 struct frame* f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1022
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1023 if (!FRAME_LIVE_P (f))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1024 write_c_string ("dead", printcharfun);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1025 else
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1026 write_c_string (DEVICE_TYPE_NAME (XDEVICE (FRAME_DEVICE (f))),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1027 printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1028 }
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1029 write_c_string ("-frame>", printcharfun);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1030 sprintf (buf, " 0x%p", IMAGE_INSTANCE_SUBWINDOW_ID (ii));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1031 write_c_string (buf, printcharfun);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1032
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1033 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1034
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1035 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1036 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1037 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1038
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1039 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain), print_image_instance,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1040 (ii, printcharfun, escapeflag));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1041 sprintf (buf, " 0x%x>", ii->header.uid);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1042 write_c_string (buf, printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1043 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1044
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1045 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1046 finalize_image_instance (void *header, int for_disksave)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1047 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1048 Lisp_Image_Instance *i = (Lisp_Image_Instance *) header;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1049
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1050 /* objects like this exist at dump time, so don't bomb out. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1051 if (IMAGE_INSTANCE_TYPE (i) == IMAGE_NOTHING
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1052 ||
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1053 NILP (IMAGE_INSTANCE_DEVICE (i)))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1054 return;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1055 if (for_disksave) finalose (i);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1056
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1057 /* We can't use the domain here, because it might have
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1058 disappeared. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1059 MAYBE_DEVMETH (XDEVICE (IMAGE_INSTANCE_DEVICE (i)),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1060 finalize_image_instance, (i));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1061
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1062 /* Make sure we don't try this twice. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1063 IMAGE_INSTANCE_DEVICE (i) = Qnil;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1064 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1065
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1066 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1067 image_instance_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1068 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1069 Lisp_Image_Instance *i1 = XIMAGE_INSTANCE (obj1);
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1070 Lisp_Image_Instance *i2 = XIMAGE_INSTANCE (obj2);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1071
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1072 ERROR_CHECK_IMAGE_INSTANCE (obj1);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1073 ERROR_CHECK_IMAGE_INSTANCE (obj2);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1074
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1075 if (!EQ (IMAGE_INSTANCE_DOMAIN (i1),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1076 IMAGE_INSTANCE_DOMAIN (i2))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1077 || IMAGE_INSTANCE_TYPE (i1) != IMAGE_INSTANCE_TYPE (i2)
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1078 || IMAGE_INSTANCE_WIDTH (i1) != IMAGE_INSTANCE_WIDTH (i2)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1079 || IMAGE_INSTANCE_MARGIN_WIDTH (i1) !=
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1080 IMAGE_INSTANCE_MARGIN_WIDTH (i2)
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1081 || IMAGE_INSTANCE_HEIGHT (i1) != IMAGE_INSTANCE_HEIGHT (i2)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1082 || IMAGE_INSTANCE_XOFFSET (i1) != IMAGE_INSTANCE_XOFFSET (i2)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1083 || IMAGE_INSTANCE_YOFFSET (i1) != IMAGE_INSTANCE_YOFFSET (i2))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1084 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1085 if (!internal_equal (IMAGE_INSTANCE_NAME (i1), IMAGE_INSTANCE_NAME (i2),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1086 depth + 1))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1087 return 0;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1088 if (!internal_equal (IMAGE_INSTANCE_INSTANTIATOR (i1),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1089 IMAGE_INSTANCE_INSTANTIATOR (i2),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1090 depth + 1))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1091 return 0;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1092
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1093 switch (IMAGE_INSTANCE_TYPE (i1))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1094 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1095 case IMAGE_NOTHING:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1096 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1097
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1098 case IMAGE_TEXT:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1099 if (!internal_equal (IMAGE_INSTANCE_TEXT_STRING (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1100 IMAGE_INSTANCE_TEXT_STRING (i2),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1101 depth + 1))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1102 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1103 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1104
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1105 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1106 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1107 case IMAGE_POINTER:
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1108 if (!(IMAGE_INSTANCE_PIXMAP_DEPTH (i1) ==
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1109 IMAGE_INSTANCE_PIXMAP_DEPTH (i2) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1110 IMAGE_INSTANCE_PIXMAP_SLICE (i1) ==
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1111 IMAGE_INSTANCE_PIXMAP_SLICE (i2) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1112 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1113 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (i2)) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1114 EQ (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1115 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (i2)) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1116 internal_equal (IMAGE_INSTANCE_PIXMAP_FILENAME (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1117 IMAGE_INSTANCE_PIXMAP_FILENAME (i2),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1118 depth + 1) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1119 internal_equal (IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1120 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (i2),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1121 depth + 1)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1122 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1123 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1124
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1125 case IMAGE_WIDGET:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1126 if (!(EQ (IMAGE_INSTANCE_WIDGET_TYPE (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1127 IMAGE_INSTANCE_WIDGET_TYPE (i2))
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1128 && IMAGE_INSTANCE_SUBWINDOW_ID (i1) ==
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1129 IMAGE_INSTANCE_SUBWINDOW_ID (i2)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1130 &&
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1131 EQ (IMAGE_INSTANCE_WIDGET_FACE (i1),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1132 IMAGE_INSTANCE_WIDGET_TYPE (i2))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1133 && internal_equal (IMAGE_INSTANCE_WIDGET_ITEMS (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1134 IMAGE_INSTANCE_WIDGET_ITEMS (i2),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1135 depth + 1)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1136 && internal_equal (IMAGE_INSTANCE_LAYOUT_CHILDREN (i1),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1137 IMAGE_INSTANCE_LAYOUT_CHILDREN (i2),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1138 depth + 1)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1139 && internal_equal (IMAGE_INSTANCE_WIDGET_PROPS (i1),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1140 IMAGE_INSTANCE_WIDGET_PROPS (i2),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1141 depth + 1)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1142 && internal_equal (IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i1),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1143 IMAGE_INSTANCE_WIDGET_WIDTH_SUBR (i2),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1144 depth + 1)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1145 && internal_equal (IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i1),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1146 IMAGE_INSTANCE_WIDGET_HEIGHT_SUBR (i2),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1147 depth + 1)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1148 ))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1149 return 0;
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1150 break;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1151
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1152 case IMAGE_SUBWINDOW:
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1153 if (!(IMAGE_INSTANCE_SUBWINDOW_ID (i1) ==
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1154 IMAGE_INSTANCE_SUBWINDOW_ID (i2)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1155 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1156 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1157
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1158 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1159 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1160 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1161
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1162 return DEVMETH_OR_GIVEN (DOMAIN_XDEVICE (i1->domain),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1163 image_instance_equal, (i1, i2, depth), 1);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1164 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1165
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1166 /* Image instance domain manipulators. We can't error check in these
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1167 otherwise we get into infinite recursion. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1168 Lisp_Object
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1169 image_instance_device (Lisp_Object instance)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1170 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1171 return XIMAGE_INSTANCE_DEVICE (instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1172 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1173
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1174 Lisp_Object
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1175 image_instance_frame (Lisp_Object instance)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1176 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1177 return XIMAGE_INSTANCE_FRAME (instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1178 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1179
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1180 Lisp_Object
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1181 image_instance_window (Lisp_Object instance)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1182 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1183 return DOMAIN_WINDOW (XIMAGE_INSTANCE_DOMAIN (instance));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1184 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1185
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1186 int
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1187 image_instance_live_p (Lisp_Object instance)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1188 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1189 return DOMAIN_LIVE_P (XIMAGE_INSTANCE_DOMAIN (instance));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1190 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1191
665
fdefd0186b75 [xemacs-hg @ 2001-09-20 06:28:42 by ben]
ben
parents: 647
diff changeset
1192 static Hashcode
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1193 image_instance_hash (Lisp_Object obj, int depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1194 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1195 Lisp_Image_Instance *i = XIMAGE_INSTANCE (obj);
665
fdefd0186b75 [xemacs-hg @ 2001-09-20 06:28:42 by ben]
ben
parents: 647
diff changeset
1196 Hashcode hash = HASH5 (LISP_HASH (IMAGE_INSTANCE_DOMAIN (i)),
647
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
1197 IMAGE_INSTANCE_WIDTH (i),
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
1198 IMAGE_INSTANCE_MARGIN_WIDTH (i),
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
1199 IMAGE_INSTANCE_HEIGHT (i),
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
1200 internal_hash (IMAGE_INSTANCE_INSTANTIATOR (i),
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
1201 depth + 1));
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1202
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1203 ERROR_CHECK_IMAGE_INSTANCE (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1204
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1205 switch (IMAGE_INSTANCE_TYPE (i))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1206 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1207 case IMAGE_NOTHING:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1208 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1209
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1210 case IMAGE_TEXT:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1211 hash = HASH2 (hash, internal_hash (IMAGE_INSTANCE_TEXT_STRING (i),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1212 depth + 1));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1213 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1214
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1215 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1216 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1217 case IMAGE_POINTER:
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1218 hash = HASH4 (hash, IMAGE_INSTANCE_PIXMAP_DEPTH (i),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1219 IMAGE_INSTANCE_PIXMAP_SLICE (i),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1220 internal_hash (IMAGE_INSTANCE_PIXMAP_FILENAME (i),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1221 depth + 1));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1222 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1223
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1224 case IMAGE_WIDGET:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1225 /* We need the hash to be equivalent to what should be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1226 displayed. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1227 hash = HASH5 (hash,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1228 LISP_HASH (IMAGE_INSTANCE_WIDGET_TYPE (i)),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1229 internal_hash (IMAGE_INSTANCE_WIDGET_PROPS (i), depth + 1),
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1230 internal_hash (IMAGE_INSTANCE_WIDGET_ITEMS (i), depth + 1),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1231 internal_hash (IMAGE_INSTANCE_LAYOUT_CHILDREN (i),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1232 depth + 1));
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1233 case IMAGE_SUBWINDOW:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1234 hash = HASH2 (hash, (EMACS_INT) IMAGE_INSTANCE_SUBWINDOW_ID (i));
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1235 break;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1236
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1237 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1238 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1239 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1240
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1241 return HASH2 (hash, DEVMETH_OR_GIVEN
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1242 (XDEVICE (image_instance_device (obj)),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1243 image_instance_hash, (i, depth),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1244 0));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1245 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1246
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1247 DEFINE_LRECORD_IMPLEMENTATION ("image-instance", image_instance,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1248 mark_image_instance, print_image_instance,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1249 finalize_image_instance, image_instance_equal,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1250 image_instance_hash, 0,
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1251 Lisp_Image_Instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1252
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1253 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1254 allocate_image_instance (Lisp_Object governing_domain, Lisp_Object parent,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1255 Lisp_Object instantiator)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1256 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1257 Lisp_Image_Instance *lp =
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1258 alloc_lcrecord_type (Lisp_Image_Instance, &lrecord_image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1259 Lisp_Object val;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1260
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1261 zero_lcrecord (lp);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1262 /* It's not possible to simply keep a record of the domain in which
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1263 the instance was instantiated. This is because caching may mean
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1264 that the domain becomes invalid but the instance remains
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1265 valid. However, the only truly relevant domain is the domain in
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1266 which the instance is cached since this is the one that will be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1267 common to the instances. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1268 lp->domain = governing_domain;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1269 /* The cache domain is not quite sufficient since the domain can get
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1270 deleted before the image instance does. We need to know the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1271 domain device in order to finalize the image instance
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1272 properly. We therefore record the device also. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1273 lp->device = DOMAIN_DEVICE (governing_domain);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1274 lp->type = IMAGE_NOTHING;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1275 lp->name = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1276 lp->x_offset = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1277 lp->y_offset = 0;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1278 lp->width = IMAGE_UNSPECIFIED_GEOMETRY;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1279 lp->margin_width = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1280 lp->height = IMAGE_UNSPECIFIED_GEOMETRY;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1281 lp->parent = parent;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1282 lp->instantiator = instantiator;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1283 /* So that layouts get done. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1284 lp->layout_changed = 1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1285 lp->initialized = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1286
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1287 XSETIMAGE_INSTANCE (val, lp);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1288 MARK_GLYPHS_CHANGED;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1289
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1290 return val;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1291 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1292
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1293 static enum image_instance_type
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
1294 decode_image_instance_type (Lisp_Object type, Error_Behavior errb)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1295 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1296 if (ERRB_EQ (errb, ERROR_ME))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1297 CHECK_SYMBOL (type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1298
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1299 if (EQ (type, Qnothing)) return IMAGE_NOTHING;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1300 if (EQ (type, Qtext)) return IMAGE_TEXT;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1301 if (EQ (type, Qmono_pixmap)) return IMAGE_MONO_PIXMAP;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1302 if (EQ (type, Qcolor_pixmap)) return IMAGE_COLOR_PIXMAP;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1303 if (EQ (type, Qpointer)) return IMAGE_POINTER;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1304 if (EQ (type, Qsubwindow)) return IMAGE_SUBWINDOW;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1305 if (EQ (type, Qwidget)) return IMAGE_WIDGET;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1306
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1307 maybe_invalid_constant ("Invalid image-instance type", type,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1308 Qimage, errb);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1309
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1310 return IMAGE_UNKNOWN; /* not reached */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1311 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1312
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1313 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1314 encode_image_instance_type (enum image_instance_type type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1315 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1316 switch (type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1317 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1318 case IMAGE_NOTHING: return Qnothing;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1319 case IMAGE_TEXT: return Qtext;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1320 case IMAGE_MONO_PIXMAP: return Qmono_pixmap;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1321 case IMAGE_COLOR_PIXMAP: return Qcolor_pixmap;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1322 case IMAGE_POINTER: return Qpointer;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1323 case IMAGE_SUBWINDOW: return Qsubwindow;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1324 case IMAGE_WIDGET: return Qwidget;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1325 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1326 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1327 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1328
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1329 return Qnil; /* not reached */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1330 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1331
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1332 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1333 decode_image_instance_type_list (Lisp_Object list)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1334 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1335 Lisp_Object rest;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1336 int mask = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1337
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1338 if (NILP (list))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1339 return ~0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1340
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1341 if (!CONSP (list))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1342 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1343 enum image_instance_type type =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1344 decode_image_instance_type (list, ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1345 return image_instance_type_to_mask (type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1346 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1347
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1348 EXTERNAL_LIST_LOOP (rest, list)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1349 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1350 enum image_instance_type type =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1351 decode_image_instance_type (XCAR (rest), ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1352 mask |= image_instance_type_to_mask (type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1353 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1354
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1355 return mask;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1356 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1357
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1358 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1359 encode_image_instance_type_list (int mask)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1360 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1361 int count = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1362 Lisp_Object result = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1363
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1364 while (mask)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1365 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1366 count++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1367 if (mask & 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1368 result = Fcons (encode_image_instance_type
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1369 ((enum image_instance_type) count), result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1370 mask >>= 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1371 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1372
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1373 return Fnreverse (result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1374 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1375
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1376 DOESNT_RETURN
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1377 incompatible_image_types (Lisp_Object instantiator, int given_dest_mask,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1378 int desired_dest_mask)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1379 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1380 signal_error_1
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1381 (Qinvalid_argument,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1382 list2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1383 (emacs_doprnt_string_lisp_2
665
fdefd0186b75 [xemacs-hg @ 2001-09-20 06:28:42 by ben]
ben
parents: 647
diff changeset
1384 ((const Intbyte *)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1385 "No compatible image-instance types given: wanted one of %s, got %s",
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1386 Qnil, -1, 2,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1387 encode_image_instance_type_list (desired_dest_mask),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1388 encode_image_instance_type_list (given_dest_mask)),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1389 instantiator));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1390 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1391
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1392 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1393 valid_image_instance_type_p (Lisp_Object type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1394 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1395 return !NILP (memq_no_quit (type, Vimage_instance_type_list));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1396 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1397
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1398 DEFUN ("valid-image-instance-type-p", Fvalid_image_instance_type_p, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1399 Given an IMAGE-INSTANCE-TYPE, return non-nil if it is valid.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1400 Valid types are some subset of 'nothing, 'text, 'mono-pixmap, 'color-pixmap,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1401 'pointer, 'subwindow, and 'widget, depending on how XEmacs was compiled.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1402 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1403 (image_instance_type))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1404 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1405 return valid_image_instance_type_p (image_instance_type) ? Qt : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1406 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1407
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1408 DEFUN ("image-instance-type-list", Fimage_instance_type_list, 0, 0, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1409 Return a list of valid image-instance types.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1410 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1411 ())
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1412 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1413 return Fcopy_sequence (Vimage_instance_type_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1414 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1415
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
1416 Error_Behavior
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1417 decode_error_behavior_flag (Lisp_Object noerror)
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1418 {
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1419 if (NILP (noerror)) return ERROR_ME;
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1420 else if (EQ (noerror, Qt)) return ERROR_ME_NOT;
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1421 else return ERROR_ME_WARN;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1422 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1423
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1424 Lisp_Object
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
1425 encode_error_behavior_flag (Error_Behavior errb)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1426 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1427 if (ERRB_EQ (errb, ERROR_ME))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1428 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1429 else if (ERRB_EQ (errb, ERROR_ME_NOT))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1430 return Qt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1431 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1432 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1433 assert (ERRB_EQ (errb, ERROR_ME_WARN));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1434 return Qwarning;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1435 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1436 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1437
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1438 /* Recurse up the hierarchy looking for the topmost glyph. This means
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1439 that instances in layouts will inherit face properties from their
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1440 parent. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1441 Lisp_Object image_instance_parent_glyph (Lisp_Image_Instance* ii)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1442 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1443 if (IMAGE_INSTANCEP (IMAGE_INSTANCE_PARENT (ii)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1444 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1445 return image_instance_parent_glyph
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1446 (XIMAGE_INSTANCE (IMAGE_INSTANCE_PARENT (ii)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1447 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1448 return IMAGE_INSTANCE_PARENT (ii);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1449 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1450
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1451 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1452 make_image_instance_1 (Lisp_Object data, Lisp_Object domain,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1453 Lisp_Object dest_types)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1454 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1455 Lisp_Object ii;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1456 struct gcpro gcpro1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1457 int dest_mask;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1458 Lisp_Object governing_domain;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1459
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1460 if (IMAGE_INSTANCEP (data))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1461 invalid_argument ("Image instances not allowed here", data);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1462 image_validate (data);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1463 domain = decode_domain (domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1464 /* instantiate_image_instantiator() will abort if given an
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1465 image instance ... */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1466 dest_mask = decode_image_instance_type_list (dest_types);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1467 data = normalize_image_instantiator (data,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1468 DEVICE_TYPE (DOMAIN_XDEVICE (domain)),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1469 make_int (dest_mask));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1470 GCPRO1 (data);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1471 /* After normalizing the data, it's always either an image instance (which
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1472 we filtered out above) or a vector. */
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1473 if (EQ (INSTANTIATOR_TYPE (data), Qinherit))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1474 invalid_argument ("Inheritance not allowed here", data);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1475 governing_domain =
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1476 get_image_instantiator_governing_domain (data, domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1477 ii = instantiate_image_instantiator (governing_domain, domain, data,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1478 Qnil, Qnil, dest_mask, Qnil);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1479 RETURN_UNGCPRO (ii);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1480 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1481
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1482 DEFUN ("make-image-instance", Fmake_image_instance, 1, 4, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1483 Return a new `image-instance' object.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1484
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1485 Image-instance objects encapsulate the way a particular image (pixmap,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1486 etc.) is displayed on a particular device. In most circumstances, you
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1487 do not need to directly create image instances; use a glyph instead.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1488 However, it may occasionally be useful to explicitly create image
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1489 instances, if you want more control over the instantiation process.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1490
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1491 DATA is an image instantiator, which describes the image; see
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1492 `make-image-specifier' for a description of the allowed values.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1493
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1494 DEST-TYPES should be a list of allowed image instance types that can
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1495 be generated. The recognized image instance types are
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1496
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1497 'nothing
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1498 Nothing is displayed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1499 'text
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1500 Displayed as text. The foreground and background colors and the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1501 font of the text are specified independent of the pixmap. Typically
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1502 these attributes will come from the face of the surrounding text,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1503 unless a face is specified for the glyph in which the image appears.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1504 'mono-pixmap
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1505 Displayed as a mono pixmap (a pixmap with only two colors where the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1506 foreground and background can be specified independent of the pixmap;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1507 typically the pixmap assumes the foreground and background colors of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1508 the text around it, unless a face is specified for the glyph in which
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1509 the image appears).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1510 'color-pixmap
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1511 Displayed as a color pixmap.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1512 'pointer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1513 Used as the mouse pointer for a window.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1514 'subwindow
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1515 A child window that is treated as an image. This allows (e.g.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1516 another program to be responsible for drawing into the window.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1517 'widget
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1518 A child window that contains a window-system widget, e.g. a push
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1519 button, text field, or slider.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1520
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1521 The DEST-TYPES list is unordered. If multiple destination types are
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1522 possible for a given instantiator, the "most natural" type for the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1523 instantiator's format is chosen. (For XBM, the most natural types are
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1524 `mono-pixmap', followed by `color-pixmap', followed by `pointer'. For
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1525 the other normal image formats, the most natural types are
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1526 `color-pixmap', followed by `mono-pixmap', followed by `pointer'. For
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1527 the string and formatted-string formats, the most natural types are
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1528 `text', followed by `mono-pixmap' (not currently implemented),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1529 followed by `color-pixmap' (not currently implemented). For MS
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1530 Windows resources, the most natural type for pointer resources is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1531 `pointer', and for the others it's `color-pixmap'. The other formats
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1532 can only be instantiated as one type. (If you want to control more
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1533 specifically the order of the types into which an image is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1534 instantiated, just call `make-image-instance' repeatedly until it
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1535 succeeds, passing less and less preferred destination types each
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1536 time.)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1537
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1538 See `make-image-specifier' for a description of the different image
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1539 instantiator formats.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1540
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1541 If DEST-TYPES is omitted, all possible types are allowed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1542
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1543 DOMAIN specifies the domain to which the image instance will be attached.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1544 This domain is termed the \"governing domain\". The type of the governing
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1545 domain depends on the image instantiator format. (Although, more correctly,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1546 it should probably depend on the image instance type.) For example, pixmap
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1547 image instances are specific to a device, but widget image instances are
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1548 specific to a particular XEmacs window because in order to display such a
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1549 widget when two windows onto the same buffer want to display the widget,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1550 two separate underlying widgets must be created. (That's because a widget
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1551 is actually a child window-system window, and all window-system windows have
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1552 a unique existence on the screen.) This means that the governing domain for
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1553 a pixmap image instance will be some device (most likely, the only existing
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1554 device), whereas the governing domain for a widget image instance will be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1555 some XEmacs window.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1556
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1557 If you specify an overly general DOMAIN (e.g. a frame when a window was
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1558 wanted), an error is signaled. If you specify an overly specific DOMAIN
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1559 \(e.g. a window when a device was wanted), the corresponding general domain
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1560 is fetched and used instead. For `make-image-instance', it makes no
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1561 difference whether you specify an overly specific domain or the properly
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1562 general domain derived from it. However, it does matter when creating an
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1563 image instance by instantiating a specifier or glyph (e.g. with
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1564 `glyph-image-instance'), because the more specific domain causes spec lookup
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1565 to start there and proceed to more general domains. (It would also matter
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1566 when creating an image instance with an instantiator format of `inherit',
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1567 but we currently disallow this. #### We should fix this.)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1568
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1569 If omitted, DOMAIN defaults to the selected window.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1570
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1571 NOERROR controls what happens when the image cannot be generated.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1572 If nil, an error message is generated. If t, no messages are
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1573 generated and this function returns nil. If anything else, a warning
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1574 message is generated and this function returns nil.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1575 */
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1576 (data, domain, dest_types, noerror))
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1577 {
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
1578 Error_Behavior errb = decode_error_behavior_flag (noerror);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1579
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1580 return call_with_suspended_errors ((lisp_fn_t) make_image_instance_1,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1581 Qnil, Qimage, errb,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1582 3, data, domain, dest_types);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1583 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1584
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1585 DEFUN ("image-instance-p", Fimage_instance_p, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1586 Return non-nil if OBJECT is an image instance.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1587 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1588 (object))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1589 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1590 return IMAGE_INSTANCEP (object) ? Qt : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1591 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1592
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1593 DEFUN ("image-instance-type", Fimage_instance_type, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1594 Return the type of the given image instance.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1595 The return value will be one of 'nothing, 'text, 'mono-pixmap,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1596 'color-pixmap, 'pointer, or 'subwindow.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1597 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1598 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1599 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1600 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1601 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1602 return encode_image_instance_type (XIMAGE_INSTANCE_TYPE (image_instance));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1603 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1604
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1605 DEFUN ("image-instance-name", Fimage_instance_name, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1606 Return the name of the given image instance.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1607 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1608 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1609 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1610 CHECK_IMAGE_INSTANCE (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1611 return XIMAGE_INSTANCE_NAME (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1612 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1613
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1614 DEFUN ("image-instance-domain", Fimage_instance_domain, 1, 1, 0, /*
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1615 Return the governing domain of the given image instance.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1616 The governing domain of an image instance is the domain that the image
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1617 instance is specific to. It is NOT necessarily the domain that was
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1618 given to the call to `specifier-instance' that resulted in the creation
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1619 of this image instance. See `make-image-instance' for more information
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1620 on governing domains.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1621 */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1622 (image_instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1623 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1624 CHECK_IMAGE_INSTANCE (image_instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1625 return XIMAGE_INSTANCE_DOMAIN (image_instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1626 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1627
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1628 DEFUN ("image-instance-string", Fimage_instance_string, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1629 Return the string of the given image instance.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1630 This will only be non-nil for text image instances and widgets.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1631 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1632 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1633 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1634 CHECK_IMAGE_INSTANCE (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1635 if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_TEXT)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1636 return XIMAGE_INSTANCE_TEXT_STRING (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1637 else if (XIMAGE_INSTANCE_TYPE (image_instance) == IMAGE_WIDGET)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1638 return XIMAGE_INSTANCE_WIDGET_TEXT (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1639 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1640 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1641 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1642
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1643 DEFUN ("image-instance-property", Fimage_instance_property, 2, 2, 0, /*
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1644 Return the given property of the given image instance.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1645 Returns nil if the property or the property method do not exist for
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1646 the image instance in the domain.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1647 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1648 (image_instance, prop))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1649 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1650 Lisp_Image_Instance* ii;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1651 Lisp_Object type, ret;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1652 struct image_instantiator_methods* meths;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1653
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1654 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1655 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1656 CHECK_SYMBOL (prop);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1657 ii = XIMAGE_INSTANCE (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1658
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1659 /* ... then try device specific methods ... */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1660 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1661 meths = decode_device_ii_format (image_instance_device (image_instance),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1662 type, ERROR_ME_NOT);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1663 if (meths && HAS_IIFORMAT_METH_P (meths, property)
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1664 &&
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1665 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1666 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1667 return ret;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1668 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1669 /* ... then format specific methods ... */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1670 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1671 if (meths && HAS_IIFORMAT_METH_P (meths, property)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1672 &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1673 !UNBOUNDP (ret = IIFORMAT_METH (meths, property, (image_instance, prop))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1674 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1675 return ret;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1676 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1677 /* ... then fail */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1678 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1679 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1680
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1681 DEFUN ("image-instance-file-name", Fimage_instance_file_name, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1682 Return the file name from which IMAGE-INSTANCE was read, if known.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1683 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1684 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1685 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1686 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1687 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1688
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1689 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1690 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1691 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1692 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1693 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1694 return XIMAGE_INSTANCE_PIXMAP_FILENAME (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1695
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1696 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1697 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1698 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1699 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1700
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1701 DEFUN ("image-instance-mask-file-name", Fimage_instance_mask_file_name, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1702 Return the file name from which IMAGE-INSTANCE's mask was read, if known.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1703 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1704 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1705 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1706 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1707 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1708
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1709 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1710 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1711 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1712 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1713 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1714 return XIMAGE_INSTANCE_PIXMAP_MASK_FILENAME (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1715
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1716 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1717 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1718 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1719 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1720
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1721 DEFUN ("image-instance-depth", Fimage_instance_depth, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1722 Return the depth of the image instance.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1723 This is 0 for a bitmap, or a positive integer for a pixmap.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1724 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1725 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1726 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1727 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1728 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1729
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1730 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1731 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1732 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1733 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1734 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1735 return make_int (XIMAGE_INSTANCE_PIXMAP_DEPTH (image_instance));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1736
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1737 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1738 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1739 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1740 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1741
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1742 DEFUN ("image-instance-height", Fimage_instance_height, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1743 Return the height of the image instance, in pixels.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1744 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1745 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1746 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1747 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1748 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1749
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1750 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1751 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1752 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1753 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1754 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1755 case IMAGE_SUBWINDOW:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1756 case IMAGE_WIDGET:
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1757 return make_int (XIMAGE_INSTANCE_HEIGHT (image_instance));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1758
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1759 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1760 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1761 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1762 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1763
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1764 DEFUN ("image-instance-width", Fimage_instance_width, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1765 Return the width of the image instance, in pixels.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1766 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1767 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1768 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1769 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1770 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1771
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1772 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1773 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1774 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1775 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1776 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1777 case IMAGE_SUBWINDOW:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1778 case IMAGE_WIDGET:
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1779 return make_int (XIMAGE_INSTANCE_WIDTH (image_instance));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1780
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1781 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1782 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1783 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1784 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1785
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1786 DEFUN ("image-instance-hotspot-x", Fimage_instance_hotspot_x, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1787 Return the X coordinate of the image instance's hotspot, if known.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1788 This is a point relative to the origin of the pixmap. When an image is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1789 used as a mouse pointer, the hotspot is the point on the image that sits
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1790 over the location that the pointer points to. This is, for example, the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1791 tip of the arrow or the center of the crosshairs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1792 This will always be nil for a non-pointer image instance.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1793 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1794 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1795 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1796 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1797 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1798
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1799 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1800 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1801 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1802 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1803 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1804 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_X (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1805
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1806 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1807 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1808 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1809 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1810
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1811 DEFUN ("image-instance-hotspot-y", Fimage_instance_hotspot_y, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1812 Return the Y coordinate of the image instance's hotspot, if known.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1813 This is a point relative to the origin of the pixmap. When an image is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1814 used as a mouse pointer, the hotspot is the point on the image that sits
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1815 over the location that the pointer points to. This is, for example, the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1816 tip of the arrow or the center of the crosshairs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1817 This will always be nil for a non-pointer image instance.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1818 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1819 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1820 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1821 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1822 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1823
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1824 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1825 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1826 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1827 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1828 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1829 return XIMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1830
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1831 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1832 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1833 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1834 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1835
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1836 DEFUN ("image-instance-foreground", Fimage_instance_foreground, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1837 Return the foreground color of IMAGE-INSTANCE, if applicable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1838 This will be a color instance or nil. (It will only be non-nil for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1839 colorized mono pixmaps and for pointers.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1840 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1841 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1842 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1843 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1844 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1845
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1846 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1847 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1848 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1849 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1850 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1851 return XIMAGE_INSTANCE_PIXMAP_FG (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1852
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1853 case IMAGE_WIDGET:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1854 return FACE_FOREGROUND (
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1855 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1856 XIMAGE_INSTANCE_FRAME
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1857 (image_instance));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1858
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1859 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1860 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1861 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1862 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1863
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1864 DEFUN ("image-instance-background", Fimage_instance_background, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1865 Return the background color of IMAGE-INSTANCE, if applicable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1866 This will be a color instance or nil. (It will only be non-nil for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1867 colorized mono pixmaps and for pointers.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1868 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1869 (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1870 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1871 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1872 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1873
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1874 switch (XIMAGE_INSTANCE_TYPE (image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1875 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1876 case IMAGE_MONO_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1877 case IMAGE_COLOR_PIXMAP:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1878 case IMAGE_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1879 return XIMAGE_INSTANCE_PIXMAP_BG (image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1880
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1881 case IMAGE_WIDGET:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1882 return FACE_BACKGROUND (
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1883 XIMAGE_INSTANCE_WIDGET_FACE (image_instance),
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1884 XIMAGE_INSTANCE_FRAME
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1885 (image_instance));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1886
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1887 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1888 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1889 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1890 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1891
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1892
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1893 DEFUN ("colorize-image-instance", Fcolorize_image_instance, 3, 3, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1894 Make the image instance be displayed in the given colors.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1895 This function returns a new image instance that is exactly like the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1896 specified one except that (if possible) the foreground and background
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1897 colors and as specified. Currently, this only does anything if the image
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1898 instance is a mono pixmap; otherwise, the same image instance is returned.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1899 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1900 (image_instance, foreground, background))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1901 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1902 Lisp_Object new;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1903 Lisp_Object device;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1904
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1905 CHECK_IMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1906 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1907 CHECK_COLOR_INSTANCE (foreground);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1908 CHECK_COLOR_INSTANCE (background);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1909
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1910 device = image_instance_device (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1911 if (!HAS_DEVMETH_P (XDEVICE (device), colorize_image_instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1912 return image_instance;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1913
430
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1914 /* #### There should be a copy_image_instance(), which calls a
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1915 device-specific method to copy the window-system subobject. */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1916 new = allocate_image_instance (XIMAGE_INSTANCE_DOMAIN (image_instance),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1917 Qnil, Qnil);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1918 copy_lcrecord (XIMAGE_INSTANCE (new), XIMAGE_INSTANCE (image_instance));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1919 /* note that if this method returns non-zero, this method MUST
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1920 copy any window-system resources, so that when one image instance is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1921 freed, the other one is not hosed. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1922 if (!DEVMETH (XDEVICE (device), colorize_image_instance, (new, foreground,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1923 background)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1924 return image_instance;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1925 return new;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1926 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1927
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1928
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1929 /************************************************************************/
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1930 /* Geometry calculations */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1931 /************************************************************************/
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1932
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1933 /* Find out desired geometry of the image instance. If there is no
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1934 special function then just return the width and / or height. */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1935 void
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1936 image_instance_query_geometry (Lisp_Object image_instance,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1937 int* width, int* height,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1938 enum image_instance_geometry disp,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1939 Lisp_Object domain)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1940 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1941 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image_instance);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1942 Lisp_Object type;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1943 struct image_instantiator_methods* meths;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1944 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1945
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1946 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1947 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1948
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1949 if (meths && HAS_IIFORMAT_METH_P (meths, query_geometry))
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1950 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1951 IIFORMAT_METH (meths, query_geometry, (image_instance, width, height,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1952 disp, domain));
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1953 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1954 else
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1955 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1956 if (width)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1957 *width = IMAGE_INSTANCE_WIDTH (ii);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1958 if (height)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1959 *height = IMAGE_INSTANCE_HEIGHT (ii);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1960 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1961 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1962
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1963 /* Layout the image instance using the provided dimensions. Layout
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1964 widgets are going to do different kinds of calculations to
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1965 determine what size to give things so we could make the layout
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1966 function relatively simple to take account of that. An alternative
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1967 approach is to consider separately the two cases, one where you
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1968 don't mind what size you have (normal widgets) and one where you
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1969 want to specify something (layout widgets). */
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1970 void
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1971 image_instance_layout (Lisp_Object image_instance,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1972 int width, int height,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1973 int xoffset, int yoffset,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1974 Lisp_Object domain)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1975 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1976 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image_instance);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1977 Lisp_Object type;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1978 struct image_instantiator_methods* meths;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1979
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1980 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1981
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1982 /* Nothing is as nothing does. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1983 if (NOTHING_IMAGE_INSTANCEP (image_instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1984 return;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1985
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1986 /* We don't want carefully calculated offsets to be mucked up by
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1987 random layouts. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1988 if (xoffset != IMAGE_UNCHANGED_GEOMETRY)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1989 XIMAGE_INSTANCE_XOFFSET (image_instance) = xoffset;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1990 if (yoffset != IMAGE_UNCHANGED_GEOMETRY)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1991 XIMAGE_INSTANCE_YOFFSET (image_instance) = yoffset;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1992
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1993 assert (XIMAGE_INSTANCE_YOFFSET (image_instance) >= 0
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1994 && XIMAGE_INSTANCE_XOFFSET (image_instance) >= 0);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1995
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1996 /* If geometry is unspecified then get some reasonable values for it. */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1997 if (width == IMAGE_UNSPECIFIED_GEOMETRY
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1998 ||
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
1999 height == IMAGE_UNSPECIFIED_GEOMETRY)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2000 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2001 int dwidth = IMAGE_UNSPECIFIED_GEOMETRY;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2002 int dheight = IMAGE_UNSPECIFIED_GEOMETRY;
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2003 /* Get the desired geometry. */
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2004 image_instance_query_geometry (image_instance,
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2005 &dwidth, &dheight,
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2006 IMAGE_DESIRED_GEOMETRY,
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2007 domain);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2008 /* Compare with allowed geometry. */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2009 if (width == IMAGE_UNSPECIFIED_GEOMETRY)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2010 width = dwidth;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2011 if (height == IMAGE_UNSPECIFIED_GEOMETRY)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2012 height = dheight;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2013 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2014
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2015 /* If we don't have sane values then we cannot layout at this point and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2016 must just return. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2017 if (width == IMAGE_UNSPECIFIED_GEOMETRY
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2018 ||
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2019 height == IMAGE_UNSPECIFIED_GEOMETRY)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2020 return;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2021
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2022 /* At this point width and height should contain sane values. Thus
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2023 we set the glyph geometry and lay it out. */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2024 if (IMAGE_INSTANCE_WIDTH (ii) != width
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2025 ||
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2026 IMAGE_INSTANCE_HEIGHT (ii) != height)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2027 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2028 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2029 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2030
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2031 IMAGE_INSTANCE_WIDTH (ii) = width;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2032 IMAGE_INSTANCE_HEIGHT (ii) = height;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2033
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2034 type = encode_image_instance_type (IMAGE_INSTANCE_TYPE (ii));
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2035 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2036
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2037 MAYBE_IIFORMAT_METH (meths, layout,
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2038 (image_instance, width, height, xoffset, yoffset,
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2039 domain));
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2040 /* Do not clear the dirty flag here - redisplay will do this for
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2041 us at the end. */
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
2042 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 0;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2043 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2044
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2045 /* Update an image instance from its changed instantiator. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2046 static void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2047 update_image_instance (Lisp_Object image_instance,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2048 Lisp_Object instantiator)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2049 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2050 struct image_instantiator_methods* meths;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2051 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2052
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2053 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2054
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2055 if (NOTHING_IMAGE_INSTANCEP (image_instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2056 return;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2057
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2058 assert (!internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, 0)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2059 || (internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, 0)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2060 && internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, -10)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2061
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2062 /* If the instantiator is identical then do nothing. We must use
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2063 equal here because the specifier code copies the instantiator. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2064 if (!internal_equal (IMAGE_INSTANCE_INSTANTIATOR (ii), instantiator, 0))
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2065 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2066 /* Extract the changed properties so that device / format
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2067 methods only have to cope with these. We assume that
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2068 normalization has already been done. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2069 Lisp_Object diffs = find_instantiator_differences
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2070 (instantiator,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2071 IMAGE_INSTANCE_INSTANTIATOR (ii));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2072 Lisp_Object type = encode_image_instance_type
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2073 (IMAGE_INSTANCE_TYPE (ii));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2074 struct gcpro gcpro1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2075 GCPRO1 (diffs);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2076
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2077 /* try device specific methods first ... */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2078 meths = decode_device_ii_format (image_instance_device (image_instance),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2079 type, ERROR_ME_NOT);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2080 MAYBE_IIFORMAT_METH (meths, update, (image_instance, diffs));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2081 /* ... then format specific methods ... */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2082 meths = decode_device_ii_format (Qnil, type, ERROR_ME_NOT);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2083 MAYBE_IIFORMAT_METH (meths, update, (image_instance, diffs));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2084
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2085 /* Instance and therefore glyph has changed so mark as dirty.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2086 If we don't do this output optimizations will assume the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2087 glyph is unchanged. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2088 set_image_instance_dirty_p (image_instance, 1);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2089 /* Structure has changed. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2090 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2091
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2092 UNGCPRO;
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2093 }
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2094 /* We should now have a consistent instantiator so keep a record of
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2095 it. It is important that we don't actually update the window
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2096 system widgets here - we must do that when redisplay tells us
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2097 to.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2098
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2099 #### should we delay doing this until the display is up-to-date
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2100 also? */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2101 IMAGE_INSTANCE_INSTANTIATOR (ii) = instantiator;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2102 }
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2103
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2104 /*
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2105 * Mark image instance in W as dirty if (a) W's faces have changed and
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2106 * (b) GLYPH_OR_II instance in W is a string.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2107 *
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2108 * Return non-zero if instance has been marked dirty.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2109 */
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2110 int
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2111 invalidate_glyph_geometry_maybe (Lisp_Object glyph_or_ii, struct window* w)
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2112 {
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2113 if (XFRAME(WINDOW_FRAME(w))->faces_changed)
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2114 {
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2115 Lisp_Object image = glyph_or_ii;
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2116
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2117 if (GLYPHP (glyph_or_ii))
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2118 {
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2119 Lisp_Object window;
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2120 XSETWINDOW (window, w);
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2121 image = glyph_image_instance (glyph_or_ii, window, ERROR_ME_NOT, 1);
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2122 }
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2123
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2124 if (TEXT_IMAGE_INSTANCEP (image))
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2125 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2126 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (image);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2127 IMAGE_INSTANCE_DIRTYP (ii) = 1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2128 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 1;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2129 if (GLYPHP (glyph_or_ii))
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2130 XGLYPH_DIRTYP (glyph_or_ii) = 1;
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2131 return 1;
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2132 }
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2133 }
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2134
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2135 return 0;
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2136 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2137
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2138
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2139 /************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2140 /* error helpers */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2141 /************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2142 DOESNT_RETURN
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2143 signal_image_error (const char *reason, Lisp_Object frob)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2144 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2145 signal_error (Qimage_conversion_error, reason, frob);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2146 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2147
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2148 DOESNT_RETURN
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2149 signal_image_error_2 (const char *reason, Lisp_Object frob0, Lisp_Object frob1)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2150 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2151 signal_error_2 (Qimage_conversion_error, reason, frob0, frob1);
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2152 }
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2153
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2154 DOESNT_RETURN
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2155 signal_double_image_error (const char *string1, const char *string2,
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2156 Lisp_Object data)
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2157 {
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2158 signal_error_1 (Qimage_conversion_error,
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2159 list3 (build_translated_string (string1),
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2160 build_translated_string (string2),
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2161 data));
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2162 }
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2163
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2164 DOESNT_RETURN
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2165 signal_double_image_error_2 (const char *string1, const char *string2,
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2166 Lisp_Object data1, Lisp_Object data2)
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2167 {
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2168 signal_error_1 (Qimage_conversion_error,
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2169 list4 (build_translated_string (string1),
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2170 build_translated_string (string2),
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2171 data1, data2));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2172 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2173
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2174 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2175 * nothing *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2176 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2177
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2178 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2179 nothing_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2180 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2181 return IMAGE_NOTHING_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2182 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2183
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2184 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2185 nothing_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2186 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2187 int dest_mask, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2188 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2189 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2190
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2191 if (dest_mask & IMAGE_NOTHING_MASK)
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2192 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2193 IMAGE_INSTANCE_TYPE (ii) = IMAGE_NOTHING;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2194 IMAGE_INSTANCE_HEIGHT (ii) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2195 IMAGE_INSTANCE_WIDTH (ii) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2196 }
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2197 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2198 incompatible_image_types (instantiator, dest_mask, IMAGE_NOTHING_MASK);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2199 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2200
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2201
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2202 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2203 * inherit *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2204 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2205
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2206 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2207 inherit_validate (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2208 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2209 face_must_be_present (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2210 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2211
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2212 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2213 inherit_normalize (Lisp_Object inst, Lisp_Object console_type,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2214 Lisp_Object dest_mask)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2215 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2216 Lisp_Object face;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2217
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2218 assert (XVECTOR_LENGTH (inst) == 3);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2219 face = XVECTOR_DATA (inst)[2];
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2220 if (!FACEP (face))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2221 inst = vector3 (Qinherit, Q_face, Fget_face (face));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2222 return inst;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2223 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2224
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2225 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2226 inherit_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2227 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2228 return IMAGE_MONO_PIXMAP_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2229 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2230
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2231 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2232 inherit_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2233 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2234 int dest_mask, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2235 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2236 /* handled specially in image_instantiate */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2237 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2238 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2239
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2240
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2241 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2242 * string *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2243 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2244
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2245 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2246 string_validate (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2247 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2248 data_must_be_present (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2249 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2250
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2251 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2252 string_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2253 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2254 return IMAGE_TEXT_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2255 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2256
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2257 /* Called from autodetect_instantiate() */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2258 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2259 string_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2260 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2261 int dest_mask, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2262 {
434
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
2263 Lisp_Object string = find_keyword_in_vector (instantiator, Q_data);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2264 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2265
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2266 /* Should never get here with a domain other than a window. */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2267 assert (!NILP (string) && WINDOWP (DOMAIN_WINDOW (domain)));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2268 if (dest_mask & IMAGE_TEXT_MASK)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2269 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2270 IMAGE_INSTANCE_TYPE (ii) = IMAGE_TEXT;
434
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
2271 IMAGE_INSTANCE_TEXT_STRING (ii) = string;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2272 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2273 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2274 incompatible_image_types (instantiator, dest_mask, IMAGE_TEXT_MASK);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2275 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2276
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2277 /* Sort out the size of the text that is being displayed. Calculating
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2278 it dynamically allows us to change the text and still see
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2279 everything. Note that the following methods are for text not string
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2280 since that is what the instantiated type is. The first method is a
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2281 helper that is used elsewhere for calculating text geometry. */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2282 void
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2283 query_string_geometry (Lisp_Object string, Lisp_Object face,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2284 int* width, int* height, int* descent, Lisp_Object domain)
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2285 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2286 struct font_metric_info fm;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2287 unsigned char charsets[NUM_LEADING_BYTES];
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2288 struct face_cachel frame_cachel;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2289 struct face_cachel *cachel;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2290 Lisp_Object frame = DOMAIN_FRAME (domain);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2291
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2292 /* Compute height */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2293 if (height)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2294 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2295 /* Compute string metric info */
665
fdefd0186b75 [xemacs-hg @ 2001-09-20 06:28:42 by ben]
ben
parents: 647
diff changeset
2296 find_charsets_in_intbyte_string (charsets,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2297 XSTRING_DATA (string),
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2298 XSTRING_LENGTH (string));
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2299
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2300 /* Fallback to the default face if none was provided. */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2301 if (!NILP (face))
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2302 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2303 reset_face_cachel (&frame_cachel);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2304 update_face_cachel_data (&frame_cachel, frame, face);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2305 cachel = &frame_cachel;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2306 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2307 else
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2308 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2309 cachel = WINDOW_FACE_CACHEL (DOMAIN_XWINDOW (domain),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2310 DEFAULT_INDEX);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2311 }
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2312
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2313 ensure_face_cachel_complete (cachel, domain, charsets);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2314 face_cachel_charset_font_metric_info (cachel, charsets, &fm);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2315
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2316 *height = fm.ascent + fm.descent;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2317 /* #### descent only gets set if we query the height as well. */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2318 if (descent)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2319 *descent = fm.descent;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2320 }
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2321
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2322 /* Compute width */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2323 if (width)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2324 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2325 if (!NILP (face))
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2326 *width = redisplay_frame_text_width_string (XFRAME (frame),
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2327 face,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2328 0, string, 0, -1);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2329 else
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2330 *width = redisplay_frame_text_width_string (XFRAME (frame),
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2331 Vdefault_face,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2332 0, string, 0, -1);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2333 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2334 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2335
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2336 Lisp_Object
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2337 query_string_font (Lisp_Object string, Lisp_Object face, Lisp_Object domain)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2338 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2339 unsigned char charsets[NUM_LEADING_BYTES];
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2340 struct face_cachel frame_cachel;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2341 struct face_cachel *cachel;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2342 int i;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2343 Lisp_Object frame = DOMAIN_FRAME (domain);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2344
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2345 /* Compute string font info */
665
fdefd0186b75 [xemacs-hg @ 2001-09-20 06:28:42 by ben]
ben
parents: 647
diff changeset
2346 find_charsets_in_intbyte_string (charsets,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2347 XSTRING_DATA (string),
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2348 XSTRING_LENGTH (string));
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2349
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2350 reset_face_cachel (&frame_cachel);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2351 update_face_cachel_data (&frame_cachel, frame, face);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2352 cachel = &frame_cachel;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2353
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2354 ensure_face_cachel_complete (cachel, domain, charsets);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2355
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2356 for (i = 0; i < NUM_LEADING_BYTES; i++)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2357 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2358 if (charsets[i])
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2359 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2360 return FACE_CACHEL_FONT (cachel,
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2361 CHARSET_BY_LEADING_BYTE (i +
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2362 MIN_LEADING_BYTE));
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2363
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2364 }
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2365 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2366
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2367 return Qnil; /* NOT REACHED */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2368 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2369
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2370 static void
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2371 text_query_geometry (Lisp_Object image_instance,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2372 int* width, int* height,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2373 enum image_instance_geometry disp, Lisp_Object domain)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2374 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2375 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2376 int descent = 0;
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2377
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2378 query_string_geometry (IMAGE_INSTANCE_TEXT_STRING (ii),
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2379 IMAGE_INSTANCE_FACE (ii),
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2380 width, height, &descent, domain);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2381
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2382 /* The descent gets set as a side effect of querying the
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2383 geometry. */
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2384 IMAGE_INSTANCE_TEXT_DESCENT (ii) = descent;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2385 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2386
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2387 /* set the properties of a string */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2388 static void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2389 text_update (Lisp_Object image_instance, Lisp_Object instantiator)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2390 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2391 Lisp_Object val = find_keyword_in_vector (instantiator, Q_data);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2392
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2393 if (!NILP (val))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2394 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2395 CHECK_STRING (val);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2396 XIMAGE_INSTANCE_TEXT_STRING (image_instance) = val;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2397 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2398 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2399
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2400
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2401 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2402 * formatted-string *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2403 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2404
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2405 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2406 formatted_string_validate (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2407 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2408 data_must_be_present (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2409 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2410
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2411 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2412 formatted_string_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2413 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2414 return IMAGE_TEXT_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2415 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2416
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2417 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2418 formatted_string_instantiate (Lisp_Object image_instance,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2419 Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2420 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2421 int dest_mask, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2422 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2423 /* #### implement this */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2424 warn_when_safe (Qunimplemented, Qnotice,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2425 "`formatted-string' not yet implemented; assuming `string'");
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2426
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2427 string_instantiate (image_instance, instantiator,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
2428 pointer_fg, pointer_bg, dest_mask, domain);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2429 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2430
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2431
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2432 /************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2433 /* pixmap file functions */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2434 /************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2435
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2436 /* If INSTANTIATOR refers to inline data, return Qnil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2437 If INSTANTIATOR refers to data in a file, return the full filename
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2438 if it exists; otherwise, return a cons of (filename).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2439
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2440 FILE_KEYWORD and DATA_KEYWORD are symbols specifying the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2441 keywords used to look up the file and inline data,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2442 respectively, in the instantiator. Normally these would
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2443 be Q_file and Q_data, but might be different for mask data. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2444
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2445 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2446 potential_pixmap_file_instantiator (Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2447 Lisp_Object file_keyword,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2448 Lisp_Object data_keyword,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2449 Lisp_Object console_type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2450 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2451 Lisp_Object file;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2452 Lisp_Object data;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2453
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2454 assert (VECTORP (instantiator));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2455
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2456 data = find_keyword_in_vector (instantiator, data_keyword);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2457 file = find_keyword_in_vector (instantiator, file_keyword);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2458
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2459 if (!NILP (file) && NILP (data))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2460 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2461 Lisp_Object retval = MAYBE_LISP_CONTYPE_METH
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2462 (decode_console_type(console_type, ERROR_ME),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2463 locate_pixmap_file, (file));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2464
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2465 if (!NILP (retval))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2466 return retval;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2467 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2468 return Fcons (file, Qnil); /* should have been file */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2469 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2470
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2471 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2472 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2473
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2474 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2475 simple_image_type_normalize (Lisp_Object inst, Lisp_Object console_type,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2476 Lisp_Object image_type_tag)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2477 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2478 /* This function can call lisp */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2479 Lisp_Object file = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2480 struct gcpro gcpro1, gcpro2;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2481 Lisp_Object alist = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2482
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2483 GCPRO2 (file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2484
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2485 /* Now, convert any file data into inline data. At the end of this,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2486 `data' will contain the inline data (if any) or Qnil, and `file'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2487 will contain the name this data was derived from (if known) or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2488 Qnil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2489
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2490 Note that if we cannot generate any regular inline data, we
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2491 skip out. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2492
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2493 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2494 console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2495
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2496 if (CONSP (file)) /* failure locating filename */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2497 signal_double_image_error ("Opening pixmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2498 "no such file or directory",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2499 Fcar (file));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2500
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2501 if (NILP (file)) /* no conversion necessary */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2502 RETURN_UNGCPRO (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2503
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2504 alist = tagged_vector_to_alist (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2505
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2506 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2507 Lisp_Object data = make_string_from_file (file);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2508 alist = remassq_no_quit (Q_file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2509 /* there can't be a :data at this point. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2510 alist = Fcons (Fcons (Q_file, file),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2511 Fcons (Fcons (Q_data, data), alist));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2512 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2513
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2514 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2515 Lisp_Object result = alist_to_tagged_vector (image_type_tag, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2516 free_alist (alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2517 RETURN_UNGCPRO (result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2518 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2519 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2520
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2521
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2522 #ifdef HAVE_WINDOW_SYSTEM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2523 /**********************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2524 * XBM *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2525 **********************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2526
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2527 /* Check if DATA represents a valid inline XBM spec (i.e. a list
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2528 of (width height bits), with checking done on the dimensions).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2529 If not, signal an error. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2530
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2531 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2532 check_valid_xbm_inline (Lisp_Object data)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2533 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2534 Lisp_Object width, height, bits;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2535
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2536 if (!CONSP (data) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2537 !CONSP (XCDR (data)) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2538 !CONSP (XCDR (XCDR (data))) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2539 !NILP (XCDR (XCDR (XCDR (data)))))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2540 sferror ("Must be list of 3 elements", data);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2541
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2542 width = XCAR (data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2543 height = XCAR (XCDR (data));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2544 bits = XCAR (XCDR (XCDR (data)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2545
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2546 CHECK_STRING (bits);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2547
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2548 if (!NATNUMP (width))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2549 invalid_argument ("Width must be a natural number", width);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2550
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2551 if (!NATNUMP (height))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2552 invalid_argument ("Height must be a natural number", height);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2553
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2554 if (((XINT (width) * XINT (height)) / 8) > XSTRING_CHAR_LENGTH (bits))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2555 invalid_argument ("data is too short for width and height",
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2556 vector3 (width, height, bits));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2557 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2558
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2559 /* Validate method for XBM's. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2560
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2561 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2562 xbm_validate (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2563 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2564 file_or_data_must_be_present (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2565 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2566
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2567 /* Given a filename that is supposed to contain XBM data, return
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2568 the inline representation of it as (width height bits). Return
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2569 the hotspot through XHOT and YHOT, if those pointers are not 0.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2570 If there is no hotspot, XHOT and YHOT will contain -1.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2571
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2572 If the function fails:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2573
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2574 -- if OK_IF_DATA_INVALID is set and the data was invalid,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2575 return Qt.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2576 -- maybe return an error, or return Qnil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2577 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2578
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2579 #ifdef HAVE_X_WINDOWS
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2580 #include <X11/Xlib.h>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2581 #else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2582 #define XFree(data) free(data)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2583 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2584
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2585 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2586 bitmap_to_lisp_data (Lisp_Object name, int *xhot, int *yhot,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2587 int ok_if_data_invalid)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2588 {
647
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
2589 int w, h;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2590 Extbyte *data;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2591 int result;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2592 const char *filename_ext;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2593
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2594 LISP_STRING_TO_EXTERNAL (name, filename_ext, Qfile_name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2595 result = read_bitmap_data_from_file (filename_ext, &w, &h,
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
2596 (unsigned char **) &data, xhot, yhot);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2597
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2598 if (result == BitmapSuccess)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2599 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2600 Lisp_Object retval;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2601 int len = (w + 7) / 8 * h;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2602
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2603 retval = list3 (make_int (w), make_int (h),
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2604 make_ext_string (data, len, Qbinary));
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
2605 XFree (data);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2606 return retval;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2607 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2608
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2609 switch (result)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2610 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2611 case BitmapOpenFailed:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2612 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2613 /* should never happen */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2614 signal_double_image_error ("Opening bitmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2615 "no such file or directory",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2616 name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2617 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2618 case BitmapFileInvalid:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2619 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2620 if (ok_if_data_invalid)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2621 return Qt;
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2622 signal_double_image_error ("Reading bitmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2623 "invalid data in file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2624 name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2625 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2626 case BitmapNoMemory:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2627 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2628 signal_double_image_error ("Reading bitmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2629 "out of memory",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2630 name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2631 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2632 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2633 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2634 signal_double_image_error_2 ("Reading bitmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2635 "unknown error code",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2636 make_int (result), name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2637 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2638 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2639
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2640 return Qnil; /* not reached */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2641 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2642
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2643 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2644 xbm_mask_file_munging (Lisp_Object alist, Lisp_Object file,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2645 Lisp_Object mask_file, Lisp_Object console_type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2646 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2647 /* This is unclean but it's fairly standard -- a number of the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2648 bitmaps in /usr/include/X11/bitmaps use it -- so we support
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2649 it. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2650 if (NILP (mask_file)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2651 /* don't override explicitly specified mask data. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2652 && NILP (assq_no_quit (Q_mask_data, alist))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2653 && !NILP (file))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2654 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2655 mask_file = MAYBE_LISP_CONTYPE_METH
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2656 (decode_console_type(console_type, ERROR_ME),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2657 locate_pixmap_file, (concat2 (file, build_string ("Mask"))));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2658 if (NILP (mask_file))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2659 mask_file = MAYBE_LISP_CONTYPE_METH
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2660 (decode_console_type(console_type, ERROR_ME),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2661 locate_pixmap_file, (concat2 (file, build_string ("msk"))));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2662 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2663
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2664 if (!NILP (mask_file))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2665 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2666 Lisp_Object mask_data =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2667 bitmap_to_lisp_data (mask_file, 0, 0, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2668 alist = remassq_no_quit (Q_mask_file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2669 /* there can't be a :mask-data at this point. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2670 alist = Fcons (Fcons (Q_mask_file, mask_file),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2671 Fcons (Fcons (Q_mask_data, mask_data), alist));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2672 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2673
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2674 return alist;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2675 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2676
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2677 /* Normalize method for XBM's. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2678
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2679 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2680 xbm_normalize (Lisp_Object inst, Lisp_Object console_type,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2681 Lisp_Object dest_mask)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2682 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2683 Lisp_Object file = Qnil, mask_file = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2684 struct gcpro gcpro1, gcpro2, gcpro3;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2685 Lisp_Object alist = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2686
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2687 GCPRO3 (file, mask_file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2688
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2689 /* Now, convert any file data into inline data for both the regular
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2690 data and the mask data. At the end of this, `data' will contain
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2691 the inline data (if any) or Qnil, and `file' will contain
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2692 the name this data was derived from (if known) or Qnil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2693 Likewise for `mask_file' and `mask_data'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2694
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2695 Note that if we cannot generate any regular inline data, we
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2696 skip out. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2697
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2698 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2699 console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2700 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2701 Q_mask_data, console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2702
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2703 if (CONSP (file)) /* failure locating filename */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2704 signal_double_image_error ("Opening bitmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2705 "no such file or directory",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2706 Fcar (file));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2707
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2708 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2709 RETURN_UNGCPRO (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2710
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2711 alist = tagged_vector_to_alist (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2712
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2713 if (!NILP (file))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2714 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2715 int xhot, yhot;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2716 Lisp_Object data = bitmap_to_lisp_data (file, &xhot, &yhot, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2717 alist = remassq_no_quit (Q_file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2718 /* there can't be a :data at this point. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2719 alist = Fcons (Fcons (Q_file, file),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2720 Fcons (Fcons (Q_data, data), alist));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2721
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2722 if (xhot != -1 && NILP (assq_no_quit (Q_hotspot_x, alist)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2723 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2724 alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2725 if (yhot != -1 && NILP (assq_no_quit (Q_hotspot_y, alist)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2726 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2727 alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2728 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2729
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2730 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2731
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2732 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2733 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2734 free_alist (alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2735 RETURN_UNGCPRO (result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2736 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2737 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2738
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2739
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2740 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2741 xbm_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2742 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2743 return
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2744 IMAGE_MONO_PIXMAP_MASK |
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2745 IMAGE_COLOR_PIXMAP_MASK |
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2746 IMAGE_POINTER_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2747 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2748
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2749 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2750
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2751
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2752 #ifdef HAVE_XFACE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2753 /**********************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2754 * X-Face *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2755 **********************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2756
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2757 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2758 xface_validate (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2759 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2760 file_or_data_must_be_present (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2761 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2762
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2763 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2764 xface_normalize (Lisp_Object inst, Lisp_Object console_type,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2765 Lisp_Object dest_mask)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2766 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2767 /* This function can call lisp */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2768 Lisp_Object file = Qnil, mask_file = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2769 struct gcpro gcpro1, gcpro2, gcpro3;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2770 Lisp_Object alist = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2771
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2772 GCPRO3 (file, mask_file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2773
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2774 /* Now, convert any file data into inline data for both the regular
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2775 data and the mask data. At the end of this, `data' will contain
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2776 the inline data (if any) or Qnil, and `file' will contain
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2777 the name this data was derived from (if known) or Qnil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2778 Likewise for `mask_file' and `mask_data'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2779
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2780 Note that if we cannot generate any regular inline data, we
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2781 skip out. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2782
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2783 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2784 console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2785 mask_file = potential_pixmap_file_instantiator (inst, Q_mask_file,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2786 Q_mask_data, console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2787
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2788 if (CONSP (file)) /* failure locating filename */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2789 signal_double_image_error ("Opening bitmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2790 "no such file or directory",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2791 Fcar (file));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2792
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2793 if (NILP (file) && NILP (mask_file)) /* no conversion necessary */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2794 RETURN_UNGCPRO (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2795
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2796 alist = tagged_vector_to_alist (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2797
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2798 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2799 Lisp_Object data = make_string_from_file (file);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2800 alist = remassq_no_quit (Q_file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2801 /* there can't be a :data at this point. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2802 alist = Fcons (Fcons (Q_file, file),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2803 Fcons (Fcons (Q_data, data), alist));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2804 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2805
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2806 alist = xbm_mask_file_munging (alist, file, mask_file, console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2807
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2808 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2809 Lisp_Object result = alist_to_tagged_vector (Qxface, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2810 free_alist (alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2811 RETURN_UNGCPRO (result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2812 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2813 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2814
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2815 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2816 xface_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2817 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2818 return
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2819 IMAGE_MONO_PIXMAP_MASK |
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2820 IMAGE_COLOR_PIXMAP_MASK |
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2821 IMAGE_POINTER_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2822 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2823
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2824 #endif /* HAVE_XFACE */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2825
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2826
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2827 #ifdef HAVE_XPM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2828
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2829 /**********************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2830 * XPM *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2831 **********************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2832
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2833 #ifdef HAVE_GTK
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2834 /* Gtk has to be gratuitously different, eh? */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2835 Lisp_Object
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2836 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2837 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2838 return (make_string_from_file (name));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2839 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2840 #else
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2841 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2842 pixmap_to_lisp_data (Lisp_Object name, int ok_if_data_invalid)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2843 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2844 char **data;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2845 int result;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2846 char *fname = 0;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2847
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2848 LISP_STRING_TO_EXTERNAL (name, fname, Qfile_name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2849 result = XpmReadFileToData (fname, &data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2850
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2851 if (result == XpmSuccess)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2852 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2853 Lisp_Object retval = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2854 struct buffer *old_buffer = current_buffer;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2855 Lisp_Object temp_buffer =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2856 Fget_buffer_create (build_string (" *pixmap conversion*"));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2857 int elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2858 int height, width, ncolors;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2859 struct gcpro gcpro1, gcpro2, gcpro3;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2860 int speccount = specpdl_depth ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2861
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2862 GCPRO3 (name, retval, temp_buffer);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2863
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2864 specbind (Qinhibit_quit, Qt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2865 set_buffer_internal (XBUFFER (temp_buffer));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2866 Ferase_buffer (Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2867
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2868 buffer_insert_c_string (current_buffer, "/* XPM */\r");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2869 buffer_insert_c_string (current_buffer, "static char *pixmap[] = {\r");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2870
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2871 sscanf (data[0], "%d %d %d", &height, &width, &ncolors);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2872 for (elt = 0; elt <= width + ncolors; elt++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2873 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2874 buffer_insert_c_string (current_buffer, "\"");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2875 buffer_insert_c_string (current_buffer, data[elt]);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2876
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2877 if (elt < width + ncolors)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2878 buffer_insert_c_string (current_buffer, "\",\r");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2879 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2880 buffer_insert_c_string (current_buffer, "\"};\r");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2881 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2882
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2883 retval = Fbuffer_substring (Qnil, Qnil, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2884 XpmFree (data);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2885
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2886 set_buffer_internal (old_buffer);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2887 unbind_to (speccount, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2888
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2889 RETURN_UNGCPRO (retval);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2890 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2891
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2892 switch (result)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2893 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2894 case XpmFileInvalid:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2895 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2896 if (ok_if_data_invalid)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2897 return Qt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2898 signal_image_error ("invalid XPM data in file", name);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2899 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2900 case XpmNoMemory:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2901 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2902 signal_double_image_error ("Reading pixmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2903 "out of memory", name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2904 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2905 case XpmOpenFailed:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2906 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2907 /* should never happen? */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2908 signal_double_image_error ("Opening pixmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2909 "no such file or directory", name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2910 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2911 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2912 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2913 signal_double_image_error_2 ("Parsing pixmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2914 "unknown error code",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2915 make_int (result), name);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2916 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2917 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2918 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2919
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2920 return Qnil; /* not reached */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2921 }
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 454
diff changeset
2922 #endif /* !HAVE_GTK */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2923
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2924 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2925 check_valid_xpm_color_symbols (Lisp_Object data)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2926 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2927 Lisp_Object rest;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2928
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2929 for (rest = data; !NILP (rest); rest = XCDR (rest))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2930 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2931 if (!CONSP (rest) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2932 !CONSP (XCAR (rest)) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2933 !STRINGP (XCAR (XCAR (rest))) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2934 (!STRINGP (XCDR (XCAR (rest))) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2935 !COLOR_SPECIFIERP (XCDR (XCAR (rest)))))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2936 sferror ("Invalid color symbol alist", data);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2937 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2938 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2939
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2940 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2941 xpm_validate (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2942 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2943 file_or_data_must_be_present (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2944 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2945
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2946 Lisp_Object Vxpm_color_symbols;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2947
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2948 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2949 evaluate_xpm_color_symbols (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2950 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2951 Lisp_Object rest, results = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2952 struct gcpro gcpro1, gcpro2;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2953
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2954 GCPRO2 (rest, results);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2955 for (rest = Vxpm_color_symbols; !NILP (rest); rest = XCDR (rest))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2956 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2957 Lisp_Object name, value, cons;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2958
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2959 CHECK_CONS (rest);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2960 cons = XCAR (rest);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2961 CHECK_CONS (cons);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2962 name = XCAR (cons);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2963 CHECK_STRING (name);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2964 value = XCDR (cons);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2965 CHECK_CONS (value);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2966 value = XCAR (value);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2967 value = Feval (value);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2968 if (NILP (value))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2969 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2970 if (!STRINGP (value) && !COLOR_SPECIFIERP (value))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2971 invalid_argument
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2972 ("Result from xpm-color-symbols eval must be nil, string, or color",
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2973 value);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2974 results = Fcons (Fcons (name, value), results);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2975 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2976 UNGCPRO; /* no more evaluation */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2977 return results;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2978 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2979
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2980 static Lisp_Object
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2981 xpm_normalize (Lisp_Object inst, Lisp_Object console_type,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2982 Lisp_Object dest_mask)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2983 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2984 Lisp_Object file = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2985 Lisp_Object color_symbols;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2986 struct gcpro gcpro1, gcpro2;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2987 Lisp_Object alist = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2988
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2989 GCPRO2 (file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2990
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2991 /* Now, convert any file data into inline data. At the end of this,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2992 `data' will contain the inline data (if any) or Qnil, and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2993 `file' will contain the name this data was derived from (if
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2994 known) or Qnil.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2995
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2996 Note that if we cannot generate any regular inline data, we
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2997 skip out. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2998
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2999 file = potential_pixmap_file_instantiator (inst, Q_file, Q_data,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3000 console_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3001
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3002 if (CONSP (file)) /* failure locating filename */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3003 signal_double_image_error ("Opening pixmap file",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3004 "no such file or directory",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3005 Fcar (file));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3006
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3007 color_symbols = find_keyword_in_vector_or_given (inst, Q_color_symbols,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3008 Qunbound);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3009
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3010 if (NILP (file) && !UNBOUNDP (color_symbols))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3011 /* no conversion necessary */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3012 RETURN_UNGCPRO (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3013
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3014 alist = tagged_vector_to_alist (inst);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3015
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3016 if (!NILP (file))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3017 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3018 Lisp_Object data = pixmap_to_lisp_data (file, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3019 alist = remassq_no_quit (Q_file, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3020 /* there can't be a :data at this point. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3021 alist = Fcons (Fcons (Q_file, file),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3022 Fcons (Fcons (Q_data, data), alist));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3023 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3024
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3025 if (UNBOUNDP (color_symbols))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3026 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3027 color_symbols = evaluate_xpm_color_symbols ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3028 alist = Fcons (Fcons (Q_color_symbols, color_symbols),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3029 alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3030 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3031
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3032 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3033 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3034 free_alist (alist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3035 RETURN_UNGCPRO (result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3036 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3037 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3038
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3039 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3040 xpm_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3041 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3042 return
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3043 IMAGE_MONO_PIXMAP_MASK |
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3044 IMAGE_COLOR_PIXMAP_MASK |
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3045 IMAGE_POINTER_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3046 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3047
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3048 #endif /* HAVE_XPM */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3049
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3050
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3051 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3052 * Image Specifier Object *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3053 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3054
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3055 DEFINE_SPECIFIER_TYPE (image);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3056
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3057 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3058 image_create (Lisp_Object obj)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3059 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3060 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3061
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3062 IMAGE_SPECIFIER_ALLOWED (image) = ~0; /* all are allowed */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3063 IMAGE_SPECIFIER_ATTACHEE (image) = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3064 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3065 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3066
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3067 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3068 image_mark (Lisp_Object obj)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3069 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3070 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3071
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3072 mark_object (IMAGE_SPECIFIER_ATTACHEE (image));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3073 mark_object (IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3074 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3075
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3076 static int
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3077 instantiator_eq_equal (Lisp_Object obj1, Lisp_Object obj2)
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3078 {
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3079 if (EQ (obj1, obj2))
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3080 return 1;
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3081
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3082 else if (CONSP (obj1) && CONSP (obj2))
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3083 {
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3084 return instantiator_eq_equal (XCAR (obj1), XCAR (obj2))
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3085 &&
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3086 instantiator_eq_equal (XCDR (obj1), XCDR (obj2));
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3087 }
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3088 return 0;
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3089 }
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3090
665
fdefd0186b75 [xemacs-hg @ 2001-09-20 06:28:42 by ben]
ben
parents: 647
diff changeset
3091 static Hashcode
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3092 instantiator_eq_hash (Lisp_Object obj)
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3093 {
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3094 if (CONSP (obj))
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3095 {
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3096 /* no point in worrying about tail recursion, since we're not
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3097 going very deep */
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3098 return HASH2 (instantiator_eq_hash (XCAR (obj)),
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3099 instantiator_eq_hash (XCDR (obj)));
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3100 }
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3101 return LISP_HASH (obj);
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3102 }
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3103
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3104 /* We need a special hash table for storing image instances. */
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3105 Lisp_Object
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3106 make_image_instance_cache_hash_table (void)
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3107 {
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3108 return make_general_lisp_hash_table
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3109 (instantiator_eq_hash, instantiator_eq_equal,
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3110 30, -1.0, -1.0,
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3111 HASH_TABLE_KEY_CAR_VALUE_WEAK);
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3112 }
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3113
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3114 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3115 image_instantiate_cache_result (Lisp_Object locative)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3116 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3117 /* locative = (instance instantiator . subtable)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3118
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3119 So we are using the instantiator as the key and the instance as
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3120 the value. Since the hashtable is key-weak this means that the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3121 image instance will stay around as long as the instantiator stays
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3122 around. The instantiator is stored in the `image' slot of the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3123 glyph, so as long as the glyph is marked the instantiator will be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3124 as well and hence the cached image instance also.*/
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3125 Fputhash (XCAR (XCDR (locative)), XCAR (locative), XCDR (XCDR (locative)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3126 free_cons (XCONS (XCDR (locative)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3127 free_cons (XCONS (locative));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3128 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3129 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3130
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3131 /* Given a specification for an image, return an instance of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3132 the image which matches the given instantiator and which can be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3133 displayed in the given domain. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3134
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3135 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3136 image_instantiate (Lisp_Object specifier, Lisp_Object matchspec,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3137 Lisp_Object domain, Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3138 Lisp_Object depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3139 {
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3140 Lisp_Object glyph = IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3141 int dest_mask = XIMAGE_SPECIFIER_ALLOWED (specifier);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3142 int pointerp = dest_mask & image_instance_type_to_mask (IMAGE_POINTER);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3143
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3144 if (IMAGE_INSTANCEP (instantiator))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3145 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3146 /* make sure that the image instance's governing domain and type are
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3147 matching. */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3148 Lisp_Object governing_domain = XIMAGE_INSTANCE_DOMAIN (instantiator);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3149
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3150 if ((DEVICEP (governing_domain)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3151 && EQ (governing_domain, DOMAIN_DEVICE (domain)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3152 || (FRAMEP (governing_domain)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3153 && EQ (governing_domain, DOMAIN_FRAME (domain)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3154 || (WINDOWP (governing_domain)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3155 && EQ (governing_domain, DOMAIN_WINDOW (domain))))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3156 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3157 int mask =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3158 image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instantiator));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3159 if (mask & dest_mask)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3160 return instantiator;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3161 else
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3162 invalid_argument ("Type of image instance not allowed here",
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3163 instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3164 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3165 else
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3166 invalid_argument_2 ("Wrong domain for image instance",
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3167 instantiator, domain);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3168 }
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
3169 /* How ugly !! An image instanciator that uses a kludgy syntax to snarf in
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
3170 face properties. There's a design flaw here. -- didier */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3171 else if (VECTORP (instantiator)
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3172 && EQ (INSTANTIATOR_TYPE (instantiator), Qinherit))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3173 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3174 assert (XVECTOR_LENGTH (instantiator) == 3);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3175 return (FACE_PROPERTY_INSTANCE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3176 (Fget_face (XVECTOR_DATA (instantiator)[2]),
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
3177 Qbackground_pixmap, domain, 1, depth));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3178 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3179 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3180 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3181 Lisp_Object instance = Qnil;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3182 Lisp_Object subtable = Qnil;
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3183 /* #### Should this be GCPRO'd? */
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3184 Lisp_Object hash_key = Qnil;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3185 Lisp_Object pointer_fg = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3186 Lisp_Object pointer_bg = Qnil;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3187 Lisp_Object governing_domain =
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3188 get_image_instantiator_governing_domain (instantiator, domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3189 struct gcpro gcpro1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3190
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3191 GCPRO1 (instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3192
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3193 /* We have to put subwindow, widget and text image instances in
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3194 a per-window cache so that we can see the same glyph in
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3195 different windows. We use governing_domain to determine the type
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3196 of image_instance that will be created. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3197
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3198 if (pointerp)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3199 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3200 pointer_fg = FACE_FOREGROUND (Vpointer_face, domain);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3201 pointer_bg = FACE_BACKGROUND (Vpointer_face, domain);
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
3202 hash_key = list4 (glyph, INSTANTIATOR_TYPE (instantiator),
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3203 pointer_fg, pointer_bg);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3204 }
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3205 else
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3206 /* We cannot simply key on the glyph since fallbacks could use
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3207 the same glyph but have a totally different instantiator
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3208 type. Thus we key on the glyph and the type (but not any
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3209 other parts of the instantiator. */
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3210 hash_key = list2 (glyph, INSTANTIATOR_TYPE (instantiator));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3211
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3212 /* First look in the device cache. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3213 if (DEVICEP (governing_domain))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3214 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3215 subtable = Fgethash (make_int (dest_mask),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3216 XDEVICE (governing_domain)->
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3217 image_instance_cache,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3218 Qunbound);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3219 if (UNBOUNDP (subtable))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3220 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3221 /* For the image instance cache, we do comparisons with
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3222 EQ rather than with EQUAL, as we do for color and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3223 font names. The reasons are:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3224
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3225 1) pixmap data can be very long, and thus the hashing
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3226 and comparing will take awhile.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3227
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3228 2) It's not so likely that we'll run into things that
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3229 are EQUAL but not EQ (that can happen a lot with
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3230 faces, because their specifiers are copied around);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3231 but pixmaps tend not to be in faces.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3232
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3233 However, if the image-instance could be a pointer, we
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3234 have to use EQUAL because we massaged the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3235 instantiator into a cons3 also containing the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3236 foreground and background of the pointer face. */
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3237 subtable = make_image_instance_cache_hash_table ();
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3238
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3239 Fputhash (make_int (dest_mask), subtable,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3240 XDEVICE (governing_domain)->image_instance_cache);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3241 instance = Qunbound;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3242 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3243 else
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3244 {
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3245 instance = Fgethash (hash_key, subtable, Qunbound);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3246 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3247 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3248 else if (WINDOWP (governing_domain))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3249 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3250 /* Subwindows have a per-window cache and have to be treated
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3251 differently. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3252 instance =
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3253 Fgethash (hash_key,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3254 XWINDOW (governing_domain)->subwindow_instance_cache,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3255 Qunbound);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3256 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3257 else
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3258 abort (); /* We're not allowed anything else currently. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3259
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3260 /* If we don't have an instance at this point then create
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3261 one. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3262 if (UNBOUNDP (instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3263 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3264 Lisp_Object locative =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3265 noseeum_cons (Qnil,
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3266 noseeum_cons (hash_key,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3267 DEVICEP (governing_domain) ? subtable
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3268 : XWINDOW (governing_domain)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3269 ->subwindow_instance_cache));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3270 int speccount = specpdl_depth ();
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3271
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3272 /* Make sure we cache the failures, too. Use an
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3273 unwind-protect to catch such errors. If we fail, the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3274 unwind-protect records nil in the hash table. If we
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3275 succeed, we change the car of the locative to the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3276 resulting instance, which gets recorded instead. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3277 record_unwind_protect (image_instantiate_cache_result,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3278 locative);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3279 instance =
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3280 instantiate_image_instantiator (governing_domain,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3281 domain, instantiator,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3282 pointer_fg, pointer_bg,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3283 dest_mask, glyph);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3284
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3285 /* We need a per-frame cache for redisplay. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3286 cache_subwindow_instance_in_frame_maybe (instance);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3287
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3288 Fsetcar (locative, instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3289 #ifdef ERROR_CHECK_GLYPHS
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3290 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3291 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3292 assert (EQ (XIMAGE_INSTANCE_FRAME (instance),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3293 DOMAIN_FRAME (domain)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3294 #endif
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3295 unbind_to (speccount, Qnil);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3296 #ifdef ERROR_CHECK_GLYPHS
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3297 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3298 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3299 assert (EQ (Fgethash (hash_key,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3300 XWINDOW (governing_domain)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3301 ->subwindow_instance_cache,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3302 Qunbound), instance));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3303 #endif
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3304 }
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3305 else if (NILP (instance))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3306 gui_error ("Can't instantiate image (probably cached)", instantiator);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3307 /* We found an instance. However, because we are using the glyph
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3308 as the hash key instead of the instantiator, the current
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3309 instantiator may not be the same as the original. Thus we
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3310 must update the instance based on the new
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3311 instantiator. Preserving instance identity like this is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3312 important to stop excessive window system widget creation and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3313 deletion - and hence flashing. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3314 else
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3315 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3316 /* #### This function should be able to cope with *all*
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3317 changes to the instantiator, but currently only copes
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3318 with the most used properties. This means that it is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3319 possible to make changes that don't get reflected in the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3320 display. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3321 update_image_instance (instance, instantiator);
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
3322 free_list (hash_key);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3323 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3324
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3325 #ifdef ERROR_CHECK_GLYPHS
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3326 if (image_instance_type_to_mask (XIMAGE_INSTANCE_TYPE (instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3327 & (IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3328 assert (EQ (XIMAGE_INSTANCE_FRAME (instance),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3329 DOMAIN_FRAME (domain)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3330 #endif
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3331 ERROR_CHECK_IMAGE_INSTANCE (instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3332 RETURN_UNGCPRO (instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3333 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3334
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3335 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3336 return Qnil; /* not reached */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3337 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3338
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3339 /* Validate an image instantiator. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3340
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3341 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3342 image_validate (Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3343 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3344 if (IMAGE_INSTANCEP (instantiator) || STRINGP (instantiator))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3345 return;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3346 else if (VECTORP (instantiator))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3347 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3348 Lisp_Object *elt = XVECTOR_DATA (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3349 int instantiator_len = XVECTOR_LENGTH (instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3350 struct image_instantiator_methods *meths;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3351 Lisp_Object already_seen = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3352 struct gcpro gcpro1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3353 int i;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3354
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3355 if (instantiator_len < 1)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3356 sferror ("Vector length must be at least 1",
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3357 instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3358
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3359 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3360 if (!(instantiator_len & 1))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3361 sferror
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3362 ("Must have alternating keyword/value pairs", instantiator);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3363
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3364 GCPRO1 (already_seen);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3365
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3366 for (i = 1; i < instantiator_len; i += 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3367 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3368 Lisp_Object keyword = elt[i];
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3369 Lisp_Object value = elt[i+1];
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3370 int j;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3371
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3372 CHECK_SYMBOL (keyword);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3373 if (!SYMBOL_IS_KEYWORD (keyword))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3374 invalid_argument ("Symbol must begin with a colon", keyword);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3375
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3376 for (j = 0; j < Dynarr_length (meths->keywords); j++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3377 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3378 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3379
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3380 if (j == Dynarr_length (meths->keywords))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3381 invalid_argument ("Unrecognized keyword", keyword);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3382
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3383 if (!Dynarr_at (meths->keywords, j).multiple_p)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3384 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3385 if (!NILP (memq_no_quit (keyword, already_seen)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3386 sferror
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3387 ("Keyword may not appear more than once", keyword);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3388 already_seen = Fcons (keyword, already_seen);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3389 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3390
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3391 (Dynarr_at (meths->keywords, j).validate) (value);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3392 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3393
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3394 UNGCPRO;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3395
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3396 MAYBE_IIFORMAT_METH (meths, validate, (instantiator));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3397 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3398 else
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3399 invalid_argument ("Must be string or vector", instantiator);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3400 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3401
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3402 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3403 image_after_change (Lisp_Object specifier, Lisp_Object locale)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3404 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3405 Lisp_Object attachee =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3406 IMAGE_SPECIFIER_ATTACHEE (XIMAGE_SPECIFIER (specifier));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3407 Lisp_Object property =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3408 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (XIMAGE_SPECIFIER (specifier));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3409 if (FACEP (attachee))
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 444
diff changeset
3410 {
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 444
diff changeset
3411 face_property_was_changed (attachee, property, locale);
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 444
diff changeset
3412 if (BUFFERP (locale))
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 444
diff changeset
3413 XBUFFER (locale)->buffer_local_face_property = 1;
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 444
diff changeset
3414 }
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3415 else if (GLYPHP (attachee))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3416 glyph_property_was_changed (attachee, property, locale);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3417 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3418
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3419 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3420 set_image_attached_to (Lisp_Object obj, Lisp_Object face_or_glyph,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3421 Lisp_Object property)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3422 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3423 Lisp_Specifier *image = XIMAGE_SPECIFIER (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3424
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3425 IMAGE_SPECIFIER_ATTACHEE (image) = face_or_glyph;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3426 IMAGE_SPECIFIER_ATTACHEE_PROPERTY (image) = property;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3427 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3429 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3430 image_going_to_add (Lisp_Object specifier, Lisp_Object locale,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3431 Lisp_Object tag_set, Lisp_Object instantiator)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3432 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3433 Lisp_Object possible_console_types = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3434 Lisp_Object rest;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3435 Lisp_Object retlist = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3436 struct gcpro gcpro1, gcpro2;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3437
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3438 LIST_LOOP (rest, Vconsole_type_list)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3439 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3440 Lisp_Object contype = XCAR (rest);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3441 if (!NILP (memq_no_quit (contype, tag_set)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3442 possible_console_types = Fcons (contype, possible_console_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3443 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3444
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3445 if (XINT (Flength (possible_console_types)) > 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3446 /* two conflicting console types specified */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3447 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3448
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3449 if (NILP (possible_console_types))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3450 possible_console_types = Vconsole_type_list;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3451
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3452 GCPRO2 (retlist, possible_console_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3453
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3454 LIST_LOOP (rest, possible_console_types)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3455 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3456 Lisp_Object contype = XCAR (rest);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3457 Lisp_Object newinst = call_with_suspended_errors
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3458 ((lisp_fn_t) normalize_image_instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3459 Qnil, Qimage, ERROR_ME_NOT, 3, instantiator, contype,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3460 make_int (XIMAGE_SPECIFIER_ALLOWED (specifier)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3461
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3462 if (!NILP (newinst))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3463 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3464 Lisp_Object newtag;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3465 if (NILP (memq_no_quit (contype, tag_set)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3466 newtag = Fcons (contype, tag_set);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3467 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3468 newtag = tag_set;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3469 retlist = Fcons (Fcons (newtag, newinst), retlist);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3470 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3471 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3472
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3473 UNGCPRO;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3474
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3475 return retlist;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3476 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3477
434
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3478 /* Copy an image instantiator. We can't use Fcopy_tree since widgets
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3479 may contain circular references which would send Fcopy_tree into
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3480 infloop death. */
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3481 static Lisp_Object
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3482 image_copy_vector_instantiator (Lisp_Object instantiator)
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3483 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3484 int i;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3485 struct image_instantiator_methods *meths;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3486 Lisp_Object *elt;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3487 int instantiator_len;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3488
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3489 CHECK_VECTOR (instantiator);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3490
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3491 instantiator = Fcopy_sequence (instantiator);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3492 elt = XVECTOR_DATA (instantiator);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3493 instantiator_len = XVECTOR_LENGTH (instantiator);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3494
434
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3495 meths = decode_image_instantiator_format (elt[0], ERROR_ME);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3496
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3497 for (i = 1; i < instantiator_len; i += 2)
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3498 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3499 int j;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3500 Lisp_Object keyword = elt[i];
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3501 Lisp_Object value = elt[i+1];
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3502
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3503 /* Find the keyword entry. */
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3504 for (j = 0; j < Dynarr_length (meths->keywords); j++)
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3505 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3506 if (EQ (keyword, Dynarr_at (meths->keywords, j).keyword))
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3507 break;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3508 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3509
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3510 /* Only copy keyword values that should be copied. */
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3511 if (Dynarr_at (meths->keywords, j).copy_p
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3512 &&
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3513 (CONSP (value) || VECTORP (value)))
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3514 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3515 elt [i+1] = Fcopy_tree (value, Qt);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3516 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3517 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3518
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3519 return instantiator;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3520 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3521
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3522 static Lisp_Object
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3523 image_copy_instantiator (Lisp_Object arg)
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3524 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3525 if (CONSP (arg))
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3526 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3527 Lisp_Object rest;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3528 rest = arg = Fcopy_sequence (arg);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3529 while (CONSP (rest))
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3530 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3531 Lisp_Object elt = XCAR (rest);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3532 if (CONSP (elt))
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3533 XCAR (rest) = Fcopy_tree (elt, Qt);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3534 else if (VECTORP (elt))
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3535 XCAR (rest) = image_copy_vector_instantiator (elt);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3536 if (VECTORP (XCDR (rest))) /* hack for (a b . [c d]) */
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3537 XCDR (rest) = Fcopy_tree (XCDR (rest), Qt);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3538 rest = XCDR (rest);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3539 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3540 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3541 else if (VECTORP (arg))
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3542 {
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3543 arg = image_copy_vector_instantiator (arg);
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3544 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3545 return arg;
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3546 }
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
3547
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3548 DEFUN ("image-specifier-p", Fimage_specifier_p, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3549 Return non-nil if OBJECT is an image specifier.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3550 See `make-image-specifier' for a description of image instantiators.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3551 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3552 (object))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3553 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3554 return IMAGE_SPECIFIERP (object) ? Qt : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3555 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3556
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3557
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3558 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3559 * Glyph Object *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3560 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3561
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3562 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3563 mark_glyph (Lisp_Object obj)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3564 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3565 Lisp_Glyph *glyph = XGLYPH (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3566
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3567 mark_object (glyph->image);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3568 mark_object (glyph->contrib_p);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3569 mark_object (glyph->baseline);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3570 mark_object (glyph->face);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3571
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3572 return glyph->plist;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3573 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3574
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3575 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3576 print_glyph (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3577 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3578 Lisp_Glyph *glyph = XGLYPH (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3579 char buf[20];
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3580
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3581 if (print_readably)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3582 printing_unreadable_object ("#<glyph 0x%x>", glyph->header.uid);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3583
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3584 write_c_string ("#<glyph (", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3585 print_internal (Fglyph_type (obj), printcharfun, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3586 write_c_string (") ", printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3587 print_internal (glyph->image, printcharfun, 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3588 sprintf (buf, "0x%x>", glyph->header.uid);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3589 write_c_string (buf, printcharfun);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3590 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3591
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3592 /* Glyphs are equal if all of their display attributes are equal. We
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3593 don't compare names or doc-strings, because that would make equal
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3594 be eq.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3595
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3596 This isn't concerned with "unspecified" attributes, that's what
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3597 #'glyph-differs-from-default-p is for. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3598 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3599 glyph_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3600 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3601 Lisp_Glyph *g1 = XGLYPH (obj1);
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3602 Lisp_Glyph *g2 = XGLYPH (obj2);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3603
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3604 depth++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3605
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3606 return (internal_equal (g1->image, g2->image, depth) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3607 internal_equal (g1->contrib_p, g2->contrib_p, depth) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3608 internal_equal (g1->baseline, g2->baseline, depth) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3609 internal_equal (g1->face, g2->face, depth) &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3610 !plists_differ (g1->plist, g2->plist, 0, 0, depth + 1));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3611 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3612
665
fdefd0186b75 [xemacs-hg @ 2001-09-20 06:28:42 by ben]
ben
parents: 647
diff changeset
3613 static Hashcode
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3614 glyph_hash (Lisp_Object obj, int depth)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3615 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3616 depth++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3617
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3618 /* No need to hash all of the elements; that would take too long.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3619 Just hash the most common ones. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3620 return HASH2 (internal_hash (XGLYPH (obj)->image, depth),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3621 internal_hash (XGLYPH (obj)->face, depth));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3622 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3623
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3624 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3625 glyph_getprop (Lisp_Object obj, Lisp_Object prop)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3626 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3627 Lisp_Glyph *g = XGLYPH (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3628
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3629 if (EQ (prop, Qimage)) return g->image;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3630 if (EQ (prop, Qcontrib_p)) return g->contrib_p;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3631 if (EQ (prop, Qbaseline)) return g->baseline;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3632 if (EQ (prop, Qface)) return g->face;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3633
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3634 return external_plist_get (&g->plist, prop, 0, ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3635 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3636
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3637 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3638 glyph_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3639 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3640 if (EQ (prop, Qimage) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3641 EQ (prop, Qcontrib_p) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3642 EQ (prop, Qbaseline))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3643 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3644
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3645 if (EQ (prop, Qface))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3646 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3647 XGLYPH (obj)->face = Fget_face (value);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3648 return 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3649 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3650
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3651 external_plist_put (&XGLYPH (obj)->plist, prop, value, 0, ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3652 return 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3653 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3654
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3655 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3656 glyph_remprop (Lisp_Object obj, Lisp_Object prop)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3657 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3658 if (EQ (prop, Qimage) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3659 EQ (prop, Qcontrib_p) ||
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3660 EQ (prop, Qbaseline))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3661 return -1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3662
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3663 if (EQ (prop, Qface))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3664 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3665 XGLYPH (obj)->face = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3666 return 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3667 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3668
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3669 return external_remprop (&XGLYPH (obj)->plist, prop, 0, ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3670 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3671
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3672 static Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3673 glyph_plist (Lisp_Object obj)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3674 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3675 Lisp_Glyph *glyph = XGLYPH (obj);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3676 Lisp_Object result = glyph->plist;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3677
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3678 result = cons3 (Qface, glyph->face, result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3679 result = cons3 (Qbaseline, glyph->baseline, result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3680 result = cons3 (Qcontrib_p, glyph->contrib_p, result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3681 result = cons3 (Qimage, glyph->image, result);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3682
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3683 return result;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3684 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3685
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3686 static const struct lrecord_description glyph_description[] = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3687 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, image) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3688 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, contrib_p) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3689 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, baseline) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3690 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, face) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3691 { XD_LISP_OBJECT, offsetof (Lisp_Glyph, plist) },
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3692 { XD_END }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3693 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3694
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3695 DEFINE_LRECORD_IMPLEMENTATION_WITH_PROPS ("glyph", glyph,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3696 mark_glyph, print_glyph, 0,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3697 glyph_equal, glyph_hash, glyph_description,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3698 glyph_getprop, glyph_putprop,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3699 glyph_remprop, glyph_plist,
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3700 Lisp_Glyph);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3701
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3702 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3703 allocate_glyph (enum glyph_type type,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3704 void (*after_change) (Lisp_Object glyph, Lisp_Object property,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3705 Lisp_Object locale))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3706 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3707 /* This function can GC */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3708 Lisp_Object obj = Qnil;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3709 Lisp_Glyph *g = alloc_lcrecord_type (Lisp_Glyph, &lrecord_glyph);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3710
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3711 g->type = type;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3712 g->image = Fmake_specifier (Qimage); /* This function can GC */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3713 g->dirty = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3714 switch (g->type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3715 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3716 case GLYPH_BUFFER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3717 XIMAGE_SPECIFIER_ALLOWED (g->image) =
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3718 IMAGE_NOTHING_MASK | IMAGE_TEXT_MASK
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3719 | IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3720 | IMAGE_SUBWINDOW_MASK | IMAGE_WIDGET_MASK;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3721 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3722 case GLYPH_POINTER:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3723 XIMAGE_SPECIFIER_ALLOWED (g->image) =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3724 IMAGE_NOTHING_MASK | IMAGE_POINTER_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3725 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3726 case GLYPH_ICON:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3727 XIMAGE_SPECIFIER_ALLOWED (g->image) =
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3728 IMAGE_NOTHING_MASK | IMAGE_MONO_PIXMAP_MASK
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3729 | IMAGE_COLOR_PIXMAP_MASK;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3730 break;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3731 default:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3732 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3733 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3734
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3735 /* I think Fmake_specifier can GC. I think set_specifier_fallback can GC. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3736 /* We're getting enough reports of odd behavior in this area it seems */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3737 /* best to GCPRO everything. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3738 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3739 Lisp_Object tem1 = list1 (Fcons (Qnil, Vthe_nothing_vector));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3740 Lisp_Object tem2 = list1 (Fcons (Qnil, Qt));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3741 Lisp_Object tem3 = list1 (Fcons (Qnil, Qnil));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3742 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3743
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3744 GCPRO4 (obj, tem1, tem2, tem3);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3745
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3746 set_specifier_fallback (g->image, tem1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3747 g->contrib_p = Fmake_specifier (Qboolean);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3748 set_specifier_fallback (g->contrib_p, tem2);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3749 /* #### should have a specifier for the following */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3750 g->baseline = Fmake_specifier (Qgeneric);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3751 set_specifier_fallback (g->baseline, tem3);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3752 g->face = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3753 g->plist = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3754 g->after_change = after_change;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3755 XSETGLYPH (obj, g);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3756
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3757 set_image_attached_to (g->image, obj, Qimage);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3758 UNGCPRO;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3759 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3760
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3761 return obj;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3762 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3763
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3764 static enum glyph_type
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
3765 decode_glyph_type (Lisp_Object type, Error_Behavior errb)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3766 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3767 if (NILP (type))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3768 return GLYPH_BUFFER;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3769
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3770 if (ERRB_EQ (errb, ERROR_ME))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3771 CHECK_SYMBOL (type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3772
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3773 if (EQ (type, Qbuffer)) return GLYPH_BUFFER;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3774 if (EQ (type, Qpointer)) return GLYPH_POINTER;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3775 if (EQ (type, Qicon)) return GLYPH_ICON;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3776
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
3777 maybe_invalid_constant ("Invalid glyph type", type, Qimage, errb);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3778
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3779 return GLYPH_UNKNOWN;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3780 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3781
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3782 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3783 valid_glyph_type_p (Lisp_Object type)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3784 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3785 return !NILP (memq_no_quit (type, Vglyph_type_list));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3786 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3787
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3788 DEFUN ("valid-glyph-type-p", Fvalid_glyph_type_p, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3789 Given a GLYPH-TYPE, return non-nil if it is valid.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3790 Valid types are `buffer', `pointer', and `icon'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3791 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3792 (glyph_type))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3793 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3794 return valid_glyph_type_p (glyph_type) ? Qt : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3795 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3796
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3797 DEFUN ("glyph-type-list", Fglyph_type_list, 0, 0, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3798 Return a list of valid glyph types.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3799 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3800 ())
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3801 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3802 return Fcopy_sequence (Vglyph_type_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3803 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3804
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3805 DEFUN ("make-glyph-internal", Fmake_glyph_internal, 0, 1, 0, /*
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3806 Create and return a new uninitialized glyph of type TYPE.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3807
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3808 TYPE specifies the type of the glyph; this should be one of `buffer',
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3809 `pointer', or `icon', and defaults to `buffer'. The type of the glyph
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3810 specifies in which contexts the glyph can be used, and controls the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3811 allowable image types into which the glyph's image can be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3812 instantiated.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3813
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3814 `buffer' glyphs can be used as the begin-glyph or end-glyph of an
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3815 extent, in the modeline, and in the toolbar. Their image can be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3816 instantiated as `nothing', `mono-pixmap', `color-pixmap', `text',
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3817 and `subwindow'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3818
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3819 `pointer' glyphs can be used to specify the mouse pointer. Their
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3820 image can be instantiated as `pointer'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3821
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3822 `icon' glyphs can be used to specify the icon used when a frame is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3823 iconified. Their image can be instantiated as `mono-pixmap' and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3824 `color-pixmap'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3825 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3826 (type))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3827 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3828 enum glyph_type typeval = decode_glyph_type (type, ERROR_ME);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3829 return allocate_glyph (typeval, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3830 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3831
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3832 DEFUN ("glyphp", Fglyphp, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3833 Return non-nil if OBJECT is a glyph.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3834
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3835 A glyph is an object used for pixmaps, widgets and the like. It is used
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3836 in begin-glyphs and end-glyphs attached to extents, in marginal and textual
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3837 annotations, in overlay arrows (overlay-arrow-* variables), in toolbar
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3838 buttons, and the like. Much more detailed information can be found at
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3839 `make-glyph'. Its image is described using an image specifier --
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3840 see `make-image-specifier'. See also `make-image-instance' for further
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3841 information.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3842 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3843 (object))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3844 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3845 return GLYPHP (object) ? Qt : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3846 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3847
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3848 DEFUN ("glyph-type", Fglyph_type, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3849 Return the type of the given glyph.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3850 The return value will be one of 'buffer, 'pointer, or 'icon.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3851 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3852 (glyph))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3853 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3854 CHECK_GLYPH (glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3855 switch (XGLYPH_TYPE (glyph))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3856 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3857 default: abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3858 case GLYPH_BUFFER: return Qbuffer;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3859 case GLYPH_POINTER: return Qpointer;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3860 case GLYPH_ICON: return Qicon;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3861 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3862 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3863
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3864 Lisp_Object
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3865 glyph_image_instance (Lisp_Object glyph, Lisp_Object domain,
578
190b164ddcac [xemacs-hg @ 2001-05-25 11:26:50 by ben]
ben
parents: 563
diff changeset
3866 Error_Behavior errb, int no_quit)
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3867 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3868 Lisp_Object specifier = GLYPH_IMAGE (XGLYPH (glyph));
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3869
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3870 /* This can never return Qunbound. All glyphs have 'nothing as
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3871 a fallback. */
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3872 Lisp_Object image_instance = specifier_instance (specifier, Qunbound,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3873 domain, errb, no_quit, 0,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3874 Qzero);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3875 assert (!UNBOUNDP (image_instance));
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3876 ERROR_CHECK_IMAGE_INSTANCE (image_instance);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3877
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3878 return image_instance;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3879 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3880
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3881 static Lisp_Object
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3882 glyph_image_instance_maybe (Lisp_Object glyph_or_image, Lisp_Object window)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3883 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3884 Lisp_Object instance = glyph_or_image;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3885
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3886 if (GLYPHP (glyph_or_image))
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3887 instance = glyph_image_instance (glyph_or_image, window, ERROR_ME_NOT, 1);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3888
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3889 return instance;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3890 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3891
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3892 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3893 glyph_width
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3894
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3895 Return the width of the given GLYPH on the given WINDOW.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3896 Calculations are done based on recursively querying the geometry of
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3897 the associated image instances.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3898 ****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3899 unsigned short
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3900 glyph_width (Lisp_Object glyph_or_image, Lisp_Object domain)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3901 {
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3902 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3903 domain);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3904 if (!IMAGE_INSTANCEP (instance))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3905 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3906
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3907 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3908 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3909 IMAGE_UNSPECIFIED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3910 IMAGE_UNCHANGED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3911 IMAGE_UNCHANGED_GEOMETRY, domain);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3912
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3913 return XIMAGE_INSTANCE_WIDTH (instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3914 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3915
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3916 DEFUN ("glyph-width", Fglyph_width, 1, 2, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3917 Return the width of GLYPH on WINDOW.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3918 This may not be exact as it does not take into account all of the context
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3919 that redisplay will.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3920 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3921 (glyph, window))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3922 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3923 XSETWINDOW (window, decode_window (window));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3924 CHECK_GLYPH (glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3925
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3926 return make_int (glyph_width (glyph, window));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3927 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3928
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3929 unsigned short
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3930 glyph_ascent (Lisp_Object glyph_or_image, Lisp_Object domain)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3931 {
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3932 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3933 domain);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3934 if (!IMAGE_INSTANCEP (instance))
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3935 return 0;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3936
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3937 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3938 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3939 IMAGE_UNSPECIFIED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3940 IMAGE_UNCHANGED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3941 IMAGE_UNCHANGED_GEOMETRY, domain);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3942
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3943 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3944 return XIMAGE_INSTANCE_TEXT_ASCENT (instance);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3945 else
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3946 return XIMAGE_INSTANCE_HEIGHT (instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3947 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3948
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3949 unsigned short
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3950 glyph_descent (Lisp_Object glyph_or_image, Lisp_Object domain)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3951 {
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3952 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3953 domain);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3954 if (!IMAGE_INSTANCEP (instance))
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3955 return 0;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3956
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3957 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3958 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3959 IMAGE_UNSPECIFIED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3960 IMAGE_UNCHANGED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3961 IMAGE_UNCHANGED_GEOMETRY, domain);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3962
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3963 if (XIMAGE_INSTANCE_TYPE (instance) == IMAGE_TEXT)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3964 return XIMAGE_INSTANCE_TEXT_DESCENT (instance);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3965 else
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3966 return 0;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3967 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3968
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3969 /* strictly a convenience function. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3970 unsigned short
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3971 glyph_height (Lisp_Object glyph_or_image, Lisp_Object domain)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3972 {
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3973 Lisp_Object instance = glyph_image_instance_maybe (glyph_or_image,
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3974 domain);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
3975
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3976 if (!IMAGE_INSTANCEP (instance))
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3977 return 0;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3978
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3979 if (XIMAGE_INSTANCE_NEEDS_LAYOUT (instance))
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3980 image_instance_layout (instance, IMAGE_UNSPECIFIED_GEOMETRY,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3981 IMAGE_UNSPECIFIED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3982 IMAGE_UNCHANGED_GEOMETRY,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3983 IMAGE_UNCHANGED_GEOMETRY, domain);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3984
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3985 return XIMAGE_INSTANCE_HEIGHT (instance);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3986 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3987
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3988 DEFUN ("glyph-ascent", Fglyph_ascent, 1, 2, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3989 Return the ascent value of GLYPH on WINDOW.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3990 This may not be exact as it does not take into account all of the context
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3991 that redisplay will.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3992 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3993 (glyph, window))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3994 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3995 XSETWINDOW (window, decode_window (window));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3996 CHECK_GLYPH (glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3997
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
3998 return make_int (glyph_ascent (glyph, window));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3999 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4000
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4001 DEFUN ("glyph-descent", Fglyph_descent, 1, 2, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4002 Return the descent value of GLYPH on WINDOW.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4003 This may not be exact as it does not take into account all of the context
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4004 that redisplay will.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4005 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4006 (glyph, window))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4007 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4008 XSETWINDOW (window, decode_window (window));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4009 CHECK_GLYPH (glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4010
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4011 return make_int (glyph_descent (glyph, window));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4012 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4013
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4014 /* This is redundant but I bet a lot of people expect it to exist. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4015 DEFUN ("glyph-height", Fglyph_height, 1, 2, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4016 Return the height of GLYPH on WINDOW.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4017 This may not be exact as it does not take into account all of the context
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4018 that redisplay will.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4019 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4020 (glyph, window))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4021 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4022 XSETWINDOW (window, decode_window (window));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4023 CHECK_GLYPH (glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4024
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4025 return make_int (glyph_height (glyph, window));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4026 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4027
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4028 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4029 set_glyph_dirty_p (Lisp_Object glyph_or_image, Lisp_Object window, int dirty)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4030 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4031 Lisp_Object instance = glyph_or_image;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4032
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4033 if (!NILP (glyph_or_image))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4034 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4035 if (GLYPHP (glyph_or_image))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4036 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4037 instance = glyph_image_instance (glyph_or_image, window,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4038 ERROR_ME_NOT, 1);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4039 XGLYPH_DIRTYP (glyph_or_image) = dirty;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4040 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4041
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4042 if (!IMAGE_INSTANCEP (instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4043 return;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4044
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4045 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4046 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4047 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4048
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4049 static void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4050 set_image_instance_dirty_p (Lisp_Object instance, int dirty)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4051 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4052 if (IMAGE_INSTANCEP (instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4053 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4054 XIMAGE_INSTANCE_DIRTYP (instance) = dirty;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4055 /* Now cascade up the hierarchy. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4056 set_image_instance_dirty_p (XIMAGE_INSTANCE_PARENT (instance),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4057 dirty);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4058 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4059 else if (GLYPHP (instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4060 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4061 XGLYPH_DIRTYP (instance) = dirty;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4062 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4063 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4064
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4065 /* #### do we need to cache this info to speed things up? */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4066
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4067 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4068 glyph_baseline (Lisp_Object glyph, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4069 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4070 if (!GLYPHP (glyph))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4071 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4072 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4073 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4074 Lisp_Object retval =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4075 specifier_instance_no_quit (GLYPH_BASELINE (XGLYPH (glyph)),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4076 /* #### look into ERROR_ME_NOT */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4077 Qunbound, domain, ERROR_ME_NOT,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4078 0, Qzero);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4079 if (!NILP (retval) && !INTP (retval))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4080 retval = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4081 else if (INTP (retval))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4082 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4083 if (XINT (retval) < 0)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4084 retval = Qzero;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4085 if (XINT (retval) > 100)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4086 retval = make_int (100);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4087 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4088 return retval;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4089 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4090 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4091
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4092 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4093 glyph_face (Lisp_Object glyph, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4094 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4095 /* #### Domain parameter not currently used but it will be */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4096 return GLYPHP (glyph) ? GLYPH_FACE (XGLYPH (glyph)) : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4097 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4098
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4099 int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4100 glyph_contrib_p (Lisp_Object glyph, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4101 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4102 if (!GLYPHP (glyph))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4103 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4104 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4105 return !NILP (specifier_instance_no_quit
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4106 (GLYPH_CONTRIB_P (XGLYPH (glyph)), Qunbound, domain,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4107 /* #### look into ERROR_ME_NOT */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4108 ERROR_ME_NOT, 0, Qzero));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4109 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4110
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4111 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4112 glyph_property_was_changed (Lisp_Object glyph, Lisp_Object property,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4113 Lisp_Object locale)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4114 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4115 if (XGLYPH (glyph)->after_change)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4116 (XGLYPH (glyph)->after_change) (glyph, property, locale);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4117 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4118
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4119 void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4120 glyph_query_geometry (Lisp_Object glyph_or_image, int* width, int* height,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4121 enum image_instance_geometry disp, Lisp_Object domain)
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4122 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4123 Lisp_Object instance = glyph_or_image;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4124
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4125 if (GLYPHP (glyph_or_image))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4126 instance = glyph_image_instance (glyph_or_image, domain, ERROR_ME_NOT, 1);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4127
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4128 image_instance_query_geometry (instance, width, height, disp, domain);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4129 }
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4130
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4131 void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4132 glyph_do_layout (Lisp_Object glyph_or_image, int width, int height,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4133 int xoffset, int yoffset, Lisp_Object domain)
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4134 {
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4135 Lisp_Object instance = glyph_or_image;
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4136
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4137 if (GLYPHP (glyph_or_image))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4138 instance = glyph_image_instance (glyph_or_image, domain, ERROR_ME_NOT, 1);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4139
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4140 image_instance_layout (instance, width, height, xoffset, yoffset, domain);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4141 }
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4142
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4143
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4144 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4145 * glyph cachel functions *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4146 *****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4147
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4148 /* #### All of this is 95% copied from face cachels. Consider
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4149 consolidating.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4150
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4151 Why do we need glyph_cachels? Simply because a glyph_cachel captures
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4152 per-window information about a particular glyph. A glyph itself is
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4153 not created in any particular context, so if we were to rely on a
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4154 glyph to tell us about its dirtiness we would not be able to reset
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4155 the dirty flag after redisplaying it as it may exist in other
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4156 contexts. When we have redisplayed we need to know which glyphs to
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4157 reset the dirty flags on - the glyph_cachels give us a nice list we
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4158 can iterate through doing this. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4159 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4160 mark_glyph_cachels (glyph_cachel_dynarr *elements)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4161 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4162 int elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4163
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4164 if (!elements)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4165 return;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4166
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4167 for (elt = 0; elt < Dynarr_length (elements); elt++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4168 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4169 struct glyph_cachel *cachel = Dynarr_atp (elements, elt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4170 mark_object (cachel->glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4171 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4172 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4173
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4174 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4175 update_glyph_cachel_data (struct window *w, Lisp_Object glyph,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4176 struct glyph_cachel *cachel)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4177 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4178 if (!cachel->updated || NILP (cachel->glyph) || !EQ (cachel->glyph, glyph)
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4179 || XGLYPH_DIRTYP (cachel->glyph)
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4180 || XFRAME(WINDOW_FRAME(w))->faces_changed)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4181 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4182 Lisp_Object window, instance;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4183
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4184 XSETWINDOW (window, w);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4185
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4186 cachel->glyph = glyph;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4187 /* Speed things up slightly by grabbing the glyph instantiation
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4188 and passing it to the size functions. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4189 instance = glyph_image_instance (glyph, window, ERROR_ME_NOT, 1);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4190
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4191 if (!IMAGE_INSTANCEP (instance))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4192 return;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4193
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4194 /* Mark text instance of the glyph dirty if faces have changed,
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4195 because its geometry might have changed. */
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4196 invalidate_glyph_geometry_maybe (instance, w);
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4197
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4198 /* #### Do the following 2 lines buy us anything? --kkm */
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4199 XGLYPH_DIRTYP (glyph) = XIMAGE_INSTANCE_DIRTYP (instance);
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4200 cachel->dirty = XGLYPH_DIRTYP (glyph);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4201 cachel->width = glyph_width (instance, window);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4202 cachel->ascent = glyph_ascent (instance, window);
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4203 cachel->descent = glyph_descent (instance, window);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4204 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4205
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4206 cachel->updated = 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4207 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4208
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4209 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4210 add_glyph_cachel (struct window *w, Lisp_Object glyph)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4211 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4212 struct glyph_cachel new_cachel;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4213
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4214 xzero (new_cachel);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4215 new_cachel.glyph = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4216
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4217 update_glyph_cachel_data (w, glyph, &new_cachel);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4218 Dynarr_add (w->glyph_cachels, new_cachel);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4219 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4220
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4221 glyph_index
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4222 get_glyph_cachel_index (struct window *w, Lisp_Object glyph)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4223 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4224 int elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4225
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4226 if (noninteractive)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4227 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4228
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4229 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4230 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4231 struct glyph_cachel *cachel =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4232 Dynarr_atp (w->glyph_cachels, elt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4233
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4234 if (EQ (cachel->glyph, glyph) && !NILP (glyph))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4235 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4236 update_glyph_cachel_data (w, glyph, cachel);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4237 return elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4238 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4239 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4240
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4241 /* If we didn't find the glyph, add it and then return its index. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4242 add_glyph_cachel (w, glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4243 return elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4244 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4245
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4246 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4247 reset_glyph_cachels (struct window *w)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4248 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4249 Dynarr_reset (w->glyph_cachels);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4250 get_glyph_cachel_index (w, Vcontinuation_glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4251 get_glyph_cachel_index (w, Vtruncation_glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4252 get_glyph_cachel_index (w, Vhscroll_glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4253 get_glyph_cachel_index (w, Vcontrol_arrow_glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4254 get_glyph_cachel_index (w, Voctal_escape_glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4255 get_glyph_cachel_index (w, Vinvisible_text_glyph);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4256 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4257
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4258 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4259 mark_glyph_cachels_as_not_updated (struct window *w)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4260 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4261 int elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4262
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4263 /* We need to have a dirty flag to tell if the glyph has changed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4264 We can check to see if each glyph variable is actually a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4265 completely different glyph, though. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4266 #define FROB(glyph_obj, gindex) \
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4267 update_glyph_cachel_data (w, glyph_obj, \
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4268 Dynarr_atp (w->glyph_cachels, gindex))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4269
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4270 FROB (Vcontinuation_glyph, CONT_GLYPH_INDEX);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4271 FROB (Vtruncation_glyph, TRUN_GLYPH_INDEX);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4272 FROB (Vhscroll_glyph, HSCROLL_GLYPH_INDEX);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4273 FROB (Vcontrol_arrow_glyph, CONTROL_GLYPH_INDEX);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4274 FROB (Voctal_escape_glyph, OCT_ESC_GLYPH_INDEX);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4275 FROB (Vinvisible_text_glyph, INVIS_GLYPH_INDEX);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4276 #undef FROB
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4277
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4278 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4279 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4280 Dynarr_atp (w->glyph_cachels, elt)->updated = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4281 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4282 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4283
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4284 /* Unset the dirty bit on all the glyph cachels that have it. */
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4285 void
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4286 mark_glyph_cachels_as_clean (struct window* w)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4287 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4288 int elt;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4289 Lisp_Object window;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4290 XSETWINDOW (window, w);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4291 for (elt = 0; elt < Dynarr_length (w->glyph_cachels); elt++)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4292 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4293 struct glyph_cachel *cachel = Dynarr_atp (w->glyph_cachels, elt);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4294 cachel->dirty = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4295 set_glyph_dirty_p (cachel->glyph, window, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4296 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4297 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4298
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4299 #ifdef MEMORY_USAGE_STATS
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4300
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4301 int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4302 compute_glyph_cachel_usage (glyph_cachel_dynarr *glyph_cachels,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4303 struct overhead_stats *ovstats)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4304 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4305 int total = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4306
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4307 if (glyph_cachels)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4308 total += Dynarr_memory_usage (glyph_cachels, ovstats);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4309
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4310 return total;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4311 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4312
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4313 #endif /* MEMORY_USAGE_STATS */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4314
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4315
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4316
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4317 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4318 * subwindow cachel functions *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4319 *****************************************************************************/
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4320 /* Subwindows are curious in that you have to physically unmap them to
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4321 not display them. It is problematic deciding what to do in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4322 redisplay. We have two caches - a per-window instance cache that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4323 keeps track of subwindows on a window, these are linked to their
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4324 instantiator in the hashtable and when the instantiator goes away
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4325 we want the instance to go away also. However we also have a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4326 per-frame instance cache that we use to determine if a subwindow is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4327 obscuring an area that we want to clear. We need to be able to flip
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4328 through this quickly so a hashtable is not suitable hence the
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4329 subwindow_cachels. This is a weak list so unreference instances
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4330 will get deleted properly. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4331
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4332 /* redisplay in general assumes that drawing something will erase
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4333 what was there before. unfortunately this does not apply to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4334 subwindows that need to be specifically unmapped in order to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4335 disappear. we take a brute force approach - on the basis that its
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4336 cheap - and unmap all subwindows in a display line */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4337
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4338 /* Put new instances in the frame subwindow cache. This is less costly than
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4339 doing it every time something gets mapped, and deleted instances will be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4340 removed automatically. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4341 static void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4342 cache_subwindow_instance_in_frame_maybe (Lisp_Object instance)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4343 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4344 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4345 if (!NILP (DOMAIN_FRAME (IMAGE_INSTANCE_DOMAIN (ii))))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4346 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4347 struct frame* f = DOMAIN_XFRAME (IMAGE_INSTANCE_DOMAIN (ii));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4348 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4349 = Fcons (instance, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4350 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4351 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4352
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4353 /* Unmap and finalize all subwindow instances in the frame cache. This
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4354 is necessary because GC will not guarantee the order things get
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4355 deleted in and moreover, frame finalization deletes the window
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4356 system windows before deleting XEmacs windows, and hence
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4357 subwindows. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4358 int
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4359 unmap_subwindow_instance_cache_mapper (Lisp_Object key, Lisp_Object value,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4360 void* finalize)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4361 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4362 /* value can be nil; we cache failures as well as successes */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4363 if (!NILP (value))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4364 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4365 struct frame* f = XFRAME (XIMAGE_INSTANCE_FRAME (value));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4366 unmap_subwindow (value);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4367 if (finalize)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4368 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4369 /* In case GC doesn't catch up fast enough, remove from the frame
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4370 cache also. Otherwise code that checks the sanity of the instance
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4371 will fail. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4372 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4373 = delq_no_quit (value,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4374 XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4375 finalize_image_instance (XIMAGE_INSTANCE (value), 0);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4376 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4377 }
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4378 return 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4379 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4380
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4381 static void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4382 finalize_all_subwindow_instances (struct window *w)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4383 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4384 if (!NILP (w->next)) finalize_all_subwindow_instances (XWINDOW (w->next));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4385 if (!NILP (w->vchild)) finalize_all_subwindow_instances (XWINDOW (w->vchild));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4386 if (!NILP (w->hchild)) finalize_all_subwindow_instances (XWINDOW (w->hchild));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4387
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4388 elisp_maphash (unmap_subwindow_instance_cache_mapper,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4389 w->subwindow_instance_cache, (void*)1);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4390 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4391
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4392 void
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4393 free_frame_subwindow_instances (struct frame* f)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4394 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4395 /* Make sure all instances are finalized. We have to do this via the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4396 instance cache since some instances may be extant but not
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4397 displayed (and hence not in the frame cache). */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4398 finalize_all_subwindow_instances (XWINDOW (f->root_window));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4399 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4400
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4401 /* Unmap all instances in the frame cache. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4402 void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4403 reset_frame_subwindow_instance_cache (struct frame* f)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4404 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4405 Lisp_Object rest;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4406
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4407 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4408 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4409 Lisp_Object value = XCAR (rest);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4410 unmap_subwindow (value);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4411 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4412 }
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4413
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4414 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4415 * subwindow exposure ignorance *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4416 *****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4417 /* when we unmap subwindows the associated window system will generate
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4418 expose events. This we do not want as redisplay already copes with
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4419 the repainting necessary. Worse, we can get in an endless cycle of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4420 redisplay if we are not careful. Thus we keep a per-frame list of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4421 expose events that are going to come and ignore them as
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4422 required. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4423
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4424 struct expose_ignore_blocktype
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4425 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4426 Blocktype_declare (struct expose_ignore);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4427 } *the_expose_ignore_blocktype;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4429 int
647
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
4430 check_for_ignored_expose (struct frame* f, int x, int y, int width, int height)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4431 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4432 struct expose_ignore *ei, *prev;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4433 /* the ignore list is FIFO so we should generally get a match with
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4434 the first element in the list */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4435 for (ei = f->subwindow_exposures, prev = 0; ei; ei = ei->next)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4436 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4437 /* Checking for exact matches just isn't good enough as we
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4438 might get exposures for partially obscured subwindows, thus
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4439 we have to check for overlaps. Being conservative, we will
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4440 check for exposures wholly contained by the subwindow - this
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4441 might give us what we want.*/
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4442 if (ei->x <= x && ei->y <= y
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4443 && ei->x + ei->width >= x + width
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4444 && ei->y + ei->height >= y + height)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4445 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4446 #ifdef DEBUG_WIDGETS
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4447 stderr_out ("ignored %d+%d, %dx%d for exposure %d+%d, %dx%d\n",
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4448 x, y, width, height, ei->x, ei->y, ei->width, ei->height);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4449 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4450 if (!prev)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4451 f->subwindow_exposures = ei->next;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4452 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4453 prev->next = ei->next;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4454
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4455 if (ei == f->subwindow_exposures_tail)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4456 f->subwindow_exposures_tail = prev;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4457
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4458 Blocktype_free (the_expose_ignore_blocktype, ei);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4459 return 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4460 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4461 prev = ei;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4462 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4463 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4464 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4465
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4466 static void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4467 register_ignored_expose (struct frame* f, int x, int y, int width, int height)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4468 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4469 if (!hold_ignored_expose_registration)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4470 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4471 struct expose_ignore *ei;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4472
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4473 ei = Blocktype_alloc (the_expose_ignore_blocktype);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4474
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4475 ei->next = NULL;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4476 ei->x = x;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4477 ei->y = y;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4478 ei->width = width;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4479 ei->height = height;
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4480
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4481 /* we have to add the exposure to the end of the list, since we
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4482 want to check the oldest events first. for speed we keep a record
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4483 of the end so that we can add right to it. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4484 if (f->subwindow_exposures_tail)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4485 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4486 f->subwindow_exposures_tail->next = ei;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4487 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4488 if (!f->subwindow_exposures)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4489 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4490 f->subwindow_exposures = ei;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4491 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4492 f->subwindow_exposures_tail = ei;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4493 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4494 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4495
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4496 /****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4497 find_matching_subwindow
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4498
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4499 See if there is a subwindow that completely encloses the requested
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4500 area.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4501 ****************************************************************************/
647
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
4502 int
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 639
diff changeset
4503 find_matching_subwindow (struct frame* f, int x, int y, int width, int height)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4504 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4505 Lisp_Object rest;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4506
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4507 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4508 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4509 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (XCAR (rest));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4510
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4511 if (IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4512 &&
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4513 IMAGE_INSTANCE_DISPLAY_X (ii) <= x
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4514 &&
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4515 IMAGE_INSTANCE_DISPLAY_Y (ii) <= y
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4516 &&
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4517 IMAGE_INSTANCE_DISPLAY_X (ii)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4518 + IMAGE_INSTANCE_DISPLAY_WIDTH (ii) >= x + width
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4519 &&
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4520 IMAGE_INSTANCE_DISPLAY_Y (ii)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4521 + IMAGE_INSTANCE_DISPLAY_HEIGHT (ii) >= y + height)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4522 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4523 return 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4524 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4525 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4526 return 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4527 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4528
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4529
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4530 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4531 * subwindow functions *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4532 *****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4533
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4534 /* Update the displayed characteristics of a subwindow. This function
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4535 should generally only get called if the subwindow is actually
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4536 dirty. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4537 void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4538 redisplay_subwindow (Lisp_Object subwindow)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4539 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4540 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4541 int count = specpdl_depth ();
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4542
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4543 /* The update method is allowed to call eval. Since it is quite
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4544 common for this function to get called from somewhere in
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4545 redisplay we need to make sure that quits are ignored. Otherwise
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4546 Fsignal will abort. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4547 specbind (Qinhibit_quit, Qt);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4548
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4549 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4550
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4551 if (WIDGET_IMAGE_INSTANCEP (subwindow))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4552 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4553 if (image_instance_changed (subwindow))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4554 redisplay_widget (subwindow);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4555 /* Reset the changed flags. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4556 IMAGE_INSTANCE_WIDGET_FACE_CHANGED (ii) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4557 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4558 IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4559 IMAGE_INSTANCE_TEXT_CHANGED (ii) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4560 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4561 else if (IMAGE_INSTANCE_TYPE (ii) == IMAGE_SUBWINDOW
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4562 &&
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4563 !NILP (IMAGE_INSTANCE_FRAME (ii)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4564 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4565 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4566 redisplay_subwindow, (ii));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4567 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4568
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4569 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 0;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4570 /* This function is typically called by redisplay just before
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4571 outputting the information to the screen. Thus we record a hash
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4572 of the output to determine whether on-screen is the same as
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4573 recorded structure. This approach has limitations in there is a
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4574 good chance that hash values will be different for the same
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4575 visual appearance. However, we would rather that then the other
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4576 way round - it simply means that we will get more displays than
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4577 we might need. We can get better hashing by making the depth
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4578 negative - currently it will recurse down 7 levels.*/
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4579 IMAGE_INSTANCE_DISPLAY_HASH (ii) = internal_hash (subwindow,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4580 IMAGE_INSTANCE_HASH_DEPTH);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4581
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4582 unbind_to (count, Qnil);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4583 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4584
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4585 /* Determine whether an image_instance has changed structurally and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4586 hence needs redisplaying in some way.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4587
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4588 #### This should just look at the instantiator differences when we
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4589 get rid of the stored items altogether. In fact we should probably
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4590 store the new instantiator as well as the old - as we do with
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4591 gui_items currently - and then pick-up the new on the next
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4592 redisplay. This would obviate the need for any of this trickery
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4593 with hashcodes. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4594 int
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4595 image_instance_changed (Lisp_Object subwindow)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4596 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4597 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4598
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4599 if (internal_hash (subwindow, IMAGE_INSTANCE_HASH_DEPTH) !=
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4600 IMAGE_INSTANCE_DISPLAY_HASH (ii))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4601 return 1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4602 /* #### I think there is probably a bug here. This gets called for
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4603 layouts - and yet the pending items are always nil for
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4604 layouts. We are saved by layout optimization, but I'm undecided
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4605 as to what the correct fix is. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4606 else if (WIDGET_IMAGE_INSTANCEP (subwindow)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4607 && (!internal_equal (IMAGE_INSTANCE_WIDGET_ITEMS (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4608 IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii), 0)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4609 || !NILP (IMAGE_INSTANCE_LAYOUT_CHILDREN (ii))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4610 || IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4611 return 1;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4612 else
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4613 return 0;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4614 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4615
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4616 /* Update all the subwindows on a frame. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4617 void
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4618 update_widget_instances (Lisp_Object frame)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4619 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4620 struct frame* f;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4621 Lisp_Object rest;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4622
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4623 /* Its possible for the preceding callback to have deleted the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4624 frame, so cope with this. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4625 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4626 return;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4627
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4628 CHECK_FRAME (frame);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4629 f = XFRAME (frame);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4630
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4631 /* If we get called we know something has changed. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4632 LIST_LOOP (rest, XWEAK_LIST_LIST (FRAME_SUBWINDOW_CACHE (f)))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4633 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4634 Lisp_Object widget = XCAR (rest);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4635
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4636 if (XIMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (widget)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4637 &&
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4638 image_instance_changed (widget))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4639 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4640 set_image_instance_dirty_p (widget, 1);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4641 MARK_FRAME_GLYPHS_CHANGED (f);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4642 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4643 }
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4644 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4645
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4646 /* remove a subwindow from its frame */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4647 void unmap_subwindow (Lisp_Object subwindow)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4648 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4649 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4650 struct frame* f;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4651
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4652 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4653
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4654 if (!image_instance_type_to_mask (IMAGE_INSTANCE_TYPE (ii))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4655 & (IMAGE_WIDGET_MASK | IMAGE_SUBWINDOW_MASK)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4656 ||
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4657 !IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4658 return;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4659
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4660 #ifdef DEBUG_WIDGETS
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4661 stderr_out ("unmapping subwindow %p\n", IMAGE_INSTANCE_SUBWINDOW_ID (ii));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4662 #endif
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4663 f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4664
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4665 /* make sure we don't get expose events */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4666 register_ignored_expose (f, IMAGE_INSTANCE_DISPLAY_X (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4667 IMAGE_INSTANCE_DISPLAY_Y (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4668 IMAGE_INSTANCE_DISPLAY_WIDTH (ii),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4669 IMAGE_INSTANCE_DISPLAY_HEIGHT (ii));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4670 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4671
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4672 MAYBE_DEVMETH (XDEVICE (IMAGE_INSTANCE_DEVICE (ii)),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4673 unmap_subwindow, (ii));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4674 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4675
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4676 /* show a subwindow in its frame */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4677 void map_subwindow (Lisp_Object subwindow, int x, int y,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4678 struct display_glyph_area *dga)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4679 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4680 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (subwindow);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4681 struct frame* f;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4682
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4683 ERROR_CHECK_IMAGE_INSTANCE (subwindow);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4684
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4685 if (!image_instance_type_to_mask (IMAGE_INSTANCE_TYPE (ii))
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4686 & (IMAGE_WIDGET_MASK | IMAGE_SUBWINDOW_MASK))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4687 return;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4688
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4689 #ifdef DEBUG_WIDGETS
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4690 stderr_out ("mapping subwindow %p, %dx%d@%d+%d\n",
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4691 IMAGE_INSTANCE_SUBWINDOW_ID (ii),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4692 dga->width, dga->height, x, y);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4693 #endif
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4694 f = XFRAME (IMAGE_INSTANCE_FRAME (ii));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4695 IMAGE_INSTANCE_DISPLAY_X (ii) = x;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4696 IMAGE_INSTANCE_DISPLAY_Y (ii) = y;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4697 IMAGE_INSTANCE_DISPLAY_WIDTH (ii) = dga->width;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4698 IMAGE_INSTANCE_DISPLAY_HEIGHT (ii) = dga->height;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4699
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4700 MAYBE_DEVMETH (DOMAIN_XDEVICE (ii->domain),
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4701 map_subwindow, (ii, x, y, dga));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4702 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4703 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4704
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4705 static int
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4706 subwindow_possible_dest_types (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4707 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4708 return IMAGE_SUBWINDOW_MASK;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4709 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4710
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4711 int
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4712 subwindow_governing_domain (void)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4713 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4714 return GOVERNING_DOMAIN_WINDOW;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4715 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4716
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4717 /* Partially instantiate a subwindow. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4718 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4719 subwindow_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4720 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4721 int dest_mask, Lisp_Object domain)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4722 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4723 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4724 Lisp_Object device = image_instance_device (image_instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4725 Lisp_Object frame = DOMAIN_FRAME (domain);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4726 Lisp_Object width = find_keyword_in_vector (instantiator, Q_pixel_width);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4727 Lisp_Object height = find_keyword_in_vector (instantiator, Q_pixel_height);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4728
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4729 if (NILP (frame))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
4730 invalid_state ("No selected frame", device);
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4731
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4732 if (!(dest_mask & IMAGE_SUBWINDOW_MASK))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4733 incompatible_image_types (instantiator, dest_mask, IMAGE_SUBWINDOW_MASK);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4734
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4735 ii->data = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4736 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4737 IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (ii) = 0;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4738
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4739 if (INTP (width))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4740 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4741 int w = 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4742 if (XINT (width) > 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4743 w = XINT (width);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4744 IMAGE_INSTANCE_WIDTH (ii) = w;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4745 IMAGE_INSTANCE_SUBWINDOW_H_RESIZEP (ii) = 0;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4746 }
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4747
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4748 if (INTP (height))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4749 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4750 int h = 1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4751 if (XINT (height) > 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4752 h = XINT (height);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4753 IMAGE_INSTANCE_HEIGHT (ii) = h;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4754 IMAGE_INSTANCE_SUBWINDOW_V_RESIZEP (ii) = 0;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4755 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4756 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4757
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4758 /* This is just a backup in case no-one has assigned a suitable geometry.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4759 #### It should really query the enclose window for geometry. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4760 static void
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4761 subwindow_query_geometry (Lisp_Object image_instance, int* width,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4762 int* height, enum image_instance_geometry disp,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4763 Lisp_Object domain)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4764 {
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4765 if (width) *width = 20;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4766 if (height) *height = 20;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4767 }
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4768
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4769 DEFUN ("subwindowp", Fsubwindowp, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4770 Return non-nil if OBJECT is a subwindow.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4771 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4772 (object))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4773 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4774 CHECK_IMAGE_INSTANCE (object);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4775 return (XIMAGE_INSTANCE_TYPE (object) == IMAGE_SUBWINDOW) ? Qt : Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4776 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4777
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4778 DEFUN ("image-instance-subwindow-id", Fimage_instance_subwindow_id, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4779 Return the window id of SUBWINDOW as a number.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4780 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4781 (subwindow))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4782 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4783 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4784 return make_int ((EMACS_INT) XIMAGE_INSTANCE_SUBWINDOW_ID (subwindow));
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4785 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4786
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4787 DEFUN ("resize-subwindow", Fresize_subwindow, 1, 3, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4788 Resize SUBWINDOW to WIDTH x HEIGHT.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4789 If a value is nil that parameter is not changed.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4790 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4791 (subwindow, width, height))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4792 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4793 int neww, newh;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4794 Lisp_Image_Instance* ii;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4795
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4796 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4797 ii = XIMAGE_INSTANCE (subwindow);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4798
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4799 if (NILP (width))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4800 neww = IMAGE_INSTANCE_WIDTH (ii);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4801 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4802 neww = XINT (width);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4803
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4804 if (NILP (height))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4805 newh = IMAGE_INSTANCE_HEIGHT (ii);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4806 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4807 newh = XINT (height);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4808
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4809 /* The actual resizing gets done asynchronously by
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
4810 update_subwindow. */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4811 IMAGE_INSTANCE_HEIGHT (ii) = newh;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4812 IMAGE_INSTANCE_WIDTH (ii) = neww;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4813 IMAGE_INSTANCE_SIZE_CHANGED (ii) = 1;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4814
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4815 return subwindow;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4816 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4817
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4818 DEFUN ("force-subwindow-map", Fforce_subwindow_map, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4819 Generate a Map event for SUBWINDOW.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4820 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4821 (subwindow))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4822 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4823 CHECK_SUBWINDOW_IMAGE_INSTANCE (subwindow);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4824 #if 0
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4825 map_subwindow (subwindow, 0, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4826 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4827 return subwindow;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4828 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4829
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4830
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4831 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4832 * display tables *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4833 *****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4834
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4835 /* Get the display tables for use currently on window W with face
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4836 FACE. #### This will have to be redone. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4837
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4838 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4839 get_display_tables (struct window *w, face_index findex,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4840 Lisp_Object *face_table, Lisp_Object *window_table)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4841 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4842 Lisp_Object tem;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4843 tem = WINDOW_FACE_CACHEL_DISPLAY_TABLE (w, findex);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4844 if (UNBOUNDP (tem))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4845 tem = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4846 if (!LISTP (tem))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4847 tem = noseeum_cons (tem, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4848 *face_table = tem;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4849 tem = w->display_table;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4850 if (UNBOUNDP (tem))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4851 tem = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4852 if (!LISTP (tem))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4853 tem = noseeum_cons (tem, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4854 *window_table = tem;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4855 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4856
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4857 Lisp_Object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4858 display_table_entry (Emchar ch, Lisp_Object face_table,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4859 Lisp_Object window_table)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4860 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4861 Lisp_Object tail;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4862
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4863 /* Loop over FACE_TABLE, and then over WINDOW_TABLE. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4864 for (tail = face_table; 1; tail = XCDR (tail))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4865 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4866 Lisp_Object table;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4867 if (NILP (tail))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4868 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4869 if (!NILP (window_table))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4870 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4871 tail = window_table;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4872 window_table = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4873 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4874 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4875 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4876 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4877 table = XCAR (tail);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4878
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4879 if (VECTORP (table))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4880 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4881 if (ch < XVECTOR_LENGTH (table) && !NILP (XVECTOR_DATA (table)[ch]))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4882 return XVECTOR_DATA (table)[ch];
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4883 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4884 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4885 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4886 else if (CHAR_TABLEP (table)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4887 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_CHAR)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4888 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4889 return get_char_table (ch, XCHAR_TABLE (table));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4890 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4891 else if (CHAR_TABLEP (table)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4892 && XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_GENERIC)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4893 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4894 Lisp_Object gotit = get_char_table (ch, XCHAR_TABLE (table));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4895 if (!NILP (gotit))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4896 return gotit;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4897 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4898 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4899 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4900 else if (RANGE_TABLEP (table))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4901 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4902 Lisp_Object gotit = Fget_range_table (make_char (ch), table, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4903 if (!NILP (gotit))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4904 return gotit;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4905 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4906 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4907 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4908 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4909 abort ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4910 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4911 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4912
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4913 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4914 * timeouts for animated glyphs *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4915 *****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4916 static Lisp_Object Qglyph_animated_timeout_handler;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4917
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4918 DEFUN ("glyph-animated-timeout-handler", Fglyph_animated_timeout_handler, 1, 1, 0, /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4919 Callback function for updating animated images.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4920 Don't use this.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4921 */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4922 (arg))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4923 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4924 CHECK_WEAK_LIST (arg);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4925
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4926 if (!NILP (XWEAK_LIST_LIST (arg)) && !NILP (XCAR (XWEAK_LIST_LIST (arg))))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4927 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4928 Lisp_Object value = XCAR (XWEAK_LIST_LIST (arg));
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4929
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4930 if (IMAGE_INSTANCEP (value))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4931 {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4932 Lisp_Image_Instance* ii = XIMAGE_INSTANCE (value);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4933
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4934 if (COLOR_PIXMAP_IMAGE_INSTANCEP (value)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4935 &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4936 IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii) > 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4937 &&
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4938 !disable_animated_pixmaps)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4939 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4940 /* Increment the index of the image slice we are currently
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4941 viewing. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4942 IMAGE_INSTANCE_PIXMAP_SLICE (ii) =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4943 (IMAGE_INSTANCE_PIXMAP_SLICE (ii) + 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4944 % IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4945 /* We might need to kick redisplay at this point - but we
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4946 also might not. */
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
4947 MARK_DEVICE_FRAMES_GLYPHS_CHANGED
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4948 (XDEVICE (image_instance_device (value)));
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4949 /* Cascade dirtiness so that we can have an animated glyph in a layout
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4950 for instance. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4951 set_image_instance_dirty_p (value, 1);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4952 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4953 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4954 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4955 return Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4956 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4957
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4958 Lisp_Object add_glyph_animated_timeout (EMACS_INT tickms, Lisp_Object image)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4959 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4960 Lisp_Object ret = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4961
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4962 if (tickms > 0 && IMAGE_INSTANCEP (image))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4963 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4964 double ms = ((double)tickms) / 1000.0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4965 struct gcpro gcpro1;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4966 Lisp_Object holder = make_weak_list (WEAK_LIST_SIMPLE);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4967
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4968 GCPRO1 (holder);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4969 XWEAK_LIST_LIST (holder) = Fcons (image, Qnil);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4970
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4971 ret = Fadd_timeout (make_float (ms),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4972 Qglyph_animated_timeout_handler,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4973 holder, make_float (ms));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4974
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4975 UNGCPRO;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4976 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4977 return ret;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4978 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4979
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4980 void disable_glyph_animated_timeout (int i)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4981 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4982 Lisp_Object id;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4983 XSETINT (id, i);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4984
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4985 Fdisable_timeout (id);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4986 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4987
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4988
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4989 /*****************************************************************************
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4990 * initialization *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4991 *****************************************************************************/
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4992
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4993 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4994 syms_of_glyphs (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4995 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4996 INIT_LRECORD_IMPLEMENTATION (glyph);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4997 INIT_LRECORD_IMPLEMENTATION (image_instance);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
4998
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4999 /* image instantiators */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5000
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5001 DEFSUBR (Fimage_instantiator_format_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5002 DEFSUBR (Fvalid_image_instantiator_format_p);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5003 DEFSUBR (Fset_console_type_image_conversion_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5004 DEFSUBR (Fconsole_type_image_conversion_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5005
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5006 DEFKEYWORD (Q_file);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5007 DEFKEYWORD (Q_data);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5008 DEFKEYWORD (Q_face);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5009 DEFKEYWORD (Q_pixel_height);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5010 DEFKEYWORD (Q_pixel_width);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5011
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5012 #ifdef HAVE_XPM
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5013 DEFKEYWORD (Q_color_symbols);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5014 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5015 #ifdef HAVE_WINDOW_SYSTEM
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5016 DEFKEYWORD (Q_mask_file);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5017 DEFKEYWORD (Q_mask_data);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5018 DEFKEYWORD (Q_hotspot_x);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5019 DEFKEYWORD (Q_hotspot_y);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5020 DEFKEYWORD (Q_foreground);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5021 DEFKEYWORD (Q_background);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5022 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5023 /* image specifiers */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5024
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5025 DEFSUBR (Fimage_specifier_p);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5026 /* Qimage in general.c */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5027
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5028 /* image instances */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5029
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
5030 DEFSYMBOL_MULTIWORD_PREDICATE (Qimage_instancep);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5031
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5032 DEFSYMBOL (Qnothing_image_instance_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5033 DEFSYMBOL (Qtext_image_instance_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5034 DEFSYMBOL (Qmono_pixmap_image_instance_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5035 DEFSYMBOL (Qcolor_pixmap_image_instance_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5036 DEFSYMBOL (Qpointer_image_instance_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5037 DEFSYMBOL (Qwidget_image_instance_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5038 DEFSYMBOL (Qsubwindow_image_instance_p);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5039
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5040 DEFSUBR (Fmake_image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5041 DEFSUBR (Fimage_instance_p);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5042 DEFSUBR (Fimage_instance_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5043 DEFSUBR (Fvalid_image_instance_type_p);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5044 DEFSUBR (Fimage_instance_type_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5045 DEFSUBR (Fimage_instance_name);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5046 DEFSUBR (Fimage_instance_domain);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5047 DEFSUBR (Fimage_instance_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5048 DEFSUBR (Fimage_instance_file_name);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5049 DEFSUBR (Fimage_instance_mask_file_name);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5050 DEFSUBR (Fimage_instance_depth);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5051 DEFSUBR (Fimage_instance_height);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5052 DEFSUBR (Fimage_instance_width);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5053 DEFSUBR (Fimage_instance_hotspot_x);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5054 DEFSUBR (Fimage_instance_hotspot_y);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5055 DEFSUBR (Fimage_instance_foreground);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5056 DEFSUBR (Fimage_instance_background);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5057 DEFSUBR (Fimage_instance_property);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5058 DEFSUBR (Fcolorize_image_instance);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5059 /* subwindows */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5060 DEFSUBR (Fsubwindowp);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5061 DEFSUBR (Fimage_instance_subwindow_id);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5062 DEFSUBR (Fresize_subwindow);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5063 DEFSUBR (Fforce_subwindow_map);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5064
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5065 /* Qnothing defined as part of the "nothing" image-instantiator
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5066 type. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5067 /* Qtext defined in general.c */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5068 DEFSYMBOL (Qmono_pixmap);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5069 DEFSYMBOL (Qcolor_pixmap);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5070 /* Qpointer defined in general.c */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5071
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5072 /* glyphs */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5073
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5074 DEFSYMBOL (Qglyphp);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5075 DEFSYMBOL (Qcontrib_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5076 DEFSYMBOL (Qbaseline);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5077
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5078 DEFSYMBOL (Qbuffer_glyph_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5079 DEFSYMBOL (Qpointer_glyph_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5080 DEFSYMBOL (Qicon_glyph_p);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5081
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5082 DEFSYMBOL (Qconst_glyph_variable);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5083
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5084 DEFSUBR (Fglyph_type);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5085 DEFSUBR (Fvalid_glyph_type_p);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5086 DEFSUBR (Fglyph_type_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5087 DEFSUBR (Fglyphp);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5088 DEFSUBR (Fmake_glyph_internal);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5089 DEFSUBR (Fglyph_width);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5090 DEFSUBR (Fglyph_ascent);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5091 DEFSUBR (Fglyph_descent);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5092 DEFSUBR (Fglyph_height);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5093 DEFSUBR (Fset_instantiator_property);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5094
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5095 /* Qbuffer defined in general.c. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5096 /* Qpointer defined above */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5097
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5098 /* Unfortunately, timeout handlers must be lisp functions. This is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5099 for animated glyphs. */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5100 DEFSYMBOL (Qglyph_animated_timeout_handler);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5101 DEFSUBR (Fglyph_animated_timeout_handler);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5102
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5103 /* Errors */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
5104 DEFERROR_STANDARD (Qimage_conversion_error, Qconversion_error);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5105 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5106
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5107 static const struct lrecord_description image_specifier_description[] = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5108 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5109 { XD_LISP_OBJECT, specifier_data_offset + offsetof (struct image_specifier, attachee_property) },
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5110 { XD_END }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5111 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5112
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5113 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5114 specifier_type_create_image (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5115 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5116 /* image specifiers */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5117
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5118 INITIALIZE_SPECIFIER_TYPE_WITH_DATA (image, "image", "imagep");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5119
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5120 SPECIFIER_HAS_METHOD (image, create);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5121 SPECIFIER_HAS_METHOD (image, mark);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5122 SPECIFIER_HAS_METHOD (image, instantiate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5123 SPECIFIER_HAS_METHOD (image, validate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5124 SPECIFIER_HAS_METHOD (image, after_change);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5125 SPECIFIER_HAS_METHOD (image, going_to_add);
434
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 430
diff changeset
5126 SPECIFIER_HAS_METHOD (image, copy_instantiator);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5127 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5128
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5129 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5130 reinit_specifier_type_create_image (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5131 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5132 REINITIALIZE_SPECIFIER_TYPE (image);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5133 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5134
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5135
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5136 static const struct lrecord_description iike_description_1[] = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5137 { XD_LISP_OBJECT, offsetof (ii_keyword_entry, keyword) },
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5138 { XD_END }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5139 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5140
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5141 static const struct struct_description iike_description = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5142 sizeof (ii_keyword_entry),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5143 iike_description_1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5144 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5145
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5146 static const struct lrecord_description iiked_description_1[] = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5147 XD_DYNARR_DESC (ii_keyword_entry_dynarr, &iike_description),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5148 { XD_END }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5149 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5150
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5151 static const struct struct_description iiked_description = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5152 sizeof (ii_keyword_entry_dynarr),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5153 iiked_description_1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5154 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5155
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5156 static const struct lrecord_description iife_description_1[] = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5157 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, symbol) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5158 { XD_LISP_OBJECT, offsetof (image_instantiator_format_entry, device) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5159 { XD_STRUCT_PTR, offsetof (image_instantiator_format_entry, meths), 1, &iim_description },
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5160 { XD_END }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5161 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5162
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5163 static const struct struct_description iife_description = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5164 sizeof (image_instantiator_format_entry),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5165 iife_description_1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5166 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5167
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5168 static const struct lrecord_description iifed_description_1[] = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5169 XD_DYNARR_DESC (image_instantiator_format_entry_dynarr, &iife_description),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5170 { XD_END }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5171 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5172
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5173 static const struct struct_description iifed_description = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5174 sizeof (image_instantiator_format_entry_dynarr),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5175 iifed_description_1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5176 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5177
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5178 static const struct lrecord_description iim_description_1[] = {
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5179 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, symbol) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5180 { XD_LISP_OBJECT, offsetof (struct image_instantiator_methods, device) },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5181 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, keywords), 1, &iiked_description },
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5182 { XD_STRUCT_PTR, offsetof (struct image_instantiator_methods, consoles), 1, &cted_description },
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5183 { XD_END }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5184 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5185
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5186 const struct struct_description iim_description = {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5187 sizeof (struct image_instantiator_methods),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5188 iim_description_1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5189 };
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5190
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5191 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5192 image_instantiator_format_create (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5193 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5194 /* image instantiators */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5195
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5196 the_image_instantiator_format_entry_dynarr =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5197 Dynarr_new (image_instantiator_format_entry);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5198
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5199 Vimage_instantiator_format_list = Qnil;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5200 staticpro (&Vimage_instantiator_format_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5201
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
5202 dump_add_root_struct_ptr (&the_image_instantiator_format_entry_dynarr, &iifed_description);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5203
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5204 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (nothing, "nothing");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5205
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5206 IIFORMAT_HAS_METHOD (nothing, possible_dest_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5207 IIFORMAT_HAS_METHOD (nothing, instantiate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5208
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5209 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (inherit, "inherit");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5210
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5211 IIFORMAT_HAS_METHOD (inherit, validate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5212 IIFORMAT_HAS_METHOD (inherit, normalize);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5213 IIFORMAT_HAS_METHOD (inherit, possible_dest_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5214 IIFORMAT_HAS_METHOD (inherit, instantiate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5215
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5216 IIFORMAT_VALID_KEYWORD (inherit, Q_face, check_valid_face);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5217
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5218 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (string, "string");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5219
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5220 IIFORMAT_HAS_METHOD (string, validate);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5221 IIFORMAT_HAS_SHARED_METHOD (string, governing_domain, subwindow);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5222 IIFORMAT_HAS_METHOD (string, possible_dest_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5223 IIFORMAT_HAS_METHOD (string, instantiate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5224
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5225 IIFORMAT_VALID_KEYWORD (string, Q_data, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5226 /* Do this so we can set strings. */
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5227 /* #### Andy, what is this? This is a bogus format and should not be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5228 visible to the user. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5229 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (text, "text");
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5230 IIFORMAT_HAS_METHOD (text, update);
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
5231 IIFORMAT_HAS_METHOD (text, query_geometry);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5232
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5233 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (formatted_string, "formatted-string");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5234
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5235 IIFORMAT_HAS_METHOD (formatted_string, validate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5236 IIFORMAT_HAS_METHOD (formatted_string, possible_dest_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5237 IIFORMAT_HAS_METHOD (formatted_string, instantiate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5238 IIFORMAT_VALID_KEYWORD (formatted_string, Q_data, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5239
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5240 /* Do this so pointers have geometry. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5241 /* #### Andy, what is this? This is a bogus format and should not be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5242 visible to the user. */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5243 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (pointer, "pointer");
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5244 IIFORMAT_HAS_SHARED_METHOD (pointer, query_geometry, subwindow);
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5245
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5246 /* subwindows */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5247 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (subwindow, "subwindow");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5248 IIFORMAT_HAS_METHOD (subwindow, possible_dest_types);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5249 IIFORMAT_HAS_METHOD (subwindow, governing_domain);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5250 IIFORMAT_HAS_METHOD (subwindow, instantiate);
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5251 IIFORMAT_HAS_METHOD (subwindow, query_geometry);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5252 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_width, check_valid_int);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5253 IIFORMAT_VALID_KEYWORD (subwindow, Q_pixel_height, check_valid_int);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5254
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5255 #ifdef HAVE_WINDOW_SYSTEM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5256 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xbm, "xbm");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5257
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5258 IIFORMAT_HAS_METHOD (xbm, validate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5259 IIFORMAT_HAS_METHOD (xbm, normalize);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5260 IIFORMAT_HAS_METHOD (xbm, possible_dest_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5261
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5262 IIFORMAT_VALID_KEYWORD (xbm, Q_data, check_valid_xbm_inline);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5263 IIFORMAT_VALID_KEYWORD (xbm, Q_file, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5264 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_data, check_valid_xbm_inline);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5265 IIFORMAT_VALID_KEYWORD (xbm, Q_mask_file, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5266 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_x, check_valid_int);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5267 IIFORMAT_VALID_KEYWORD (xbm, Q_hotspot_y, check_valid_int);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5268 IIFORMAT_VALID_KEYWORD (xbm, Q_foreground, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5269 IIFORMAT_VALID_KEYWORD (xbm, Q_background, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5270 #endif /* HAVE_WINDOW_SYSTEM */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5271
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5272 #ifdef HAVE_XFACE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5273 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xface, "xface");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5274
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5275 IIFORMAT_HAS_METHOD (xface, validate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5276 IIFORMAT_HAS_METHOD (xface, normalize);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5277 IIFORMAT_HAS_METHOD (xface, possible_dest_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5278
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5279 IIFORMAT_VALID_KEYWORD (xface, Q_data, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5280 IIFORMAT_VALID_KEYWORD (xface, Q_file, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5281 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_x, check_valid_int);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5282 IIFORMAT_VALID_KEYWORD (xface, Q_hotspot_y, check_valid_int);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5283 IIFORMAT_VALID_KEYWORD (xface, Q_foreground, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5284 IIFORMAT_VALID_KEYWORD (xface, Q_background, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5285 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5286
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5287 #ifdef HAVE_XPM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5288 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (xpm, "xpm");
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5289
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5290 IIFORMAT_HAS_METHOD (xpm, validate);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5291 IIFORMAT_HAS_METHOD (xpm, normalize);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5292 IIFORMAT_HAS_METHOD (xpm, possible_dest_types);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5293
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5294 IIFORMAT_VALID_KEYWORD (xpm, Q_data, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5295 IIFORMAT_VALID_KEYWORD (xpm, Q_file, check_valid_string);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5296 IIFORMAT_VALID_KEYWORD (xpm, Q_color_symbols, check_valid_xpm_color_symbols);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5297 #endif /* HAVE_XPM */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5298 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5299
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5300 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5301 reinit_vars_of_glyphs (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5302 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5303 the_expose_ignore_blocktype =
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5304 Blocktype_new (struct expose_ignore_blocktype);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5305
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5306 hold_ignored_expose_registration = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5307 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5308
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5309
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5310 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5311 vars_of_glyphs (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5312 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5313 reinit_vars_of_glyphs ();
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5314
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5315 Vthe_nothing_vector = vector1 (Qnothing);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5316 staticpro (&Vthe_nothing_vector);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5317
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5318 /* image instances */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5319
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5320 Vimage_instance_type_list = Fcons (Qnothing,
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
5321 list6 (Qtext, Qmono_pixmap, Qcolor_pixmap,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5322 Qpointer, Qsubwindow, Qwidget));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5323 staticpro (&Vimage_instance_type_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5324
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5325 /* glyphs */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5326
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5327 Vglyph_type_list = list3 (Qbuffer, Qpointer, Qicon);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5328 staticpro (&Vglyph_type_list);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5329
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5330 /* The octal-escape glyph, control-arrow-glyph and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5331 invisible-text-glyph are completely initialized in glyphs.el */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5332
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5333 DEFVAR_LISP ("octal-escape-glyph", &Voctal_escape_glyph /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5334 What to prefix character codes displayed in octal with.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5335 */);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5336 Voctal_escape_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5337
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5338 DEFVAR_LISP ("control-arrow-glyph", &Vcontrol_arrow_glyph /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5339 What to use as an arrow for control characters.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5340 */);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5341 Vcontrol_arrow_glyph = allocate_glyph (GLYPH_BUFFER,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5342 redisplay_glyph_changed);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5343
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5344 DEFVAR_LISP ("invisible-text-glyph", &Vinvisible_text_glyph /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5345 What to use to indicate the presence of invisible text.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5346 This is the glyph that is displayed when an ellipsis is called for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5347 \(see `selective-display-ellipses' and `buffer-invisibility-spec').
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5348 Normally this is three dots ("...").
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5349 */);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5350 Vinvisible_text_glyph = allocate_glyph (GLYPH_BUFFER,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5351 redisplay_glyph_changed);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5352
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5353 /* Partially initialized in glyphs.el */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5354 DEFVAR_LISP ("hscroll-glyph", &Vhscroll_glyph /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5355 What to display at the beginning of horizontally scrolled lines.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5356 */);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5357 Vhscroll_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5358 #ifdef HAVE_WINDOW_SYSTEM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5359 Fprovide (Qxbm);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5360 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5361 #ifdef HAVE_XPM
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5362 Fprovide (Qxpm);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5363
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5364 DEFVAR_LISP ("xpm-color-symbols", &Vxpm_color_symbols /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5365 Definitions of logical color-names used when reading XPM files.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5366 Elements of this list should be of the form (COLOR-NAME FORM-TO-EVALUATE).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5367 The COLOR-NAME should be a string, which is the name of the color to define;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5368 the FORM should evaluate to a `color' specifier object, or a string to be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5369 passed to `make-color-instance'. If a loaded XPM file references a symbolic
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5370 color called COLOR-NAME, it will display as the computed color instead.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5371
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5372 The default value of this variable defines the logical color names
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5373 \"foreground\" and \"background\" to be the colors of the `default' face.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5374 */ );
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5375 Vxpm_color_symbols = Qnil; /* initialized in x-faces.el */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5376 #endif /* HAVE_XPM */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5377 #ifdef HAVE_XFACE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5378 Fprovide (Qxface);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5379 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5380
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5381 DEFVAR_BOOL ("disable-animated-pixmaps", &disable_animated_pixmaps /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5382 Whether animated pixmaps should be animated.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5383 Default is t.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5384 */);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5385 disable_animated_pixmaps = 0;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5386 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5387
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5388 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5389 specifier_vars_of_glyphs (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5390 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5391 /* #### Can we GC here? The set_specifier_* calls definitely need */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5392 /* protection. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5393 /* display tables */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5394
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5395 DEFVAR_SPECIFIER ("current-display-table", &Vcurrent_display_table /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5396 *The display table currently in use.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5397 This is a specifier; use `set-specifier' to change it.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5398
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5399 Display tables are used to control how characters are displayed. Each
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5400 time that redisplay processes a character, it is looked up in all the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5401 display tables that apply (obtained by calling `specifier-instance' on
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5402 `current-display-table' and any overriding display tables specified in
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5403 currently active faces). The first entry found that matches the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5404 character determines how the character is displayed. If there is no
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5405 matching entry, the default display method is used. (Non-control
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5406 characters are displayed as themselves and control characters are
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5407 displayed according to the buffer-local variable `ctl-arrow'. Control
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5408 characters are further affected by `control-arrow-glyph' and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5409 `octal-escape-glyph'.)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5410
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5411 Each instantiator in this specifier and the display-table specifiers
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5412 in faces is a display table or a list of such tables. If a list, each
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5413 table will be searched in turn for an entry matching a particular
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5414 character. Each display table is one of
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5415
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5416 -- a vector, specifying values for characters starting at 0
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5417 -- a char table, either of type `char' or `generic'
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5418 -- a range table
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5419
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5420 Each entry in a display table should be one of
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5421
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5422 -- nil (this entry is ignored and the search continues)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5423 -- a character (use this character; if it happens to be the same as
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5424 the original character, default processing happens, otherwise
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5425 redisplay attempts to display this character directly;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5426 #### At some point recursive display-table lookup will be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5427 implemented.)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5428 -- a string (display each character in the string directly;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5429 #### At some point recursive display-table lookup will be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5430 implemented.)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5431 -- a glyph (display the glyph;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5432 #### At some point recursive display-table lookup will be
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5433 implemented when a string glyph is being processed.)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5434 -- a cons of the form (format "STRING") where STRING is a printf-like
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5435 spec used to process the character. #### Unfortunately no
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5436 formatting directives other than %% are implemented.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5437 -- a vector (each element of the vector is processed recursively;
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5438 in such a case, nil elements in the vector are simply ignored)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5439
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5440 #### At some point in the near future, display tables are likely to
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5441 be expanded to include other features, such as referencing characters
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5442 in particular fonts and allowing the character search to continue
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5443 all the way up the chain of specifier instantiators. These features
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
5444 are necessary to properly display Unicode characters.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5445 */ );
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5446 Vcurrent_display_table = Fmake_specifier (Qdisplay_table);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5447 set_specifier_fallback (Vcurrent_display_table,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5448 list1 (Fcons (Qnil, Qnil)));
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5449 set_specifier_caching (Vcurrent_display_table,
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 434
diff changeset
5450 offsetof (struct window, display_table),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5451 some_window_value_changed,
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
5452 0, 0, 0);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5453 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5454
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5455 void
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5456 complex_vars_of_glyphs (void)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5457 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5458 /* Partially initialized in glyphs-x.c, glyphs.el */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5459 DEFVAR_LISP ("truncation-glyph", &Vtruncation_glyph /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5460 What to display at the end of truncated lines.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5461 */ );
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5462 Vtruncation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5463
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5464 /* Partially initialized in glyphs-x.c, glyphs.el */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5465 DEFVAR_LISP ("continuation-glyph", &Vcontinuation_glyph /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5466 What to display at the end of wrapped lines.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5467 */ );
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5468 Vcontinuation_glyph = allocate_glyph (GLYPH_BUFFER, redisplay_glyph_changed);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5469
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5470 /* Partially initialized in glyphs-x.c, glyphs.el */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5471 DEFVAR_LISP ("xemacs-logo", &Vxemacs_logo /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5472 The glyph used to display the XEmacs logo at startup.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5473 */ );
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5474 Vxemacs_logo = allocate_glyph (GLYPH_BUFFER, 0);
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5475 }