annotate src/glyphs-gtk.c @ 2367:ecf1ebac70d8

[xemacs-hg @ 2004-11-04 23:05:23 by ben] commit mega-patch configure.in: Turn off -Winline and -Wchar-subscripts. Use the right set of cflags when compiling modules. Rewrite ldap configuration to separate the inclusion of lber (needed in recent Cygwin) from the basic checks for the needed libraries. add a function for MAKE_JUNK_C; initially code was added to generate xemacs.def using this, but it will need to be rewritten. add an rm -f for junk.c to avoid weird Cygwin bug with cp -f onto an existing file. Sort list of auto-detected functions and eliminate unused checks for stpcpy, setlocale and getwd. Add autodetection of Cygwin scanf problems BETA: Rewrite section on configure to indicate what flags are important and what not. digest-doc.c, make-dump-id.c, profile.c, sorted-doc.c: Add proper decls for main(). make-msgfile.c: Document that this is old junk. Move proposal to text.c. make-msgfile.lex: Move proposal to text.c. make-mswin-unicode.pl: Convert error-generating code so that the entire message will be seen as a single unrecognized token. mule/mule-ccl.el: Update docs. lispref/mule.texi: Update CCL docs. ldap/eldap.c: Mule-ize. Use EXTERNAL_LIST_LOOP_2 instead of deleted EXTERNAL_LIST_LOOP. * XEmacs 21.5.18 "chestnut" is released. --------------------------------------------------------------- MULE-RELATED WORK: --------------------------------------------------------------- --------------------------- byte-char conversion --------------------------- buffer.c, buffer.h, insdel.c, text.c: Port FSF algorithm for byte-char conversion, replacing broken previous version. Track the char position of the gap. Add functions to do char-byte conversion downwards as well as upwards. Move comments about algorithm workings to internals manual. --------------------------- work on types --------------------------- alloc.c, console-x-impl.h, dump-data.c, dump-data.h, dumper.c, dialog-msw.c, dired-msw.c, doc.c, editfns.c, esd.c, event-gtk.h, event-msw.c, events.c, file-coding.c, file-coding.h, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-shared.c, glyphs-x.c, glyphs.c, glyphs.h, gui.c, hpplay.c, imgproc.c, intl-win32.c, lrecord.h, lstream.c, keymap.c, lisp.h, libsst.c, linuxplay.c, miscplay.c, miscplay.h, mule-coding.c, nas.c, nt.c, ntheap.c, ntplay.c, objects-msw.c, objects-tty.c, objects-x.c, print.c, process-nt.c, process.c, redisplay.h, select-common.h, select-gtk.c, select-x.c, sgiplay.c, sound.c, sound.h, sunplay.c, sysfile.h, sysdep.c, syswindows.h, text.c, unexnt.c, win32.c, xgccache.c: Further work on types. This creates a full set of types for all the basic semantics of `char' that I have so far identified, so that its semantics can always be identified for the purposes of proper Mule-safe code, and the raw use of `char' always avoided. (1) More type renaming, for consistency of naming. Char_ASCII -> Ascbyte UChar_ASCII -> UAscbyte Char_Binary -> CBinbyte UChar_Binary -> Binbyte SChar_Binary -> SBinbyte (2) Introduce Rawbyte, CRawbyte, Boolbyte, Chbyte, UChbyte, and Bitbyte and use them. (3) New types Itext, Wexttext and Textcount for separating out the concepts of bytes and textual units (different under UTF-16 and UTF-32, which are potential internal encodings). (4) qxestr*_c -> qxestr*_ascii. lisp.h: New; goes with other qxe() functions. #### Maybe goes in a different section. lisp.h: Group generic int-type defs together with EMACS_INT defs. lisp.h: * lisp.h (WEXTTEXT_IS_WIDE) New defns. lisp.h: New type to replace places where int occurs as a boolean. It's signed because occasionally people may want to use -1 as an error value, and because unsigned ints are viral -- see comments in the internals manual against using them. dynarr.c: int -> Bytecount. --------------------------- Mule-izing --------------------------- device-x.c: Partially Mule-ize. dumper.c, dumper.h: Mule-ize. Use Rawbyte. Use stderr_out not printf. Use wext_*(). sysdep.c, syswindows.h, text.c: New Wexttext API for manipulation of external text that may be Unicode (e.g. startup code under Windows). emacs.c: Mule-ize. Properly deal with argv in external encoding. Use wext_*() and Wexttext. Use Rawbyte. #if 0 some old junk on SCO that is unlikely to be correct. Rewrite allocation code in run-temacs. emacs.c, symsinit.h, win32.c: Rename win32 init function and call it even earlier, to initialize mswindows_9x_p even earlier, for use in startup code (XEUNICODE_P). process.c: Use _wenviron not environ under Windows, to get Unicode environment variables. event-Xt.c: Mule-ize drag-n-drop related stuff. dragdrop.c, dragdrop.h, frame-x.c: Mule-ize. text.h: Add some more stand-in defines for particular kinds of conversion; use in Mule-ization work in frame-x.c etc. --------------------------- Freshening --------------------------- intl-auto-encap-win32.c, intl-auto-encap-win32.h: Regenerate. --------------------------- Unicode-work --------------------------- intl-win32.c, syswindows.h: Factor out common options to MultiByteToWideChar and WideCharToMultiByte. Add convert_unicode_to_multibyte_malloc() and convert_unicode_to_multibyte_dynarr() and use. Add stuff for alloca() conversion of multibyte/unicode. alloc.c: Use dfc_external_data_len() in case of unicode coding system. alloc.c, mule-charset.c: Don't zero out and reinit charset Unicode tables. This fucks up dump-time loading. Anyway, either we load them at dump time or run time, never both. unicode.c: Dump the blank tables as well. --------------------------------------------------------------- DOCUMENTATION, MOSTLY MULE-RELATED: --------------------------------------------------------------- EmacsFrame.c, emodules.c, event-Xt.c, fileio.c, input-method-xlib.c, mule-wnnfns.c, redisplay-gtk.c, redisplay-tty.c, redisplay-x.c, regex.c, sysdep.c: Add comment about Mule work needed. text.h: Add more documentation describing why DFC routines were not written to return their value. Add some other DFC documentation. console-msw.c, console-msw.h: Add pointer to docs in win32.c. emacs.c: Add comments on sources of doc info. text.c, charset.h, unicode.c, intl-win32.c, intl-encap-win32.c, text.h, file-coding.c, mule-coding.c: Collect background comments and related to text matters and internationalization, and proposals for work to be done, in text.c or Internals manual, stuff related to specific textual API's in text.h, and stuff related to internal implementation of Unicode conversion in unicode.c. Put lots of pointers to the comments to make them easier to find. s/mingw32.h, s/win32-common.h, s/win32-native.h, s/windowsnt.h, win32.c: Add bunches of new documentation on the different kinds of builds and environments under Windows and how they work. Collect this info in win32.c. Add pointers to these docs in the relevant s/* files. emacs.c: Document places with long comments. Remove comment about exiting, move to internals manual, put in pointer. event-stream.c: Move docs about event queues and focus to internals manual, put in pointer. events.h: Move docs about event stream callbacks to internals manual, put in pointer. profile.c, redisplay.c, signal.c: Move documentation to the Internals manual. process-nt.c: Add pointer to comment in win32-native.el. lisp.h: Add comments about some comment conventions. lisp.h: Add comment about the second argument. device-msw.c, redisplay-msw.c: @@#### comments are out-of-date. --------------------------------------------------------------- PDUMP WORK (MOTIVATED BY UNICODE CHANGES) --------------------------------------------------------------- alloc.c, buffer.c, bytecode.c, console-impl.h, console.c, device.c, dumper.c, lrecord.h, elhash.c, emodules.h, events.c, extents.c, frame.c, glyphs.c, glyphs.h, mule-charset.c, mule-coding.c, objects.c, profile.c, rangetab.c, redisplay.c, specifier.c, specifier.h, window.c, lstream.c, file-coding.h, file-coding.c: PDUMP: Properly implement dump_add_root_block(), which never worked before, and is necessary for dumping Unicode tables. Pdump name changes for accuracy: XD_STRUCT_PTR -> XD_BLOCK_PTR. XD_STRUCT_ARRAY -> XD_BLOCK_ARRAY. XD_C_STRING -> XD_ASCII_STRING. *_structure_* -> *_block_*. lrecord.h: some comments added about dump_add_root_block() vs dump_add_root_block_ptr(). extents.c: remove incorrect comment about pdump problems with gap array. --------------------------------------------------------------- ALLOCATION --------------------------------------------------------------- abbrev.c, alloc.c, bytecode.c, casefiddle.c, device-msw.c, device-x.c, dired-msw.c, doc.c, doprnt.c, dragdrop.c, editfns.c, emodules.c, file-coding.c, fileio.c, filelock.c, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-x.c, gui-msw.c, gui-x.c, imgproc.c, intl-win32.c, lread.c, menubar-gtk.c, menubar.c, nt.c, objects-msw.c, objects-x.c, print.c, process-nt.c, process-unix.c, process.c, realpath.c, redisplay.c, search.c, select-common.c, symbols.c, sysdep.c, syswindows.h, text.c, text.h, ui-byhand.c: New macros {alloca,xnew}_{itext,{i,ext,raw,bin,asc}bytes} for more convenient allocation of these commonly requested items. Modify functions to use alloca_ibytes, alloca_array, alloca_extbytes, xnew_ibytes, etc. also XREALLOC_ARRAY, xnew. alloc.c: Rewrite the allocation functions to factor out repeated code. Add assertions for freeing dumped data. lisp.h: Moved down and consolidated with other allocation stuff. lisp.h, dynarr.c: New functions for allocation that's very efficient when mostly in LIFO order. lisp.h, text.c, text.h: Factor out some stuff for general use by alloca()-conversion funs. text.h, lisp.h: Fill out convenience routines for allocating various kinds of bytes and put them in lisp.h. Use them in place of xmalloc(), ALLOCA(). text.h: Fill out the convenience functions so the _MALLOC() kinds match the alloca() kinds. --------------------------------------------------------------- ERROR-CHECKING --------------------------------------------------------------- text.h: Create ASSERT_ASCTEXT_ASCII() and ASSERT_ASCTEXT_ASCII_LEN() from similar Eistring checkers and change the Eistring checkers to use them instead. --------------------------------------------------------------- MACROS IN LISP.H --------------------------------------------------------------- lisp.h: Redo GCPRO declarations. Create a "base" set of functions that can be used to generate any kind of gcpro sets -- regular, ngcpro, nngcpro, private ones used in GC_EXTERNAL_LIST_LOOP_2. buffer.c, callint.c, chartab.c, console-msw.c, device-x.c, dialog-msw.c, dired.c, extents.c, ui-gtk.c, rangetab.c, nt.c, mule-coding.c, minibuf.c, menubar-msw.c, menubar.c, menubar-gtk.c, lread.c, lisp.h, gutter.c, glyphs.c, glyphs-widget.c, fns.c, fileio.c, file-coding.c, specifier.c: Eliminate EXTERNAL_LIST_LOOP, which does not check for circularities. Use EXTERNAL_LIST_LOOP_2 instead or EXTERNAL_LIST_LOOP_3 or EXTERNAL_PROPERTY_LIST_LOOP_3 or GC_EXTERNAL_LIST_LOOP_2 (new macro). Removed/redid comments on EXTERNAL_LIST_LOOP. --------------------------------------------------------------- SPACING FIXES --------------------------------------------------------------- callint.c, hftctl.c, number-gmp.c, process-unix.c: Spacing fixes. --------------------------------------------------------------- FIX FOR GEOMETRY PROBLEM IN FIRST FRAME --------------------------------------------------------------- unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by release 1.5.12 of Cygwin]. toolbar.c: bug fix for problem of initial frame being 77 chars wide on Windows. will be overridden by my other ws. --------------------------------------------------------------- FIX FOR LEAKING PROCESS HANDLES: --------------------------------------------------------------- process-nt.c: Fixes for leaking handles. Inspired by work done by Adrian Aichner <adrian@xemacs.org>. --------------------------------------------------------------- FIX FOR CYGWIN BUG (Unicode-related): --------------------------------------------------------------- unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by release 1.5.12 of Cygwin]. --------------------------------------------------------------- WARNING FIXES: --------------------------------------------------------------- console-stream.c: `reinit' is unused. compiler.h, event-msw.c, frame-msw.c, intl-encap-win32.c, text.h: Add stuff to deal with ANSI-aliasing warnings I got. regex.c: Gather includes together to avoid warning. --------------------------------------------------------------- CHANGES TO INITIALIZATION ROUTINES: --------------------------------------------------------------- buffer.c, emacs.c, console.c, debug.c, device-x.c, device.c, dragdrop.c, emodules.c, eval.c, event-Xt.c, event-gtk.c, event-msw.c, event-stream.c, event-tty.c, events.c, extents.c, faces.c, file-coding.c, fileio.c, font-lock.c, frame-msw.c, glyphs-widget.c, glyphs.c, gui-x.c, insdel.c, lread.c, lstream.c, menubar-gtk.c, menubar-x.c, minibuf.c, mule-wnnfns.c, objects-msw.c, objects.c, print.c, scrollbar-x.c, search.c, select-x.c, text.c, undo.c, unicode.c, window.c, symsinit.h: Call reinit_*() functions directly from emacs.c, for clarity. Factor out some redundant init code. Move disallowed stuff that had crept into vars_of_glyphs() into complex_vars_of_glyphs(). Call init_eval_semi_early() from eval.c not in the middle of vars_of_() in emacs.c since there should be no order dependency in the latter calls. --------------------------------------------------------------- ARMAGEDDON: --------------------------------------------------------------- alloc.c, emacs.c, lisp.h, print.c: Rename inhibit_non_essential_printing_operations to inhibit_non_essential_conversion_operations. text.c: Assert on !inhibit_non_essential_conversion_operations. console-msw.c, print.c: Don't do conversion in SetConsoleTitle or FindWindow to avoid problems during armageddon. Put #errors for NON_ASCII_INTERNAL_FORMAT in places where problems would arise. --------------------------------------------------------------- CHANGES TO THE BUILD PROCEDURE: --------------------------------------------------------------- config.h.in, s/cxux.h, s/usg5-4-2.h, m/powerpc.h: Add comment about correct ordering of this file. Rearrange everything to follow this -- put all #undefs together and before the s&m files. Add undefs for HAVE_ALLOCA, C_ALLOCA, BROKEN_ALLOCA_IN_FUNCTION_CALLS, STACK_DIRECTION. Remove unused HAVE_STPCPY, HAVE_GETWD, HAVE_SETLOCALE. m/gec63.h: Deleted; totally broken, not used at all, not in FSF. m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/altos.h, m/amdahl.h, m/apollo.h, m/att3b.h, m/aviion.h, m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h, m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/ews4800r.h, m/gould.h, m/hp300bsd.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h, m/intel386.h, m/iris4d.h, m/iris5d.h, m/iris6d.h, m/irist.h, m/isi-ov.h, m/luna88k.h, m/m68k.h, m/masscomp.h, m/mg1.h, m/mips-nec.h, m/mips-siemens.h, m/mips.h, m/news.h, m/nh3000.h, m/nh4000.h, m/ns32000.h, m/orion105.h, m/pfa50.h, m/plexus.h, m/pmax.h, m/powerpc.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h, m/sgi-challenge.h, m/symmetry.h, m/tad68k.h, m/tahoe.h, m/targon31.h, m/tekxd88.h, m/template.h, m/tower32.h, m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/xps100.h: Delete C_ALLOCA, HAVE_ALLOCA, STACK_DIRECTION, BROKEN_ALLOCA_IN_FUNCTION_CALLS. All of this is auto-detected. When in doubt, I followed recent FSF sources, which also have these things deleted.
author ben
date Thu, 04 Nov 2004 23:08:28 +0000
parents 04bc9d2f42c7
children ab71ad6ff3dd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
714
02339d4ebed4 [xemacs-hg @ 2001-12-23 20:28:19 by wmperry]
wmperry
parents: 691
diff changeset
1 /* GTK-specific Lisp objects.
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
4 Copyright (C) 1995 Tinker Systems
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2286
diff changeset
5 Copyright (C) 1995, 1996, 2001, 2002, 2004 Ben Wing
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
6 Copyright (C) 1995 Sun Microsystems
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
7
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
8 This file is part of XEmacs.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
9
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
10 XEmacs is free software; you can redistribute it and/or modify it
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
11 under the terms of the GNU General Public License as published by the
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
12 Free Software Foundation; either version 2, or (at your option) any
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
13 later version.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
14
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
18 for more details.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
19
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
21 along with XEmacs; see the file COPYING. If not, write to
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
23 Boston, MA 02111-1307, USA. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
24
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
25 /* Synched up with: Not in FSF. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
26
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
27 /* Original author: Jamie Zawinski for 19.8
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
28 font-truename stuff added by Jamie Zawinski for 19.10
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
29 subwindow support added by Chuck Thompson
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
30 additional XPM support added by Chuck Thompson
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
31 initial X-Face support added by Stig
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
32 rewritten/restructured by Ben Wing for 19.12/19.13
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
33 GIF/JPEG support added by Ben Wing for 19.14
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
34 PNG support added by Bill Perry for 19.14
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
35 Improved GIF/JPEG support added by Bill Perry for 19.14
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
36 Cleanup/simplification of error handling by Ben Wing for 19.14
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
37 Pointer/icon overhaul, more restructuring by Ben Wing for 19.14
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
38 GIF support changed to external GIFlib 3.1 by Jareth Hein for 21.0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
39 Many changes for color work and optimizations by Jareth Hein for 21.0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
40 Switch of GIF/JPEG/PNG to new EImage intermediate code by Jareth Hein for 21.0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
41 TIFF code by Jareth Hein for 21.0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
42 GIF/JPEG/PNG/TIFF code moved to new glyph-eimage.c for 21.0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
43 Gtk version by William Perry for 21.1
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
44
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
45 TODO:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
46 Support the GrayScale, StaticColor and StaticGray visual classes.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
47 Convert images.el to C and stick it in here?
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
48 */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
49
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
50 #include <config.h>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
51 #include "lisp.h"
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
52
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
53 #include "buffer.h"
872
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
54 #include "device-impl.h"
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
55 #include "faces.h"
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
56 #include "file-coding.h"
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
57 #include "frame-impl.h"
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
58 #include "glyphs.h"
809
285f13b079f3 [xemacs-hg @ 2002-04-07 16:01:30 by wmperry]
wmperry
parents: 800
diff changeset
59 #include "gui.h"
872
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
60 #include "imgproc.h"
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
61 #include "insdel.h"
872
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
62 #include "lstream.h"
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
63 #include "opaque.h"
872
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
64 #include "window.h"
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
65 #include "elhash.h"
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
66 #include "events.h"
872
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
67
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
68 #include "console-gtk-impl.h"
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
69 #include "glyphs-gtk.h"
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
70 #include "objects-gtk-impl.h"
79c6ff3eef26 [xemacs-hg @ 2002-06-20 21:18:01 by ben]
ben
parents: 851
diff changeset
71 #include "ui-gtk.h"
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
72
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
73 #include "sysfile.h"
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
74
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
75 #include <setjmp.h>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
76
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
77 #if defined (HAVE_XPM)
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
78 #include <X11/xpm.h>
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
79 #endif
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
80
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
81 /* Widget callback hash table callback slot. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
82 #define WIDGET_GLYPH_SLOT 0
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
83
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
84 DECLARE_IMAGE_INSTANTIATOR_FORMAT (nothing);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
85 DECLARE_IMAGE_INSTANTIATOR_FORMAT (string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
86 DECLARE_IMAGE_INSTANTIATOR_FORMAT (formatted_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
87 DECLARE_IMAGE_INSTANTIATOR_FORMAT (inherit);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
88 #ifdef HAVE_JPEG
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
89 DECLARE_IMAGE_INSTANTIATOR_FORMAT (jpeg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
90 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
91 #ifdef HAVE_TIFF
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
92 DECLARE_IMAGE_INSTANTIATOR_FORMAT (tiff);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
93 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
94 #ifdef HAVE_PNG
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
95 DECLARE_IMAGE_INSTANTIATOR_FORMAT (png);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
96 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
97 #ifdef HAVE_GIF
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
98 DECLARE_IMAGE_INSTANTIATOR_FORMAT (gif);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
99 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
100
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
101 #ifdef HAVE_XFACE
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
102 DEFINE_DEVICE_IIFORMAT (gtk, xface);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
103 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
104
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
105 #ifdef HAVE_XPM
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
106 DEFINE_DEVICE_IIFORMAT (gtk, xpm);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
107 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
108
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
109 DEFINE_DEVICE_IIFORMAT (gtk, xbm);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
110 DEFINE_DEVICE_IIFORMAT (gtk, subwindow);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
111
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
112 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
113 Lisp_Object Qcursor_font;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
114
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
115 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
116
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
117 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
118
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
119 #ifdef HAVE_WIDGETS
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
120 DECLARE_IMAGE_INSTANTIATOR_FORMAT (layout);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
121 DEFINE_DEVICE_IIFORMAT (gtk, widget);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
122 DEFINE_DEVICE_IIFORMAT (gtk, native_layout);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
123 DEFINE_DEVICE_IIFORMAT (gtk, button);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
124 DEFINE_DEVICE_IIFORMAT (gtk, progress_gauge);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
125 DEFINE_DEVICE_IIFORMAT (gtk, edit_field);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
126 DEFINE_DEVICE_IIFORMAT (gtk, combo_box);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
127 DEFINE_DEVICE_IIFORMAT (gtk, tab_control);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
128 DEFINE_DEVICE_IIFORMAT (gtk, label);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
129 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
130
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
131 static void update_widget_face (GtkWidget *w, Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
132 Lisp_Object domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
133 static void cursor_font_instantiate (Lisp_Object image_instance,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
134 Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
135 Lisp_Object pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
136 Lisp_Object pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
137 int dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
138 Lisp_Object domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
139
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
140 static GdkCursorType cursor_name_to_index (const char *name);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
141
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
142 #ifndef BitmapSuccess
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
143 #define BitmapSuccess 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
144 #define BitmapOpenFailed 1
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
145 #define BitmapFileInvalid 2
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
146 #define BitmapNoMemory 3
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
147 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
148
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
149 #include "bitmaps.h"
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
150
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
151 DEFINE_IMAGE_INSTANTIATOR_FORMAT (gtk_resource);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
152 Lisp_Object Qgtk_resource;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
153 #ifdef HAVE_WIDGETS
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
154 Lisp_Object Qgtk_widget_instantiate_internal, Qgtk_widget_property_internal;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
155 Lisp_Object Qgtk_widget_redisplay_internal, Qgtk_widget_set_style;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
156 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
157
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
158
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
159 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
160 /* image instance methods */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
161 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
162
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
163 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
164 /* convert from a series of RGB triples to an XImage formated for the */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
165 /* proper display */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
166 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
167 static GdkImage *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
168 convert_EImage_to_GDKImage (Lisp_Object device, int width, int height,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
169 unsigned char *pic, unsigned long **pixtbl,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
170 int *npixels)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
171 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
172 GdkColormap *cmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
173 GdkVisual *vis;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
174 GdkImage *outimg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
175 int depth, byte_cnt, i, j;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
176 int rd,gr,bl,q;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
177 unsigned char *data, *ip, *dp = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
178 quant_table *qtable = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
179 union {
826
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 809
diff changeset
180 UINT_32_BIT val;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
181 char cp[4];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
182 } conv;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
183
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
184 cmap = DEVICE_GTK_COLORMAP (XDEVICE(device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
185 vis = DEVICE_GTK_VISUAL (XDEVICE(device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
186 depth = DEVICE_GTK_DEPTH(XDEVICE(device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
187
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
188 if (vis->type == GDK_VISUAL_GRAYSCALE || vis->type == GDK_VISUAL_STATIC_COLOR ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
189 vis->type == GDK_VISUAL_STATIC_GRAY)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
190 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
191 /* #### Implement me!!! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
192 return NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
193 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
194
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
195 if (vis->type == GDK_VISUAL_PSEUDO_COLOR)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
196 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
197 /* Quantize the image and get a histogram while we're at it.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
198 Do this first to save memory */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
199 qtable = build_EImage_quantable(pic, width, height, 256);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
200 if (qtable == NULL) return NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
201 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
202
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
203 /* The first parameter (GdkWindow *) is allowed to be NULL if we
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
204 ** specify the depth */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
205 outimg = gdk_image_new (GDK_IMAGE_FASTEST, vis, width, height);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
206
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
207 if (!outimg) return NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
208
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
209 byte_cnt = outimg->bpp;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
210
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
211 data = (unsigned char *) outimg->mem;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
212
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
213 if (!data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
214 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
215 gdk_image_destroy (outimg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
216 return NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
217 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
218
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
219 if (vis->type == GDK_VISUAL_PSEUDO_COLOR)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
220 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
221 unsigned long pixarray[256];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
222 int pixcount, n;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
223 /* use our quantize table to allocate the colors */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
224 pixcount = 32;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
225 *pixtbl = xnew_array (unsigned long, pixcount);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
226 *npixels = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
227
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
228 /* ### should implement a sort by popularity to assure proper allocation */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
229 n = *npixels;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
230 for (i = 0; i < qtable->num_active_colors; i++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
231 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
232 GdkColor color;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
233 int res;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
234
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
235 color.red = qtable->rm[i] ? qtable->rm[i] << 8 : 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
236 color.green = qtable->gm[i] ? qtable->gm[i] << 8 : 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
237 color.blue = qtable->bm[i] ? qtable->bm[i] << 8 : 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
238 res = allocate_nearest_color (cmap, vis, &color);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
239 if (res > 0 && res < 3)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
240 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
241 DO_REALLOC(*pixtbl, pixcount, n+1, unsigned long);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
242 (*pixtbl)[n] = color.pixel;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
243 n++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
244 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
245 pixarray[i] = color.pixel;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
246 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
247 *npixels = n;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
248 ip = pic;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
249 for (i = 0; i < height; i++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
250 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
251 dp = data + (i * outimg->bpl);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
252 for (j = 0; j < width; j++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
253 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
254 rd = *ip++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
255 gr = *ip++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
256 bl = *ip++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
257 conv.val = pixarray[QUANT_GET_COLOR(qtable,rd,gr,bl)];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
258 #if WORDS_BIGENDIAN
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
259 if (outimg->byte_order == GDK_MSB_FIRST)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
260 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
261 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
262 for (q = 3; q >= 4-byte_cnt; q--) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
263 #else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
264 if (outimg->byte_order == GDK_MSB_FIRST)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
265 for (q = byte_cnt-1; q >= 0; q--) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
266 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
267 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
268 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
269 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
270 }
1726
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
271 xfree(qtable, quant_table *);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
272 } else {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
273 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
274 junk = vis->red_mask;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
275 rshift = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
276 while ((junk & 0x1) == 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
277 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
278 junk = junk >> 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
279 rshift ++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
280 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
281 rbits = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
282 while (junk != 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
283 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
284 junk = junk >> 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
285 rbits++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
286 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
287 junk = vis->green_mask;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
288 gshift = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
289 while ((junk & 0x1) == 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
290 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
291 junk = junk >> 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
292 gshift ++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
293 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
294 gbits = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
295 while (junk != 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
296 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
297 junk = junk >> 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
298 gbits++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
299 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
300 junk = vis->blue_mask;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
301 bshift = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
302 while ((junk & 0x1) == 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
303 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
304 junk = junk >> 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
305 bshift ++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
306 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
307 bbits = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
308 while (junk != 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
309 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
310 junk = junk >> 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
311 bbits++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
312 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
313 ip = pic;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
314 for (i = 0; i < height; i++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
315 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
316 dp = data + (i * outimg->bpl);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
317 for (j = 0; j < width; j++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
318 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
319 if (rbits > 8)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
320 rd = *ip++ << (rbits - 8);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
321 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
322 rd = *ip++ >> (8 - rbits);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
323 if (gbits > 8)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
324 gr = *ip++ << (gbits - 8);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
325 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
326 gr = *ip++ >> (8 - gbits);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
327 if (bbits > 8)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
328 bl = *ip++ << (bbits - 8);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
329 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
330 bl = *ip++ >> (8 - bbits);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
331
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
332 conv.val = (rd << rshift) | (gr << gshift) | (bl << bshift);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
333 #if WORDS_BIGENDIAN
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
334 if (outimg->byte_order == GDK_MSB_FIRST)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
335 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
336 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
337 for (q = 3; q >= 4-byte_cnt; q--) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
338 #else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
339 if (outimg->byte_order == GDK_MSB_FIRST)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
340 for (q = byte_cnt-1; q >= 0; q--) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
341 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
342 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
343 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
344 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
345 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
346 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
347 return outimg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
348 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
349
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
350 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
351 gtk_print_image_instance (struct Lisp_Image_Instance *p,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
352 Lisp_Object printcharfun,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
353 int UNUSED (escapeflag))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
354 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
355 switch (IMAGE_INSTANCE_TYPE (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
356 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
357 case IMAGE_MONO_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
358 case IMAGE_COLOR_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
359 case IMAGE_POINTER:
800
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
360 write_fmt_string (printcharfun, " (0x%lx",
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
361 (unsigned long) IMAGE_INSTANCE_GTK_PIXMAP (p));
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
362 if (IMAGE_INSTANCE_GTK_MASK (p))
800
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
363 write_fmt_string (printcharfun, "/0x%lx",
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
364 (unsigned long) IMAGE_INSTANCE_GTK_MASK (p));
826
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 809
diff changeset
365 write_c_string (printcharfun, ")");
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
366 break;
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
367 #ifdef HAVE_SUBWINDOWS
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
368 case IMAGE_SUBWINDOW:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
369 /* #### implement me */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
370 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
371 default:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
372 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
373 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
374 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
375
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
376 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
377 gtk_finalize_image_instance (struct Lisp_Image_Instance *p)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
378 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
379 if (!p->data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
380 return;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
381
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
382 if (DEVICE_LIVE_P (XDEVICE (p->device)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
383 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
384 if (0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
385 ;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
386 #ifdef HAVE_WIDGETS
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
387 if (IMAGE_INSTANCE_TYPE (p) == IMAGE_WIDGET)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
388 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
389 if (IMAGE_INSTANCE_SUBWINDOW_ID (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
390 {
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
391 gtk_widget_destroy ((GtkWidget*) IMAGE_INSTANCE_SUBWINDOW_ID (p));
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
392
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
393 /* We can release the callbacks again. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
394 /* #### FIXME! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
395 /* ungcpro_popup_callbacks (...); */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
396
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
397 /* IMAGE_INSTANCE_GTK_WIDGET_ID (p) = 0; */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
398 IMAGE_INSTANCE_GTK_CLIPWIDGET (p) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
399 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
400 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
401 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
402 else if (IMAGE_INSTANCE_TYPE (p) == IMAGE_SUBWINDOW)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
403 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
404 abort();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
405 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
406 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
407 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
408 int i;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
409 if (IMAGE_INSTANCE_PIXMAP_TIMEOUT (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
410 disable_glyph_animated_timeout (IMAGE_INSTANCE_PIXMAP_TIMEOUT (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
411
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
412 if (IMAGE_INSTANCE_GTK_MASK (p) &&
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
413 IMAGE_INSTANCE_GTK_MASK (p) != IMAGE_INSTANCE_GTK_PIXMAP (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
414 gdk_pixmap_unref (IMAGE_INSTANCE_GTK_MASK (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
415 IMAGE_INSTANCE_PIXMAP_MASK (p) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
416
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
417 if (IMAGE_INSTANCE_GTK_PIXMAP_SLICES (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
418 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
419 for (i = 0; i < IMAGE_INSTANCE_PIXMAP_MAXSLICE (p); i++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
420 if (IMAGE_INSTANCE_GTK_PIXMAP_SLICE (p,i))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
421 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
422 gdk_pixmap_unref (IMAGE_INSTANCE_GTK_PIXMAP_SLICE (p,i));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
423 IMAGE_INSTANCE_GTK_PIXMAP_SLICE (p, i) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
424 }
1726
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
425 xfree (IMAGE_INSTANCE_GTK_PIXMAP_SLICES (p), GdkPixmap **);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
426 IMAGE_INSTANCE_GTK_PIXMAP_SLICES (p) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
427 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
428
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
429 if (IMAGE_INSTANCE_GTK_CURSOR (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
430 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
431 gdk_cursor_destroy (IMAGE_INSTANCE_GTK_CURSOR (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
432 IMAGE_INSTANCE_GTK_CURSOR (p) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
433 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
434 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
435
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
436 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
437 /* #### BILL!!! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
438 if (IMAGE_INSTANCE_GTK_NPIXELS (p) != 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
439 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
440 XFreeColors (dpy,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
441 IMAGE_INSTANCE_GTK_COLORMAP (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
442 IMAGE_INSTANCE_GTK_PIXELS (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
443 IMAGE_INSTANCE_GTK_NPIXELS (p), 0);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
444 IMAGE_INSTANCE_GTK_NPIXELS (p) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
445 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
446 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
447 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
448
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
449 if (IMAGE_INSTANCE_TYPE (p) != IMAGE_WIDGET
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
450 && IMAGE_INSTANCE_TYPE (p) != IMAGE_SUBWINDOW
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
451 && IMAGE_INSTANCE_GTK_PIXELS (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
452 {
1726
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
453 xfree (IMAGE_INSTANCE_GTK_PIXELS (p), unsigned long *);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
454 IMAGE_INSTANCE_GTK_PIXELS (p) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
455 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
456
1726
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
457 xfree (p->data, void *);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
458 p->data = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
459 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
460
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
461 static int
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
462 gtk_image_instance_equal (struct Lisp_Image_Instance *p1,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
463 struct Lisp_Image_Instance *p2, int UNUSED (depth))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
464 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
465 switch (IMAGE_INSTANCE_TYPE (p1))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
466 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
467 case IMAGE_MONO_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
468 case IMAGE_COLOR_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
469 case IMAGE_POINTER:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
470 if (IMAGE_INSTANCE_GTK_COLORMAP (p1) != IMAGE_INSTANCE_GTK_COLORMAP (p2) ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
471 IMAGE_INSTANCE_GTK_NPIXELS (p1) != IMAGE_INSTANCE_GTK_NPIXELS (p2))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
472 return 0;
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
473 #ifdef HAVE_SUBWINDOWS
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
474 case IMAGE_SUBWINDOW:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
475 /* #### implement me */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
476 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
477 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
478 default:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
479 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
480 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
481
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
482 return 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
483 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
484
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
485 static unsigned long
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
486 gtk_image_instance_hash (struct Lisp_Image_Instance *p, int UNUSED (depth))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
487 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
488 switch (IMAGE_INSTANCE_TYPE (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
489 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
490 case IMAGE_MONO_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
491 case IMAGE_COLOR_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
492 case IMAGE_POINTER:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
493 return IMAGE_INSTANCE_GTK_NPIXELS (p);
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
494 #ifdef HAVE_SUBWINDOWS
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
495 case IMAGE_SUBWINDOW:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
496 /* #### implement me */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
497 return 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
498 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
499 default:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
500 return 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
501 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
502 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
503
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
504 /* Set all the slots in an image instance structure to reasonable
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
505 default values. This is used somewhere within an instantiate
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
506 method. It is assumed that the device slot within the image
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
507 instance is already set -- this is the case when instantiate
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
508 methods are called. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
509
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
510 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
511 gtk_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
512 int slices,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
513 enum image_instance_type type)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
514 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
515 ii->data = xnew_and_zero (struct gtk_image_instance_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
516 IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii) = slices;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
517 IMAGE_INSTANCE_GTK_PIXMAP_SLICES (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
518 xnew_array_and_zero (GdkPixmap *, slices);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
519 IMAGE_INSTANCE_TYPE (ii) = type;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
520 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
521 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
522 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
523 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
524 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
525 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
526 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
527
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
528
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
529 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
530 /* pixmap file functions */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
531 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
532
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
533 /* Where bitmaps are; initialized from resource database */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
534 Lisp_Object Vgtk_bitmap_file_path;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
535
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
536 #ifndef BITMAPDIR
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
537 #define BITMAPDIR "/usr/include/X11/bitmaps"
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
538 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
539
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
540 /* Given a pixmap filename, look through all of the "standard" places
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
541 where the file might be located. Return a full pathname if found;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
542 otherwise, return Qnil. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
543
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
544 static Lisp_Object
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
545 gtk_locate_pixmap_file (Lisp_Object name)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
546 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
547 /* This function can GC if IN_REDISPLAY is false */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
548
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
549 /* Check non-absolute pathnames with a directory component relative to
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
550 the search path; that's the way Xt does it. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
551 /* #### Unix-specific */
826
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 809
diff changeset
552 if (string_byte (name, 0) == '/' ||
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 809
diff changeset
553 (string_byte (name, 0) == '.' &&
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 809
diff changeset
554 (string_byte (name, 1) == '/' ||
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 809
diff changeset
555 (string_byte (name, 1) == '.' &&
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 809
diff changeset
556 (string_byte (name, 2) == '/')))))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
557 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
558 if (!NILP (Ffile_readable_p (name)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
559 return name;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
560 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
561 return Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
562 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
563
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
564 if (NILP (Vgtk_bitmap_file_path))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
565 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
566 Vgtk_bitmap_file_path = nconc2 (Vgtk_bitmap_file_path,
778
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 771
diff changeset
567 (split_external_path (BITMAPDIR)));
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
568 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
569
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
570 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
571 Lisp_Object found;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
572 if (locate_file (Vgtk_bitmap_file_path, name, Qnil, &found, R_OK) < 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
573 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
574 Lisp_Object temp = list1 (Vdata_directory);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
575 struct gcpro gcpro1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
576
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
577 GCPRO1 (temp);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
578 locate_file (temp, name, Qnil, &found, R_OK);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
579 UNGCPRO;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
580 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
581
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
582 return found;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
583 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
584 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
585
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
586 static Lisp_Object
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
587 locate_pixmap_file (Lisp_Object name)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
588 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
589 return gtk_locate_pixmap_file (name);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
590 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
591
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
592
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
593 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
594 /* cursor functions */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
595 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
596
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
597 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
598 not, signal an error. INSTANTIATOR is only used in the error
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
599 message. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
600
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
601 static void
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
602 check_pointer_sizes (unsigned int UNUSED (width), unsigned int UNUSED (height),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
603 Lisp_Object UNUSED (instantiator))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
604 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
605 /* #### BILL!!! There is no way to call XQueryBestCursor from Gdk! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
606 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
607 unsigned int best_width, best_height;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
608 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
609 width, height, &best_width, &best_height))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
610 /* this means that an X error of some sort occurred (we trap
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
611 these so they're not fatal). */
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
612 gui_error ("XQueryBestCursor() failed?", instantiator);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
613
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
614 if (width > best_width || height > best_height)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
615 signal_ferror_with_frob (Qgui_error, instantiator,
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
616 "pointer too large (%dx%d): "
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
617 "server requires %dx%d or smaller",
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
618 width, height, best_width, best_height);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
619 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
620 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
621
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
622 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
623 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
624 Lisp_Object *background, GdkColor *xfg, GdkColor *xbg)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
625 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
626 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
627 *foreground =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
628 Fmake_color_instance (*foreground, device,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
629 encode_error_behavior_flag (ERROR_ME));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
630 if (COLOR_INSTANCEP (*foreground))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
631 *xfg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (*foreground));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
632 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
633 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
634 xfg->pixel = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
635 xfg->red = xfg->green = xfg->blue = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
636 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
637
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
638 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
639 *background =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
640 Fmake_color_instance (*background, device,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
641 encode_error_behavior_flag (ERROR_ME));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
642 if (COLOR_INSTANCEP (*background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
643 *xbg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (*background));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
644 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
645 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
646 xbg->pixel = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
647 xbg->red = xbg->green = xbg->blue = ~0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
648 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
649 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
650
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
651 static void
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
652 maybe_recolor_cursor (Lisp_Object UNUSED (image_instance),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
653 Lisp_Object UNUSED (foreground),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
654 Lisp_Object UNUSED (background))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
655 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
656 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
657 /* #### BILL!!! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
658 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
659 GdkColor xfg, xbg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
660
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
661 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
662 if (!NILP (foreground) || !NILP (background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
663 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
664 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
665 XIMAGE_INSTANCE_GTK_CURSOR (image_instance),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
666 &xfg, &xbg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
667 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
668 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
669 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
670 #else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
671 /* stderr_out ("Don't know how to recolor cursors in Gtk!\n"); */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
672 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
673 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
674
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
675
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
676 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
677 /* color pixmap functions */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
678 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
679
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
680 /* Initialize an image instance from an XImage.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
681
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
682 DEST_MASK specifies the mask of allowed image types.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
683
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
684 PIXELS and NPIXELS specify an array of pixels that are used in
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
685 the image. These need to be kept around for the duration of the
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
686 image. When the image instance is freed, XFreeColors() will
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
687 automatically be called on all the pixels specified here; thus,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
688 you should have allocated the pixels yourself using XAllocColor()
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
689 or the like. The array passed in is used directly without
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
690 being copied, so it should be heap data created with xmalloc().
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
691 It will be freed using xfree() when the image instance is
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
692 destroyed.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
693
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
694 If this fails, signal an error. INSTANTIATOR is only used
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
695 in the error message.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
696
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
697 #### This should be able to handle conversion into `pointer'.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
698 Use the same code as for `xpm'. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
699
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
700 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
701 init_image_instance_from_gdk_image (struct Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
702 GdkImage *gdk_image,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
703 int dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
704 GdkColormap *cmap,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
705 unsigned long *pixels,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
706 int npixels,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
707 int slices,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
708 Lisp_Object instantiator)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
709 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
710 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
711 GdkGC *gc;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
712 GdkWindow *d;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
713 GdkPixmap *pixmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
714
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
715 if (!DEVICE_GTK_P (XDEVICE (device)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
716 gui_error ("Not a Gtk device", device);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
717
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
718 d = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
719
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
720 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
721 incompatible_image_types (instantiator, dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
722 IMAGE_COLOR_PIXMAP_MASK);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
723
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
724 pixmap = gdk_pixmap_new (d, gdk_image->width, gdk_image->height, gdk_image->depth);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
725 if (!pixmap)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
726 gui_error ("Unable to create pixmap", instantiator);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
727
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
728 gc = gdk_gc_new (pixmap);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
729 if (!gc)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
730 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
731 gdk_pixmap_unref (pixmap);
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
732 gui_error ("Unable to create GC", instantiator);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
733 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
734
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
735 gdk_draw_image (GDK_DRAWABLE (pixmap), gc, gdk_image,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
736 0, 0, 0, 0, gdk_image->width, gdk_image->height);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
737
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
738 gdk_gc_destroy (gc);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
739
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
740 gtk_initialize_pixmap_image_instance (ii, slices, IMAGE_COLOR_PIXMAP);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
741
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
742 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
743 find_keyword_in_vector (instantiator, Q_file);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
744
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
745 IMAGE_INSTANCE_GTK_PIXMAP (ii) = pixmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
746 IMAGE_INSTANCE_GTK_MASK (ii) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
747 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = gdk_image->width;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
748 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = gdk_image->height;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
749 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = gdk_image->depth;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
750 IMAGE_INSTANCE_GTK_COLORMAP (ii) = cmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
751 IMAGE_INSTANCE_GTK_PIXELS (ii) = pixels;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
752 IMAGE_INSTANCE_GTK_NPIXELS (ii) = npixels;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
753 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
754
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
755 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
756 void init_image_instance_from_gdk_pixmap (struct Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
757 struct device *device,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
758 GdkPixmap *gdk_pixmap,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
759 int dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
760 Lisp_Object instantiator)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
761 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
762 GdkWindow *d;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
763 gint width, height, depth;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
764
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
765 if (!DEVICE_GTK_P (device))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
766 abort ();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
767
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
768 IMAGE_INSTANCE_DEVICE (ii) = device;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
769 IMAGE_INSTANCE_TYPE (ii) = IMAGE_COLOR_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
770
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
771 d = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
772
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
773 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
774 incompatible_image_types (instantiator, dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
775 IMAGE_COLOR_PIXMAP_MASK);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
776
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
777 gtk_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
778
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
779 gdk_window_get_geometry (gdk_pixmap, NULL, NULL, &width, &height, &depth);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
780
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
781 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
782 IMAGE_INSTANCE_GTK_PIXMAP (ii) = gdk_pixmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
783 IMAGE_INSTANCE_GTK_MASK (ii) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
784 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
785 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
786 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
787 IMAGE_INSTANCE_GTK_COLORMAP (ii) = gdk_window_get_colormap (gdk_pixmap);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
788 IMAGE_INSTANCE_GTK_PIXELS (ii) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
789 IMAGE_INSTANCE_GTK_NPIXELS (ii) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
790 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
791 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
792
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
793 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
794 image_instance_add_gdk_image (Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
795 GdkImage *gdk_image,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
796 int slice,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
797 Lisp_Object instantiator)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
798 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
799 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
800 GdkWindow *d;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
801 GdkPixmap *pixmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
802 GdkGC *gc;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
803
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
804 d = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
805
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
806 pixmap = gdk_pixmap_new (d, gdk_image->width, gdk_image->height, gdk_image->depth);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
807
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
808 if (!pixmap)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
809 gui_error ("Unable to create pixmap", instantiator);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
810
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
811 gc = gdk_gc_new (pixmap);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
812
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
813 if (!gc)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
814 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
815 gdk_pixmap_unref (pixmap);
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
816 gui_error ("Unable to create GC", instantiator);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
817 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
818
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
819 gdk_draw_image (GDK_DRAWABLE (pixmap), gc, gdk_image, 0, 0, 0, 0,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
820 gdk_image->width, gdk_image->height);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
821
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
822 gdk_gc_destroy (gc);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
823
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
824 IMAGE_INSTANCE_GTK_PIXMAP_SLICE (ii, slice) = pixmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
825 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
826
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
827 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
828 gtk_init_image_instance_from_eimage (struct Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
829 int width, int height,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
830 int slices,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
831 unsigned char *eimage,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
832 int dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
833 Lisp_Object instantiator,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
834 Lisp_Object UNUSED (domain))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
835 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
836 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
837 GdkColormap *cmap = DEVICE_GTK_COLORMAP (XDEVICE(device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
838 unsigned long *pixtbl = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
839 int npixels = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
840 int slice;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
841 GdkImage* gdk_image;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
842
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
843
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
844 for (slice = 0; slice < slices; slice++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
845 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
846 gdk_image = convert_EImage_to_GDKImage (device, width, height, eimage,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
847 &pixtbl, &npixels);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
848 if (!gdk_image)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
849 {
1726
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
850 if (pixtbl)
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
851 xfree (pixtbl, unsigned long *);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
852 signal_image_error("EImage to GdkImage conversion failed", instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
853 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
854
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
855 if (slice == 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
856 /* Now create the pixmap and set up the image instance */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
857 init_image_instance_from_gdk_image (ii, gdk_image, dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
858 cmap, pixtbl, npixels, slices,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
859 instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
860 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
861 image_instance_add_gdk_image (ii, gdk_image, slice, instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
862
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
863 if (gdk_image)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
864 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
865 gdk_image_destroy (gdk_image);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
866 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
867 gdk_image = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
868 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
869 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
870
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
871 /* Given inline data for a mono pixmap, create and return the
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
872 corresponding X object. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
873
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
874 static GdkPixmap *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
875 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
876 /* Note that data is in ext-format! */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
877 const Extbyte *bits)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
878 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
879 return (gdk_bitmap_create_from_data (GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device))),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
880 (char *) bits, width, height));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
881 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
882
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
883 /* Given inline data for a mono pixmap, initialize the given
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
884 image instance accordingly. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
885
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
886 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
887 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
888 int width, int height,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
889 /* Note that data is in ext-format! */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
890 const char *bits,
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
891 Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
892 Lisp_Object pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
893 Lisp_Object pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
894 int dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
895 GdkPixmap *mask,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
896 Lisp_Object UNUSED (mask_filename))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
897 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
898 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
899 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
900 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
901 GdkColor fg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
902 GdkColor bg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
903 enum image_instance_type type;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
904 GdkWindow *draw = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
905 GdkColormap *cmap = DEVICE_GTK_COLORMAP (XDEVICE(device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
906 GdkColor black;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
907 GdkColor white;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
908
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
909 gdk_color_black(cmap, &black);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
910 gdk_color_white(cmap, &white);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
911
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
912 if (!DEVICE_GTK_P (XDEVICE (device)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
913 gui_error ("Not a Gtk device", device);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
914
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
915 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
916 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
917 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
918 if (!NILP (foreground) || !NILP (background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
919 type = IMAGE_COLOR_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
920 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
921 type = IMAGE_MONO_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
922 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
923 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
924 type = IMAGE_MONO_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
925 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
926 type = IMAGE_COLOR_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
927 else if (dest_mask & IMAGE_POINTER_MASK)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
928 type = IMAGE_POINTER;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
929 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
930 incompatible_image_types (instantiator, dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
931 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
932 | IMAGE_POINTER_MASK);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
933
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
934 gtk_initialize_pixmap_image_instance (ii, 1, type);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
935 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
936 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
937 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
938 find_keyword_in_vector (instantiator, Q_file);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
939
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
940 switch (type)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
941 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
942 case IMAGE_MONO_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
943 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
944 IMAGE_INSTANCE_GTK_PIXMAP (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
945 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
946 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
947 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
948
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
949 case IMAGE_COLOR_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
950 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
951 gint d = DEVICE_GTK_DEPTH (XDEVICE(device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
952
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
953 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
954 foreground =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
955 Fmake_color_instance (foreground, device,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
956 encode_error_behavior_flag (ERROR_ME));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
957
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
958 if (COLOR_INSTANCEP (foreground))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
959 fg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (foreground));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
960
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
961 if (!NILP (background) && !COLOR_INSTANCEP (background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
962 background =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
963 Fmake_color_instance (background, device,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
964 encode_error_behavior_flag (ERROR_ME));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
965
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
966 if (COLOR_INSTANCEP (background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
967 bg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (background));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
968
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
969 /* We used to duplicate the pixels using XAllocColor(), to protect
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
970 against their getting freed. Just as easy to just store the
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
971 color instances here and GC-protect them, so this doesn't
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
972 happen. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
973 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
974 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
975 IMAGE_INSTANCE_GTK_PIXMAP (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
976 gdk_pixmap_create_from_data (draw, (char *) bits, width, height, d, &fg, &bg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
977 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
978 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
979 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
980
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
981 case IMAGE_POINTER:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
982 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
983 GdkColor fg_color, bg_color;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
984 GdkPixmap *source;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
985
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
986 check_pointer_sizes (width, height, instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
987
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
988 source = gdk_pixmap_create_from_data (draw, (char *) bits, width, height, 1, &black, &white);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
989
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
990 if (NILP (foreground))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
991 foreground = pointer_fg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
992 if (NILP (background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
993 background = pointer_bg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
994 generate_cursor_fg_bg (device, &foreground, &background,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
995 &fg_color, &bg_color);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
996
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
997 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
998 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
999 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1000 find_keyword_in_vector (instantiator, Q_hotspot_x);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1001 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1002 find_keyword_in_vector (instantiator, Q_hotspot_y);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1003 IMAGE_INSTANCE_GTK_CURSOR (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1004 gdk_cursor_new_from_pixmap (source, mask, &fg_color, &bg_color,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1005 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1006 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1007 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1008 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1009 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1010 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1011
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1012 default:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1013 abort ();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1014 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1015 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1016
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1017 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1018 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1019 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1020 int dest_mask, int width, int height,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1021 /* Note that data is in ext-format! */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1022 const char *bits)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1023 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1024 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1025 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1026 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1027 GdkPixmap *mask = 0;
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1028 const Extbyte *gcc_may_you_rot_in_hell;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1029
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1030 if (!NILP (mask_data))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1031 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1032 TO_EXTERNAL_FORMAT (LISP_STRING, XCAR (XCDR (XCDR (mask_data))),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1033 C_STRING_ALLOCA, gcc_may_you_rot_in_hell,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1034 Qfile_name);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1035 mask =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1036 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1037 XINT (XCAR (mask_data)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1038 XINT (XCAR (XCDR (mask_data))),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1039 gcc_may_you_rot_in_hell);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1040 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1041
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1042 init_image_instance_from_xbm_inline (ii, width, height, bits,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1043 instantiator, pointer_fg, pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1044 dest_mask, mask, mask_file);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1045 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1046
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1047 /* Instantiate method for XBM's. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1048
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1049 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1050 gtk_xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1051 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1052 int dest_mask, Lisp_Object UNUSED (domain))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1053 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1054 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1055 const char *gcc_go_home;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1056
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1057 assert (!NILP (data));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1058
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1059 TO_EXTERNAL_FORMAT (LISP_STRING, XCAR (XCDR (XCDR (data))),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1060 C_STRING_ALLOCA, gcc_go_home,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1061 Qbinary);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1062
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1063 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1064 pointer_bg, dest_mask, XINT (XCAR (data)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1065 XINT (XCAR (XCDR (data))), gcc_go_home);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1066 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1067
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1068
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1069 #ifdef HAVE_XPM
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1070 /**********************************************************************
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1071 * XPM *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1072 **********************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1073
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1074 struct color_symbol
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1075 {
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1076 Ibyte* name;
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1077 GdkColor color;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1078 };
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1079
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1080 static struct color_symbol*
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1081 extract_xpm_color_names (Lisp_Object device,
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1082 Lisp_Object domain,
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1083 Lisp_Object color_symbol_alist,
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1084 int* nsymbols)
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1085 {
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1086 /* This function can GC */
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1087 Lisp_Object rest;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1088 Lisp_Object results = Qnil;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1089 int i, j;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1090 struct color_symbol *colortbl;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1091 struct gcpro gcpro1, gcpro2;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1092
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1093 GCPRO2 (results, device);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1094
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1095 /* We built up results to be (("name" . #<color>) ...) so that if an
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1096 error happens we don't lose any malloc()ed data, or more importantly,
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1097 leave any pixels allocated in the server. */
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1098 i = 0;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1099 LIST_LOOP (rest, color_symbol_alist)
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1100 {
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1101 Lisp_Object cons = XCAR (rest);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1102 Lisp_Object name = XCAR (cons);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1103 Lisp_Object value = XCDR (cons);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1104 if (NILP (value))
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1105 continue;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1106 if (STRINGP (value))
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1107 value =
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1108 Fmake_color_instance
793
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 778
diff changeset
1109 (value, device, encode_error_behavior_flag (ERROR_ME_DEBUG_WARN));
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1110 else
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1111 {
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1112 assert (COLOR_SPECIFIERP (value));
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1113 value = Fspecifier_instance (value, domain, Qnil, Qnil);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1114 }
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1115
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1116 if (NILP (value))
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1117 continue;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1118 results = noseeum_cons (noseeum_cons (name, value), results);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1119 i++;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1120 }
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1121 UNGCPRO; /* no more evaluation */
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1122
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1123 *nsymbols=i;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1124 if (i == 0) return 0;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1125
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1126 colortbl = xnew_array_and_zero (struct color_symbol, i);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1127
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1128 for (j=0; j<i; j++)
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1129 {
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1130 Lisp_Object cons = XCAR (results);
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1131 colortbl[j].color =
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1132 * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1133
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1134 colortbl[j].name = XSTRING_DATA (XCAR (cons));
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1135 free_cons (cons);
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1136 cons = results;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1137 results = XCDR (results);
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1138 free_cons (cons);
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1139 }
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1140 return colortbl;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1141 }
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1142
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1143 static void
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1144 gtk_xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1145 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1146 int dest_mask, Lisp_Object domain)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1147 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1148 /* This function can GC */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1149 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1150 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1151 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1152 GdkColormap *cmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1153 int depth;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1154 GdkVisual *visual;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1155 GdkPixmap *pixmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1156 GdkPixmap *mask = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1157 GdkWindow *window = 0;
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1158 int nsymbols = 0, i = 0;
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1159 struct color_symbol *color_symbols = NULL;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1160 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1161 Q_color_symbols);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1162 enum image_instance_type type;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1163 int force_mono;
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1164 gint w, h;
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1165 struct gcpro gcpro1, gcpro2, gcpro3;
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2286
diff changeset
1166 const Binbyte * volatile dstring;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1167
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1168 if (!DEVICE_GTK_P (XDEVICE (device)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1169 gui_error ("Not a Gtk device", device);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1170
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1171 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1172 type = IMAGE_COLOR_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1173 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1174 type = IMAGE_MONO_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1175 else if (dest_mask & IMAGE_POINTER_MASK)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1176 type = IMAGE_POINTER;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1177 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1178 incompatible_image_types (instantiator, dest_mask,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1179 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1180 | IMAGE_POINTER_MASK);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1181 force_mono = (type != IMAGE_COLOR_PIXMAP);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1182
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1183 GCPRO3 (device, data, color_symbol_alist);
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1184
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1185 window = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1186 cmap = DEVICE_GTK_COLORMAP (XDEVICE (device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1187 depth = DEVICE_GTK_DEPTH (XDEVICE (device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1188 visual = DEVICE_GTK_VISUAL (XDEVICE (device));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1189
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1190 gtk_initialize_pixmap_image_instance (ii, 1, type);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1191
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1192 assert (!NILP (data));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1193
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1194 /* Extract all the entries from xpm-color-symbols */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1195 color_symbols = extract_xpm_color_names (device, domain, color_symbol_alist,
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1196 &nsymbols);
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1197 assert (!NILP (data));
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1198
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1199 LISP_STRING_TO_EXTERNAL(data, dstring, Qbinary);
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1200
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1201 /*
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1202 * GTK only uses the 'c' color entry of an XPM and doesn't use the symbolic
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1203 * color names at all. This is unfortunate because the way to change the
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1204 * colors from lisp is by adding the symbolic names, and the new colors, to
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1205 * the variable xpm-color-symbols.
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1206 *
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1207 * To get around this decode the XPM, add a 'c' entry of the desired color
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1208 * for each matching symbolic color, recode the XPM and pass it to GTK. The
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1209 * decode and recode stages aren't too bad because this also performs the
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1210 * external to internal format translation, which avoids contortions like
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1211 * writing the XPM back to disk in order to get it processed.
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1212 */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1213 {
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1214 XpmImage image;
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1215 XpmInfo info;
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1216 char** data;
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1217
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1218 XpmCreateXpmImageFromBuffer ((char*) dstring, &image, &info);
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1219
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1220 for (i = 0; i < nsymbols; i++)
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1221 {
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1222 unsigned j;
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1223
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1224 for (j = 0; j < image.ncolors; j++)
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1225 {
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1226 if (image.colorTable[j].symbolic != NULL &&
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2286
diff changeset
1227 !qxestrcasecmp_ascii(color_symbols[i].name, image.colorTable[j].symbolic))
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1228 {
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2286
diff changeset
1229 image.colorTable[j].c_color = xnew_ascbytes (16);
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1230
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1231 sprintf(image.colorTable[j].c_color, "#%.4x%.4x%.4x",
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1232 color_symbols[i].color.red, color_symbols[i].color.green,
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1233 color_symbols[i].color.blue);
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1234 }
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1235 }
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1236 }
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1237
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1238 XpmCreateDataFromXpmImage (&data, &image, &info);
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1239
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1240 pixmap = gdk_pixmap_create_from_xpm_d (window, &mask, NULL,
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1241 data);
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1242 }
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1243
1726
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
1244 if (color_symbols)
a8d8f419b459 [xemacs-hg @ 2003-09-30 15:26:34 by james]
james
parents: 1346
diff changeset
1245 xfree (color_symbols, struct color_symbol *);
739
2e5e2ccbeed2 [xemacs-hg @ 2002-02-02 13:42:53 by wmperry]
wmperry
parents: 714
diff changeset
1246
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1247 if (!pixmap)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1248 signal_image_error ("Error reading pixmap", data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1249
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1250 gdk_window_get_geometry (pixmap, NULL, NULL, &w, &h, &depth);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1251
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1252 IMAGE_INSTANCE_GTK_PIXMAP (ii) = pixmap;
2082
16489ca72b3d [xemacs-hg @ 2004-05-15 07:43:05 by malcolmp]
malcolmp
parents: 2054
diff changeset
1253 IMAGE_INSTANCE_PIXMAP_MASK (ii) = (void*)mask;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1254 IMAGE_INSTANCE_GTK_COLORMAP (ii) = cmap;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1255 IMAGE_INSTANCE_GTK_PIXELS (ii) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1256 IMAGE_INSTANCE_GTK_NPIXELS (ii) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1257 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1258 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1259 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1260 find_keyword_in_vector (instantiator, Q_file);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1261
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1262 switch (type)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1263 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1264 case IMAGE_MONO_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1265 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1266
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1267 case IMAGE_COLOR_PIXMAP:
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1268 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1269 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1270
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1271 case IMAGE_POINTER:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1272 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1273 GdkColor fg, bg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1274 unsigned int xhot, yhot;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1275
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1276 /* #### Gtk does not give us access to the hotspots of a pixmap */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1277 xhot = yhot = 1;
793
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 778
diff changeset
1278 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = make_int (xhot);
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 778
diff changeset
1279 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = make_int (yhot);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1280
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1281 check_pointer_sizes (w, h, instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1282
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1283 /* If the loaded pixmap has colors allocated (meaning it came from an
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1284 XPM file), then use those as the default colors for the cursor we
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1285 create. Otherwise, default to pointer_fg and pointer_bg.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1286 */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1287 if (depth > 1)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1288 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1289 warn_when_safe (Qunimplemented, Qnotice,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1290 "GTK does not support XPM cursors...\n");
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1291 IMAGE_INSTANCE_GTK_CURSOR (ii) = gdk_cursor_new (GDK_COFFEE_MUG);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1292 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1293 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1294 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1295 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1296 &fg, &bg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1297 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1298 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1299 IMAGE_INSTANCE_GTK_CURSOR (ii) =
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1300 gdk_cursor_new_from_pixmap (pixmap, mask, &fg, &bg, xhot, yhot);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1301 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1302 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1303
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1304 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1305
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1306 default:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1307 abort ();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1308 }
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1309
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1310 UNGCPRO;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1311 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1312 #endif /* HAVE_XPM */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1313
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1314
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1315 #ifdef HAVE_XFACE
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1316
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1317 /**********************************************************************
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1318 * X-Face *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1319 **********************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1320 #if defined(EXTERN)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1321 /* This is about to get redefined! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1322 #undef EXTERN
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1323 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1324 /* We have to define SYSV32 so that compface.h includes string.h
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1325 instead of strings.h. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1326 #define SYSV32
1743
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1726
diff changeset
1327 BEGIN_C_DECLS
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1328 #include <compface.h>
1743
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1726
diff changeset
1329 END_C_DECLS
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1726
diff changeset
1330
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1331 /* JMP_BUF cannot be used here because if it doesn't get defined
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1332 to jmp_buf we end up with a conflicting type error with the
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1333 definition in compface.h */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1334 extern jmp_buf comp_env;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1335 #undef SYSV32
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1336
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1337 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1338 gtk_xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1339 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1340 int dest_mask, Lisp_Object UNUSED (domain))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1341 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1342 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1343 int i, stattis;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1344 char *p, *bits, *bp;
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1345 const char * volatile emsg = 0;
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1346 const char * volatile dstring;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1347
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1348 assert (!NILP (data));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1349
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1350 LISP_STRING_TO_EXTERNAL (data, dstring, Qbinary);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1351
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1352 if ((p = strchr (dstring, ':')))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1353 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1354 dstring = p + 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1355 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1356
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1357 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1358 if (!(stattis = setjmp (comp_env)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1359 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1360 UnCompAll ((char *) dstring);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1361 UnGenFace ();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1362 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1363
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1364 switch (stattis)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1365 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1366 case -2:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1367 emsg = "uncompface: internal error";
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1368 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1369 case -1:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1370 emsg = "uncompface: insufficient or invalid data";
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1371 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1372 case 1:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1373 emsg = "uncompface: excess data ignored";
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1374 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1375 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1376
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1377 if (emsg)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1378 gui_error_2 (emsg, data, Qimage);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1379
851
e7ee5f8bde58 [xemacs-hg @ 2002-05-23 11:46:08 by ben]
ben
parents: 826
diff changeset
1380 bp = bits = (char *) ALLOCA (PIXELS / 8);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1381
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1382 /* the compface library exports char F[], which uses a single byte per
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1383 pixel to represent a 48x48 bitmap. Yuck. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1384 for (i = 0, p = F; i < (PIXELS / 8); ++i)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1385 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1386 int n, b;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1387 /* reverse the bit order of each byte... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1388 for (b = n = 0; b < 8; ++b)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1389 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1390 n |= ((*p++) << b);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1391 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1392 *bp++ = (char) n;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1393 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1394
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1395 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1396 pointer_bg, dest_mask, 48, 48, bits);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1397 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1398
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1399 #endif /* HAVE_XFACE */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1400
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1401 /**********************************************************************
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1402 * RESOURCES *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1403 **********************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1404
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1405 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1406 gtk_resource_validate (Lisp_Object instantiator)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1407 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1408 if ((NILP (find_keyword_in_vector (instantiator, Q_file))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1409 &&
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1410 NILP (find_keyword_in_vector (instantiator, Q_resource_id)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1411 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1412 NILP (find_keyword_in_vector (instantiator, Q_resource_type)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1413 sferror ("Must supply :file, :resource-id and :resource-type",
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1414 instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1415 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1416
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1417 static Lisp_Object
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1418 gtk_resource_normalize (Lisp_Object inst, Lisp_Object console_type,
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1419 Lisp_Object dest_mask)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1420 {
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1421 return shared_resource_normalize (inst, console_type, dest_mask,
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1422 Qgtk_resource);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1423 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1424
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1425 static int
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1426 gtk_resource_possible_dest_types (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1427 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1428 return IMAGE_POINTER_MASK | IMAGE_COLOR_PIXMAP_MASK;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1429 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1430
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1431 extern guint symbol_to_enum (Lisp_Object, GtkType);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1432
2272
4ec724310f33 [xemacs-hg @ 2004-09-14 20:54:29 by james]
james
parents: 2168
diff changeset
1433 static guint resource_name_to_resource (Lisp_Object name,
4ec724310f33 [xemacs-hg @ 2004-09-14 20:54:29 by james]
james
parents: 2168
diff changeset
1434 enum image_instance_type type)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1435 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1436 if (type == IMAGE_POINTER)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1437 return (symbol_to_enum (name, GTK_TYPE_GDK_CURSOR_TYPE));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1438 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1439 return (0);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1440 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1441
2272
4ec724310f33 [xemacs-hg @ 2004-09-14 20:54:29 by james]
james
parents: 2168
diff changeset
1442 static enum image_instance_type
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1443 resource_symbol_to_type (Lisp_Object data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1444 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1445 if (EQ (data, Qcursor))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1446 return IMAGE_POINTER;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1447 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1448 else if (EQ (data, Qicon))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1449 return IMAGE_ICON;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1450 else if (EQ (data, Qbitmap))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1451 return IMAGE_BITMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1452 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1453 else
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1454 return IMAGE_UNKNOWN;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1455 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1456
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1457 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1458 gtk_resource_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1459 Lisp_Object UNUSED (pointer_fg),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1460 Lisp_Object UNUSED (pointer_bg),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1461 int UNUSED (dest_mask), Lisp_Object UNUSED (domain))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1462 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1463 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1464 GdkCursor *c = NULL;
2272
4ec724310f33 [xemacs-hg @ 2004-09-14 20:54:29 by james]
james
parents: 2168
diff changeset
1465 enum image_instance_type type;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1466 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1467 Lisp_Object resource_type = find_keyword_in_vector (instantiator, Q_resource_type);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1468 Lisp_Object resource_id = find_keyword_in_vector (instantiator, Q_resource_id);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1469
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1470 if (!DEVICE_GTK_P (XDEVICE (device)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1471 gui_error ("Not a GTK device", device);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1472
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1473 type = resource_symbol_to_type (resource_type);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1474
595
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1475 #if 0
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1476 if (dest_mask & IMAGE_POINTER_MASK && type == IMAGE_POINTER_MASK)
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1477 iitype = IMAGE_POINTER;
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1478 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1479 iitype = IMAGE_COLOR_PIXMAP;
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1480 else
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1481 incompatible_image_types (instantiator, dest_mask,
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1482 IMAGE_COLOR_PIXMAP_MASK | IMAGE_POINTER_MASK);
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1483 #endif
fec27b06b4e5 [xemacs-hg @ 2001-05-31 14:45:08 by wmperry]
wmperry
parents: 563
diff changeset
1484
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1485 /* mess with the keyword info we were provided with */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1486 gtk_initialize_pixmap_image_instance (ii, 1, type);
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1487 c = gdk_cursor_new ((GdkCursorType) resource_name_to_resource (resource_id, type));
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1488 IMAGE_INSTANCE_GTK_CURSOR (ii) = c;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1489 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = resource_id;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1490 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = 10;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1491 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = 10;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1492 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1493 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1494
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1495 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1496 check_valid_resource_symbol (Lisp_Object data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1497 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1498 CHECK_SYMBOL (data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1499 if (!resource_symbol_to_type (data))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1500 invalid_constant ("invalid resource type", data);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1501 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1502
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1503 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1504 check_valid_resource_id (Lisp_Object data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1505 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1506 if (!resource_name_to_resource (data, IMAGE_POINTER)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1507 &&
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1508 !resource_name_to_resource (data, IMAGE_COLOR_PIXMAP)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1509 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1510 &&
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1511 !resource_name_to_resource (data, IMAGE_BITMAP)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1512 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1513 )
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1514 invalid_constant ("invalid resource identifier", data);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1515 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1516
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1517 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1518 void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1519 check_valid_string_or_int (Lisp_Object data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1520 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1521 if (!INTP (data))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1522 CHECK_STRING (data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1523 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1524 CHECK_INT (data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1525 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1526 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1527
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1528
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1529 /**********************************************************************
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1530 * Autodetect *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1531 **********************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1532
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1533 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1534 autodetect_validate (Lisp_Object instantiator)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1535 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1536 data_must_be_present (instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1537 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1538
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1539 static Lisp_Object
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1540 autodetect_normalize (Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1541 Lisp_Object console_type,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1542 Lisp_Object UNUSED (dest_mask))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1543 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1544 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1545 Lisp_Object filename = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1546 Lisp_Object data = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1547 struct gcpro gcpro1, gcpro2, gcpro3;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1548 Lisp_Object alist = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1549
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1550 GCPRO3 (filename, data, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1551
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1552 if (NILP (file)) /* no conversion necessary */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1553 RETURN_UNGCPRO (instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1554
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1555 alist = tagged_vector_to_alist (instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1556
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1557 filename = locate_pixmap_file (file);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1558 if (!NILP (filename))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1559 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1560 int xhot, yhot;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1561 /* #### Apparently some versions of XpmReadFileToData, which is
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1562 called by pixmap_to_lisp_data, don't return an error value
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1563 if the given file is not a valid XPM file. Instead, they
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1564 just seg fault. It is definitely caused by passing a
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1565 bitmap. To try and avoid this we check for bitmaps first. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1566
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1567 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1568
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1569 if (!EQ (data, Qt))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1570 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1571 alist = remassq_no_quit (Q_data, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1572 alist = Fcons (Fcons (Q_file, filename),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1573 Fcons (Fcons (Q_data, data), alist));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1574 if (xhot != -1)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1575 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1576 alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1577 if (yhot != -1)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1578 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1579 alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1580
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1581 alist = xbm_mask_file_munging (alist, filename, Qnil, console_type);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1582
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1583 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1584 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1585 free_alist (alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1586 RETURN_UNGCPRO (result);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1587 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1588 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1589
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1590 #ifdef HAVE_XPM
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1591 data = pixmap_to_lisp_data (filename, 1);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1592
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1593 if (!EQ (data, Qt))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1594 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1595 alist = remassq_no_quit (Q_data, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1596 alist = Fcons (Fcons (Q_file, filename),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1597 Fcons (Fcons (Q_data, data), alist));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1598 alist = Fcons (Fcons (Q_color_symbols,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1599 evaluate_xpm_color_symbols ()),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1600 alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1601 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1602 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1603 free_alist (alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1604 RETURN_UNGCPRO (result);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1605 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1606 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1607 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1608 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1609
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1610 /* If we couldn't convert it, just put it back as it is.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1611 We might try to further frob it later as a cursor-font
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1612 specification. (We can't do that now because we don't know
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1613 what dest-types it's going to be instantiated into.) */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1614 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1615 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1616 free_alist (alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1617 RETURN_UNGCPRO (result);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1618 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1619 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1620
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1621 static int
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1622 autodetect_possible_dest_types (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1623 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1624 return
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1625 IMAGE_MONO_PIXMAP_MASK |
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1626 IMAGE_COLOR_PIXMAP_MASK |
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1627 IMAGE_POINTER_MASK |
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1628 IMAGE_TEXT_MASK;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1629 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1630
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1631 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1632 autodetect_instantiate (Lisp_Object image_instance,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1633 Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1634 Lisp_Object pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1635 Lisp_Object pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1636 int dest_mask, Lisp_Object domain)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1637 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1638 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1639 struct gcpro gcpro1, gcpro2, gcpro3;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1640 Lisp_Object alist = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1641 Lisp_Object result = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1642 int is_cursor_font = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1643
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1644 GCPRO3 (data, alist, result);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1645
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1646 alist = tagged_vector_to_alist (instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1647 if (dest_mask & IMAGE_POINTER_MASK)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1648 {
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1649 const char *name_ext;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1650
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1651 TO_EXTERNAL_FORMAT (LISP_STRING, data,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1652 C_STRING_ALLOCA, name_ext,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1653 Qfile_name);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1654
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1655 if (cursor_name_to_index (name_ext) != -1)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1656 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1657 result = alist_to_tagged_vector (Qcursor_font, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1658 is_cursor_font = 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1659 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1660 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1661
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1662 if (!is_cursor_font)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1663 result = alist_to_tagged_vector (Qstring, alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1664 free_alist (alist);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1665
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1666 if (is_cursor_font)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1667 cursor_font_instantiate (image_instance, result, pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1668 pointer_bg, dest_mask, domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1669 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1670 string_instantiate (image_instance, result, pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1671 pointer_bg, dest_mask, domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1672
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1673 UNGCPRO;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1674 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1675
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1676
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1677 /**********************************************************************
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1678 * Font *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1679 **********************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1680
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1681 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1682 font_validate (Lisp_Object instantiator)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1683 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1684 data_must_be_present (instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1685 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1686
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1687 static int
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1688 font_possible_dest_types (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1689 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1690 return IMAGE_POINTER_MASK;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1691 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1692
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1693 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1694 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1695 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1696 int dest_mask, Lisp_Object UNUSED (domain))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1697 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1698 /* This function can GC */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1699 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1700 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1701 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1702 GdkColor fg, bg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1703 GdkFont *source, *mask;
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1704 char source_name[PATH_MAX], mask_name[PATH_MAX], dummy;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1705 int source_char, mask_char;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1706 int count;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1707 Lisp_Object foreground, background;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1708
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1709 if (!DEVICE_GTK_P (XDEVICE (device)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1710 gui_error ("Not a Gtk device", device);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1711
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1712 if (!STRINGP (data) ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1713 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1714 invalid_argument ("Invalid font-glyph instantiator",
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1715 instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1716
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1717 if (!(dest_mask & IMAGE_POINTER_MASK))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1718 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1719
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1720 foreground = find_keyword_in_vector (instantiator, Q_foreground);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1721 if (NILP (foreground))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1722 foreground = pointer_fg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1723 background = find_keyword_in_vector (instantiator, Q_background);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1724 if (NILP (background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1725 background = pointer_bg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1726
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1727 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1728
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1729 count = sscanf ((char *) XSTRING_DATA (data),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1730 "FONT %s %d %s %d %c",
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1731 source_name, &source_char,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1732 mask_name, &mask_char, &dummy);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1733 /* Allow "%s %d %d" as well... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1734 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1735 count = 4, mask_name[0] = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1736
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1737 if (count != 2 && count != 4)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1738 syntax_error ("invalid cursor specification", data);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1739 source = gdk_font_load (source_name);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1740 if (! source)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1741 gui_error_2 ("couldn't load font",
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1742 build_string (source_name),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1743 data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1744 if (count == 2)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1745 mask = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1746 else if (!mask_name[0])
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1747 mask = source;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1748 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1749 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1750 mask = gdk_font_load (mask_name);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1751 if (!mask)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1752 /* continuable */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1753 Fsignal (Qgui_error, list3 (build_msg_string ("couldn't load font"),
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1754 build_string (mask_name), data));
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1755 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1756 if (!mask)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1757 mask_char = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1758
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1759 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1760
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1761 gtk_initialize_pixmap_image_instance (ii, 1, IMAGE_POINTER);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1762
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1763 IMAGE_INSTANCE_GTK_CURSOR (ii) = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1764
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1765 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1766 /* #### BILL!!! There is no way to call this function from Gdk */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1767 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1768 &fg, &bg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1769 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1770 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1771 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1772
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1773 gdk_font_unref (source);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1774 if (mask && mask != source) gdk_font_unref (mask);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1775 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1776
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1777
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1778 /**********************************************************************
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1779 * Cursor-Font *
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1780 **********************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1781
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1782 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1783 cursor_font_validate (Lisp_Object instantiator)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1784 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1785 data_must_be_present (instantiator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1786 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1787
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1788 static int
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1789 cursor_font_possible_dest_types (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1790 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1791 return IMAGE_POINTER_MASK;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1792 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1793
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1794 static char *__downcase (const char *name)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1795 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1796 char *converted = strdup(name);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1797 char *work = converted;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1798
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1799 while (*work)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1800 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1801 *work = tolower(*work);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1802 work++;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1803 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1804 return(converted);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1805 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1806
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1807 /* This is basically the equivalent of XmuCursorNameToIndex */
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1808 static GdkCursorType
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1809 cursor_name_to_index (const char *name)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1810 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1811 int i;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1812 static char *the_gdk_cursors[GDK_NUM_GLYPHS];
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1813
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1814 if (!the_gdk_cursors[GDK_BASED_ARROW_UP])
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1815 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1816 /* Need to initialize the array */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1817 /* Supposedly since this array is static it should be
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1818 initialized to NULLs for us, but I'm very paranoid. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1819 for (i = 0; i < GDK_NUM_GLYPHS; i++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1820 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1821 the_gdk_cursors[i] = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1822 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1823
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1824 #define FROB_CURSOR(x) the_gdk_cursors[GDK_##x] = __downcase(#x)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1825 FROB_CURSOR(ARROW); FROB_CURSOR(BASED_ARROW_DOWN);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1826 FROB_CURSOR(BASED_ARROW_UP); FROB_CURSOR(BOAT);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1827 FROB_CURSOR(BOGOSITY); FROB_CURSOR(BOTTOM_LEFT_CORNER);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1828 FROB_CURSOR(BOTTOM_RIGHT_CORNER); FROB_CURSOR(BOTTOM_SIDE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1829 FROB_CURSOR(BOTTOM_TEE); FROB_CURSOR(BOX_SPIRAL);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1830 FROB_CURSOR(CENTER_PTR); FROB_CURSOR(CIRCLE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1831 FROB_CURSOR(CLOCK); FROB_CURSOR(COFFEE_MUG);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1832 FROB_CURSOR(CROSS); FROB_CURSOR(CROSS_REVERSE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1833 FROB_CURSOR(CROSSHAIR); FROB_CURSOR(DIAMOND_CROSS);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1834 FROB_CURSOR(DOT); FROB_CURSOR(DOTBOX);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1835 FROB_CURSOR(DOUBLE_ARROW); FROB_CURSOR(DRAFT_LARGE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1836 FROB_CURSOR(DRAFT_SMALL); FROB_CURSOR(DRAPED_BOX);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1837 FROB_CURSOR(EXCHANGE); FROB_CURSOR(FLEUR);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1838 FROB_CURSOR(GOBBLER); FROB_CURSOR(GUMBY);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1839 FROB_CURSOR(HAND1); FROB_CURSOR(HAND2);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1840 FROB_CURSOR(HEART); FROB_CURSOR(ICON);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1841 FROB_CURSOR(IRON_CROSS); FROB_CURSOR(LEFT_PTR);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1842 FROB_CURSOR(LEFT_SIDE); FROB_CURSOR(LEFT_TEE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1843 FROB_CURSOR(LEFTBUTTON); FROB_CURSOR(LL_ANGLE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1844 FROB_CURSOR(LR_ANGLE); FROB_CURSOR(MAN);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1845 FROB_CURSOR(MIDDLEBUTTON); FROB_CURSOR(MOUSE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1846 FROB_CURSOR(PENCIL); FROB_CURSOR(PIRATE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1847 FROB_CURSOR(PLUS); FROB_CURSOR(QUESTION_ARROW);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1848 FROB_CURSOR(RIGHT_PTR); FROB_CURSOR(RIGHT_SIDE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1849 FROB_CURSOR(RIGHT_TEE); FROB_CURSOR(RIGHTBUTTON);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1850 FROB_CURSOR(RTL_LOGO); FROB_CURSOR(SAILBOAT);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1851 FROB_CURSOR(SB_DOWN_ARROW); FROB_CURSOR(SB_H_DOUBLE_ARROW);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1852 FROB_CURSOR(SB_LEFT_ARROW); FROB_CURSOR(SB_RIGHT_ARROW);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1853 FROB_CURSOR(SB_UP_ARROW); FROB_CURSOR(SB_V_DOUBLE_ARROW);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1854 FROB_CURSOR(SHUTTLE); FROB_CURSOR(SIZING);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1855 FROB_CURSOR(SPIDER); FROB_CURSOR(SPRAYCAN);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1856 FROB_CURSOR(STAR); FROB_CURSOR(TARGET);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1857 FROB_CURSOR(TCROSS); FROB_CURSOR(TOP_LEFT_ARROW);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1858 FROB_CURSOR(TOP_LEFT_CORNER); FROB_CURSOR(TOP_RIGHT_CORNER);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1859 FROB_CURSOR(TOP_SIDE); FROB_CURSOR(TOP_TEE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1860 FROB_CURSOR(TREK); FROB_CURSOR(UL_ANGLE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1861 FROB_CURSOR(UMBRELLA); FROB_CURSOR(UR_ANGLE);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1862 FROB_CURSOR(WATCH); FROB_CURSOR(XTERM);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1863 FROB_CURSOR(X_CURSOR);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1864 #undef FROB_CURSOR
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1865 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1866
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1867 for (i = 0; i < GDK_NUM_GLYPHS; i++)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1868 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1869 if (!the_gdk_cursors[i]) continue;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1870 if (!strcmp (the_gdk_cursors[i], name))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1871 {
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1872 return (GdkCursorType) i;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1873 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1874 }
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1875 return (GdkCursorType) -1;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1876 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1877
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1878 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1879 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1880 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
1881 int dest_mask, Lisp_Object UNUSED (domain))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1882 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1883 /* This function can GC */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1884 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1885 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1886 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
1887 GdkCursorType i;
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 739
diff changeset
1888 const char *name_ext;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1889 Lisp_Object foreground, background;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1890
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1891 if (!DEVICE_GTK_P (XDEVICE (device)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1892 gui_error ("Not a Gtk device", device);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1893
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1894 if (!(dest_mask & IMAGE_POINTER_MASK))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1895 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1896
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1897 TO_EXTERNAL_FORMAT (LISP_STRING, data,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1898 C_STRING_ALLOCA, name_ext,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1899 Qfile_name);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1900
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1901 if ((i = cursor_name_to_index (name_ext)) == -1)
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
1902 invalid_argument ("Unrecognized cursor-font name", data);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1903
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1904 gtk_initialize_pixmap_image_instance (ii, 1, IMAGE_POINTER);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1905 IMAGE_INSTANCE_GTK_CURSOR (ii) = gdk_cursor_new (i);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1906 foreground = find_keyword_in_vector (instantiator, Q_foreground);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1907 if (NILP (foreground))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1908 foreground = pointer_fg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1909 background = find_keyword_in_vector (instantiator, Q_background);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1910 if (NILP (background))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1911 background = pointer_bg;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1912 maybe_recolor_cursor (image_instance, foreground, background);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1913 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1914
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1915 static int
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1916 gtk_colorize_image_instance (Lisp_Object image_instance,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1917 Lisp_Object foreground, Lisp_Object background);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1918
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1919
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1920 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1921 /* subwindow and widget support */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1922 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1923
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1924 /* unmap the image if it is a widget. This is used by redisplay via
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1925 redisplay_unmap_subwindows */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1926 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1927 gtk_unmap_subwindow (Lisp_Image_Instance *p)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1928 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1929 if (IMAGE_INSTANCE_TYPE (p) == IMAGE_SUBWINDOW)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1930 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1931 /* We don't support subwindows, but we do support widgets... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1932 abort ();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1933 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1934 else /* must be a widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1935 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1936 /* Since we are being unmapped we want the enclosing frame to
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1937 get focus. The losing with simple scrolling but is the safest
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1938 thing to do. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1939 if (IMAGE_INSTANCE_GTK_CLIPWIDGET (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1940 gtk_widget_unmap (IMAGE_INSTANCE_GTK_CLIPWIDGET (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1941 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1942 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1943
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1944 /* map the subwindow. This is used by redisplay via
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1945 redisplay_output_subwindow */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1946 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1947 gtk_map_subwindow (Lisp_Image_Instance *p, int x, int y,
691
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
1948 struct display_glyph_area* dga)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1949 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1950 assert (dga->width > 0 && dga->height > 0);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1951
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1952 if (IMAGE_INSTANCE_TYPE (p) == IMAGE_SUBWINDOW)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1953 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1954 /* No subwindow support... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1955 abort ();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1956 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1957 else /* must be a widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1958 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1959 struct frame *f = XFRAME (IMAGE_INSTANCE_FRAME (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1960 GtkWidget *wid = IMAGE_INSTANCE_GTK_CLIPWIDGET (p);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1961 GtkAllocation a;
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1962 int moving;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1963
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1964 if (!wid) return;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1965
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1966 a.x = x + IMAGE_INSTANCE_GTK_WIDGET_XOFFSET (p);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1967 a.y = y + IMAGE_INSTANCE_GTK_WIDGET_YOFFSET (p);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1968 a.width = dga->width;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1969 a.height = dga->height;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1970
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1971 /* Is the widget cganging position? */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1972 moving = (a.x != wid->allocation.x) ||
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1973 (a.y != wid->allocation.y);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1974
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1975 if ((a.width != wid->allocation.width) ||
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1976 (a.height != wid->allocation.height) ||
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1977 moving)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1978 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1979 gtk_widget_size_allocate (IMAGE_INSTANCE_GTK_CLIPWIDGET (p), &a);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1980 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1981
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1982 if (moving)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1983 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1984 guint32 old_flags = GTK_WIDGET_FLAGS (FRAME_GTK_TEXT_WIDGET (f));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1985
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1986 /* GtkFixed widget queues a resize when you add a widget.
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1987 ** But only if it is visible.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1988 ** losers.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1989 */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1990 GTK_WIDGET_FLAGS(FRAME_GTK_TEXT_WIDGET (f)) &= ~GTK_VISIBLE;
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1991
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1992 if (IMAGE_INSTANCE_GTK_ALREADY_PUT(p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1993 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1994 gtk_fixed_move (GTK_FIXED (FRAME_GTK_TEXT_WIDGET (f)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1995 wid,
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
1996 a.x, a.y);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1997 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1998 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1999 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2000 IMAGE_INSTANCE_GTK_ALREADY_PUT(p) = TRUE;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2001 gtk_fixed_put (GTK_FIXED (FRAME_GTK_TEXT_WIDGET (f)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2002 wid,
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2003 a.x, a.y);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2004 }
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2005
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2006 GTK_WIDGET_FLAGS(FRAME_GTK_TEXT_WIDGET (f)) = old_flags;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2007 }
691
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2008 else
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2009 {
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2010 if (IMAGE_INSTANCE_GTK_ALREADY_PUT(p))
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2011 {
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2012 /* Do nothing... */
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2013 }
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2014 else
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2015 {
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2016 /* Must make sure we have put the image at least once! */
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2017 IMAGE_INSTANCE_GTK_ALREADY_PUT(p) = TRUE;
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2018 gtk_fixed_put (GTK_FIXED (FRAME_GTK_TEXT_WIDGET (f)),
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2019 wid,
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2020 a.x, a.y);
691
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2021 }
1df69dc58840 [xemacs-hg @ 2001-12-13 20:53:20 by wmperry]
wmperry
parents: 608
diff changeset
2022 }
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2023
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2024 if (!IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2025 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2026 gtk_widget_map (wid);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2027 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2028
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2029 gtk_widget_draw (wid, NULL);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2030 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2031 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2032
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2033 /* when you click on a widget you may activate another widget this
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2034 needs to be checked and all appropriate widgets updated */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2035 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2036 gtk_redisplay_subwindow (Lisp_Image_Instance *p)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2037 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2038 /* Update the subwindow size if necessary. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2039 if (IMAGE_INSTANCE_SIZE_CHANGED (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2040 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2041 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2042 XResizeWindow (IMAGE_INSTANCE_X_SUBWINDOW_DISPLAY (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2043 IMAGE_INSTANCE_X_SUBWINDOW_ID (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2044 IMAGE_INSTANCE_WIDTH (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2045 IMAGE_INSTANCE_HEIGHT (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2046 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2047 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2048 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2049
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2050 /* Update all attributes that have changed. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2051 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2052 gtk_redisplay_widget (Lisp_Image_Instance *p)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2053 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2054 /* This function can GC if IN_REDISPLAY is false. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2055
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2056 if (!IMAGE_INSTANCE_GTK_CLIPWIDGET (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2057 return;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2058
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2059 #ifdef HAVE_WIDGETS
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2060 /* First get the items if they have changed since this is a
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2061 structural change. As such it will nuke all added values so we
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2062 need to update most other things after the items have changed.*/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2063 gtk_widget_show_all (IMAGE_INSTANCE_GTK_CLIPWIDGET (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2064 if (IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2065 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2066 /* Need to update GtkArgs that might have changed... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2067 /* #### FIXME!!! */
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
2068 /*Lisp_Object image_instance = wrap_image_instance (p); */
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2069 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2070 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2071 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2072 /* #### FIXME!!! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2073 /* No items changed, so do nothing, right? */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2074 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2075
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2076 /* Possibly update the colors and font */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2077 if (IMAGE_INSTANCE_WIDGET_FACE_CHANGED (p)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2078 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2079 /* #### This is not sufficient because it will not cope with widgets
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2080 that are not currently visible. Once redisplay has done the
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2081 visible ones it will clear this flag so that when new ones
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2082 become visible they will not be updated. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2083 XFRAME (IMAGE_INSTANCE_FRAME (p))->faces_changed
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2084 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2085 XFRAME (IMAGE_INSTANCE_FRAME (p))->frame_changed
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2086 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2087 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2088 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2089 /* #### Write this function BILL! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2090 update_widget_face (NULL, p, IMAGE_INSTANCE_FRAME (p));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2091 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2092
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2093 /* Possibly update the text. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2094 if (IMAGE_INSTANCE_TEXT_CHANGED (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2095 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2096 char* str;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2097 Lisp_Object val = IMAGE_INSTANCE_WIDGET_TEXT (p);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2098 LISP_STRING_TO_EXTERNAL (val, str, Qnative);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2099
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2100 /* #### Need to special case each type of GtkWidget here! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2101 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2102
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2103 /* Possibly update the size. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2104 if (IMAGE_INSTANCE_SIZE_CHANGED (p)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2105 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2106 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (p)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2107 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2108 IMAGE_INSTANCE_TEXT_CHANGED (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2109 {
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2110 GtkRequisition r;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2111 GtkAllocation a = IMAGE_INSTANCE_GTK_CLIPWIDGET (p)->allocation;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2112
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2113 assert (IMAGE_INSTANCE_GTK_WIDGET_ID (p) &&
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2114 IMAGE_INSTANCE_GTK_CLIPWIDGET (p)) ;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2115
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2116 a.width = r.width = IMAGE_INSTANCE_WIDTH (p);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2117 a.height = r.height = IMAGE_INSTANCE_HEIGHT (p);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2118
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2119 /* Force the widget's preferred and actual size to what we say it shall
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2120 be. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2121 gtk_widget_size_request (IMAGE_INSTANCE_GTK_CLIPWIDGET (p), &r);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2122 gtk_widget_size_allocate (IMAGE_INSTANCE_GTK_CLIPWIDGET (p), &a);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2123 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2124
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2125 /* Adjust offsets within the frame. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2126 if (XFRAME (IMAGE_INSTANCE_FRAME (p))->size_changed)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2127 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2128 /* I don't think we need to do anything for Gtk here... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2129 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2130
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2131 /* now modify the widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2132 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2133 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2134
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2135 /* instantiate and gtk type subwindow */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2136 static void
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2137 gtk_subwindow_instantiate (Lisp_Object image_instance,
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2138 Lisp_Object UNUSED (instantiator),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2139 Lisp_Object UNUSED (pointer_fg),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2140 Lisp_Object UNUSED (pointer_bg),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2141 int UNUSED (dest_mask), Lisp_Object UNUSED (domain))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2142 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2143 /* This function can GC */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2144 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2145 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2146
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2147 if (!DEVICE_GTK_P (XDEVICE (device)))
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2148 gui_error ("Not a GTK device", device);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2149
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2150 IMAGE_INSTANCE_TYPE (ii) = IMAGE_SUBWINDOW;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2151
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2152 ii->data = xnew_and_zero (struct gtk_subwindow_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2153
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2154 /* Create a window for clipping */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2155 IMAGE_INSTANCE_GTK_CLIPWINDOW (ii) = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2156
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2157 /* Now put the subwindow inside the clip window. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2158 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = (void *) NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2159 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2160
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2161 #ifdef HAVE_WIDGETS
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2162
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2163 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2164 /* widgets */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2165 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2166 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2167 update_widget_face (GtkWidget *w, Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2168 Lisp_Object domain)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2169 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2170 if (0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2171 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2172 GtkStyle *style = gtk_widget_get_style (w);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2173 Lisp_Object pixel = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2174 GdkColor *fcolor, *bcolor;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2175
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2176 style = gtk_style_copy (style);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2177
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2178 /* Update the foreground. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2179 pixel = FACE_FOREGROUND (IMAGE_INSTANCE_WIDGET_FACE (ii), domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2180 fcolor = COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (pixel));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2181
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2182 /* Update the background. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2183 pixel = FACE_BACKGROUND (IMAGE_INSTANCE_WIDGET_FACE (ii), domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2184 bcolor = COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (pixel));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2185
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2186 /* Update the font */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2187 /* #### FIXME!!! Need to copy the widgets style, dick with it, and
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2188 ** set the widgets style to the new style...
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2189 */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2190 gtk_widget_set_style (w, style);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2191
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2192 /* #### Megahack - but its just getting too complicated to do this
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2193 in the right place. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2194 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2195 if (EQ (IMAGE_INSTANCE_WIDGET_TYPE (ii), Qtab_control))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2196 update_tab_widget_face (wv, ii, domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2197 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2198 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2199 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2200
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2201 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2202 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2203 update_tab_widget_face (GtkWidget *w, Lisp_Image_Instance *ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2204 Lisp_Object domain)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2205 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2206 if (wv->contents)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2207 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2208 widget_value* val = wv->contents, *cur;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2209
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2210 /* Give each child label the correct foreground color. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2211 Lisp_Object pixel = FACE_FOREGROUND
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2212 (IMAGE_INSTANCE_WIDGET_FACE (ii),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2213 domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2214 XColor fcolor = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (pixel));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2215 lw_add_widget_value_arg (val, XtNtabForeground, fcolor.pixel);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2216 wv->change = VISIBLE_CHANGE;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2217 val->change = VISIBLE_CHANGE;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2218
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2219 for (cur = val->next; cur; cur = cur->next)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2220 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2221 cur->change = VISIBLE_CHANGE;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2222 if (cur->value)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2223 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2224 lw_copy_widget_value_args (val, cur);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2225 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2226 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2227 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2228 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2229 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2230
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2231 static Lisp_Object
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2232 gtk_widget_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2233 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2234 Lisp_Object domain)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2235 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2236 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2237 Lisp_Object widget = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2238 char *nm = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2239 GtkWidget *w = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2240 struct gcpro gcpro1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2241
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2242 IMAGE_INSTANCE_TYPE (ii) = IMAGE_WIDGET;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2243
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2244 if (!NILP (IMAGE_INSTANCE_WIDGET_TEXT (ii)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2245 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2246 LISP_STRING_TO_EXTERNAL (IMAGE_INSTANCE_WIDGET_TEXT (ii), nm, Qnative);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2247 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2248
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2249 ii->data = xnew_and_zero (struct gtk_subwindow_data);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2250
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2251 /* Create a clipping widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2252 IMAGE_INSTANCE_GTK_CLIPWIDGET (ii) = NULL;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2253 IMAGE_INSTANCE_GTK_ALREADY_PUT(ii) = FALSE;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2254
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2255 /* Create the actual widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2256 GCPRO1 (widget);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2257 widget = call5 (Qgtk_widget_instantiate_internal,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2258 image_instance, instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2259 pointer_fg, pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2260 domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2261
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2262 if (!NILP (widget))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2263 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2264 CHECK_GTK_OBJECT (widget);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2265 w = GTK_WIDGET (XGTK_OBJECT (widget)->object);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2266 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2267 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2268 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2269 stderr_out ("Lisp-level creation of widget failed... falling back\n");
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2270 w = gtk_label_new ("Widget Creation Failed...");
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2271 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2272
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2273 UNGCPRO;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2274
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2275 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = (void *) w;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2276
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2277 /* #### HACK!!!! We should make this do the right thing if we
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2278 ** really need a clip widget!
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2279 */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2280 IMAGE_INSTANCE_GTK_CLIPWIDGET (ii) = w;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2281
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2282 /* The current theme may produce a widget of a different size that what we
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2283 expect so force reconsideration of the widget's size. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2284 IMAGE_INSTANCE_LAYOUT_CHANGED (ii) = 1;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2285
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2286 return (Qt);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2287 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2288
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2289 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2290 gtk_widget_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2291 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2292 int UNUSED (dest_mask), Lisp_Object domain)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2293 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2294 call_with_suspended_errors ((lisp_fn_t) gtk_widget_instantiate_1,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2295 Qnil, Qimage,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2296 ERROR_ME_WARN, 5,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2297 image_instance, instantiator,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2298 pointer_fg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2299 pointer_bg,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2300 domain);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2301 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2302
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2303 /* get properties of a control */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2304 static Lisp_Object
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2305 gtk_widget_property (Lisp_Object UNUSED (image_instance), Lisp_Object prop)
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2306 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2307 /* Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance); */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2308
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2309 /* get the text from a control */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2310 if (EQ (prop, Q_text))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2311 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2312 return Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2313 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2314 return Qunbound;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2315 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2316
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2317 #define FAKE_GTK_WIDGET_INSTANTIATOR(x) \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2318 static void \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2319 gtk_##x##_instantiate (Lisp_Object image_instance, \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2320 Lisp_Object instantiator, \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2321 Lisp_Object pointer_fg, \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2322 Lisp_Object pointer_bg, \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2323 int dest_mask, Lisp_Object domain) \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2324 { \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2325 gtk_widget_instantiate (image_instance, instantiator, pointer_fg, \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2326 pointer_bg, dest_mask, domain); \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2327 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2328
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2329 FAKE_GTK_WIDGET_INSTANTIATOR(native_layout);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2330 FAKE_GTK_WIDGET_INSTANTIATOR(button);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2331 FAKE_GTK_WIDGET_INSTANTIATOR(progress_gauge);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2332 FAKE_GTK_WIDGET_INSTANTIATOR(edit_field);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2333 FAKE_GTK_WIDGET_INSTANTIATOR(combo_box);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2334 FAKE_GTK_WIDGET_INSTANTIATOR(label);
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2335 /* Note: tab_control has a custom instantiator (see below) */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2336
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2337 /*
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2338 Ask the widget to return it's preferred size. This device method must
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2339 defined for all widgets that also have format specific version of
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2340 query_geometry defined in glyphs-widget.c. This is because those format
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2341 specific versions return sizes that are appropriate for the X widgets. For
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2342 GTK, the size of a widget can change at runtime due to the user changing
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2343 their theme.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2344
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2345 This method can be called before the widget is instantiated. This is
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2346 because instantiate_image_instantiator() is tying to be helpful to other
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2347 toolkits and supply sane geometry values to them. This is not appropriate
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2348 for GTK and can be ignored.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2349
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2350 This method can be used by all widgets.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2351 */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2352 static void
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2353 gtk_widget_query_geometry (Lisp_Object image_instance,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2354 int* width, int* height,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2355 enum image_instance_geometry UNUSED (disp),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2356 Lisp_Object UNUSED (domain))
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2357 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2358 Lisp_Image_Instance *p = XIMAGE_INSTANCE (image_instance);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2359
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2360 if (p->data != NULL)
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2361 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2362 GtkWidget *w = IMAGE_INSTANCE_GTK_CLIPWIDGET (p);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2363 GtkRequisition r;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2364
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2365 gtk_widget_size_request(w, &r);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2366 *height= r.height;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2367 *width = r.width;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2368 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2369 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2370
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2371
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2372 /* Button functions. */
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2373
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2374 /* Update a button's clicked state. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2375 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2376 gtk_button_redisplay (Lisp_Object image_instance)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2377 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2378 /* This function can GC if IN_REDISPLAY is false. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2379 Lisp_Image_Instance *p = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2380 GtkWidget *w = IMAGE_INSTANCE_GTK_CLIPWIDGET (p);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2381
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2382 if (GTK_WIDGET_TYPE (w) == gtk_button_get_type ())
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2383 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2384 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2385 else if (GTK_WIDGET_TYPE (w) == gtk_check_button_get_type ())
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2386 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2387 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2388 else if (GTK_WIDGET_TYPE (w) == gtk_radio_button_get_type ())
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2389 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2390 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2391 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2392 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2393 /* Unknown button type... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2394 abort();
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2395 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2396 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2397
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2398 /* get properties of a button */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2399 static Lisp_Object
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2400 gtk_button_property (Lisp_Object image_instance, Lisp_Object prop)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2401 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2402 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2403
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2404 /* check the state of a button */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2405 if (EQ (prop, Q_selected))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2406 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2407 if (GTK_WIDGET_HAS_FOCUS (IMAGE_INSTANCE_SUBWINDOW_ID (ii)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2408 return Qt;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2409 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2410 return Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2411 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2412 return Qunbound;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2413 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2414
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2415
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2416 /* Progress gauge functions. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2417
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2418 /* set the properties of a progress gauge */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2419 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2420 gtk_progress_gauge_redisplay (Lisp_Object image_instance)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2421 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2422 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2423
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2424 if (IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2425 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2426 gfloat f;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2427 Lisp_Object val;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2428
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2429 val = XGUI_ITEM (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii))->value;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2430 f = XFLOATINT (val);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2431
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2432 gtk_progress_set_value (GTK_PROGRESS (IMAGE_INSTANCE_SUBWINDOW_ID (ii)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2433 f);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2434 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2435 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2436
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2437
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2438 /* Tab Control functions. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2439
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2440 /*
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2441 Register a widget's callbacks with the frame's hashtable. The hashtable is
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2442 weak so deregistration is handled automatically. Tab controls have per-tab
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2443 callback list functions and the GTK callback architecture is not
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2444 sufficiently flexible to deal with this. Instead, the functions are
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2445 registered here and the id is passed through the callback loop.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2446 */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2447 static int
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2448 gtk_register_gui_item (Lisp_Object image_instance, Lisp_Object gui,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2449 Lisp_Object domain)
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2450 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2451 struct frame *f = XFRAME(DOMAIN_FRAME(domain));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2452 int id = gui_item_id_hash(FRAME_GTK_WIDGET_CALLBACK_HASH_TABLE(f),
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2453 gui, WIDGET_GLYPH_SLOT);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2454
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2455 Fputhash(make_int(id), image_instance,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2456 FRAME_GTK_WIDGET_INSTANCE_HASH_TABLE (f));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2457 Fputhash(make_int(id), XGUI_ITEM (gui)->callback,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2458 FRAME_GTK_WIDGET_CALLBACK_HASH_TABLE (f));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2459 Fputhash(make_int(id), XGUI_ITEM (gui)->callback_ex,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2460 FRAME_GTK_WIDGET_CALLBACK_EX_HASH_TABLE (f));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2461 return id;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2462 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2463
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2464 /*
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2465 Append the given item as a tab to the notebook. Callbacks, etc are all
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2466 setup.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2467 */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2468 static void
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2469 gtk_add_tab_item(Lisp_Object image_instance,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2470 GtkNotebook* nb, Lisp_Object item,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2471 Lisp_Object domain, int UNUSED (i))
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2472 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2473 Lisp_Object name;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2474 int hash_id = 0;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2475 char *c_name = NULL;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2476 GtkWidget* box;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2477
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2478 if (GUI_ITEMP (item))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2479 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2480 Lisp_Gui_Item *pgui = XGUI_ITEM (item);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2481
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2482 if (!STRINGP (pgui->name))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2483 pgui->name = eval_within_redisplay (pgui->name);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2484
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2485 if (!STRINGP (pgui->name)) {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2486 warn_when_safe (Qredisplay, Qwarning,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2487 "Name does not evaluate to string");
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2488
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2489 return;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2490 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2491
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2492 hash_id = gtk_register_gui_item (image_instance, item, domain);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2493 name = pgui->name;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2494 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2495 else
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2496 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2497 CHECK_STRING (item);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2498 name = item;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2499 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2500
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2501 TO_EXTERNAL_FORMAT (LISP_STRING, name,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2502 C_STRING_ALLOCA, c_name,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2503 Qctext);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2504
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2505 /* Dummy widget that the notbook wants to display when a tab is selected. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2506 box = gtk_vbox_new (FALSE, 3);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2507
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2508 /*
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2509 Store the per-tab callback data id in the tab. The callback functions
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2510 themselves could have been stored in the widget but this avoids having to
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2511 worry about the garbage collector running between here and the callback
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2512 function.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2513 */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2514 gtk_object_set_data(GTK_OBJECT(box), GTK_DATA_TAB_HASHCODE_IDENTIFIER,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2515 (gpointer) hash_id);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2516
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2517 gtk_notebook_append_page (nb, box, gtk_label_new (c_name));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2518 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2519
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2520 /* Signal handler for the switch-page signal. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2521 static void gtk_tab_control_callback(GtkNotebook *notebook,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2522 GtkNotebookPage *page,
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2523 gint UNUSED (page_num),
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2272
diff changeset
2524 gpointer UNUSED (user_data))
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2525 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2526 /*
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2527 This callback is called for every selection, not just user selection.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2528 We're only interested in user selection, which occurs outside of
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2529 redisplay.
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2530 */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2531
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2532 if (!in_display)
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2533 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2534 Lisp_Object image_instance, callback, callback_ex;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2535 Lisp_Object frame, event;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2536 int update_subwindows_p = 0;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2537 struct frame *f = gtk_widget_to_frame(GTK_WIDGET(notebook));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2538 int id;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2539
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2540 if (!f)
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2541 return;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2542 frame = wrap_frame (f);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2543
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2544 id = (int) gtk_object_get_data(GTK_OBJECT(page->child),
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2545 GTK_DATA_TAB_HASHCODE_IDENTIFIER);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2546 image_instance = Fgethash(make_int_verify(id),
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2547 FRAME_GTK_WIDGET_INSTANCE_HASH_TABLE(f), Qnil);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2548 callback = Fgethash(make_int(id),
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2549 FRAME_GTK_WIDGET_CALLBACK_HASH_TABLE(f), Qnil);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2550 callback_ex = Fgethash(make_int(id),
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2551 FRAME_GTK_WIDGET_CALLBACK_EX_HASH_TABLE(f), Qnil);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2552 update_subwindows_p = 1;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2553
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2554 /* It is possible for a widget action to cause it to get out of
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2555 sync with its instantiator. Thus it is necessary to signal
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2556 this possibility. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2557 if (IMAGE_INSTANCEP (image_instance))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2558 XIMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (image_instance) = 1;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2559
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2560 if (!NILP (callback_ex) && !UNBOUNDP (callback_ex))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2561 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2562 event = Fmake_event (Qnil, Qnil);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2563
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2564 XSET_EVENT_TYPE (event, misc_user_event);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2565 XSET_EVENT_CHANNEL (event, frame);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2566 XSET_EVENT_MISC_USER_FUNCTION (event, Qeval);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2567 XSET_EVENT_MISC_USER_OBJECT (event, list4 (Qfuncall, callback_ex, image_instance, event));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2568 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2569 else if (NILP (callback) || UNBOUNDP (callback))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2570 event = Qnil;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2571 else
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2572 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2573 Lisp_Object fn, arg;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2574
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2575 event = Fmake_event (Qnil, Qnil);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2576
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2577 get_gui_callback (callback, &fn, &arg);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2578 XSET_EVENT_TYPE (event, misc_user_event);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2579 XSET_EVENT_CHANNEL (event, frame);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2580 XSET_EVENT_MISC_USER_FUNCTION (event, fn);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2581 XSET_EVENT_MISC_USER_OBJECT (event, arg);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2582 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2583
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2584 if (!NILP (event))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2585 enqueue_dispatch_event (event);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2586
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2587 /* The result of this evaluation could cause other instances to change so
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2588 enqueue an update callback to check this. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2589 if (update_subwindows_p && !NILP (event))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2590 enqueue_magic_eval_event (update_widget_instances, frame);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2591 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2592 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2593
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2594 /* Create a tab_control widget. The special handling of the individual tabs
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2595 means that the normal instantiation code cannot be used. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2596 static void
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2597 gtk_tab_control_instantiate (Lisp_Object image_instance,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2598 Lisp_Object instantiator,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2599 Lisp_Object pointer_fg,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2600 Lisp_Object pointer_bg,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2601 int dest_mask, Lisp_Object domain)
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2602 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2603 Lisp_Object rest;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2604 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2605 int i = 0;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2606 int selected = 0;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2607 GtkNotebook *nb;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2608
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2609 /* The normal instantiation is still needed. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2610 gtk_widget_instantiate (image_instance, instantiator, pointer_fg,
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2611 pointer_bg, dest_mask, domain);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2612
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2613 nb = GTK_NOTEBOOK (IMAGE_INSTANCE_GTK_CLIPWIDGET (ii));
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2614
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2615 /* Add items to the tab, find the current selection */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2616 LIST_LOOP (rest, XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2617 {
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2618 gtk_add_tab_item (image_instance, nb, XCAR (rest), domain, i);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2619
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2620 if (gui_item_selected_p (XCAR (rest)))
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2621 selected = i;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2622
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2623 i++;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2624 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2625
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2626 gtk_notebook_set_page(nb, selected);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2627
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2628 /* Call per-tab lisp callback when a tab is pressed. */
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2629 gtk_signal_connect (GTK_OBJECT (nb), "switch-page",
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2630 GTK_SIGNAL_FUNC (gtk_tab_control_callback), NULL);
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2631 }
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2632
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2633 /* Set the properties of a tab control */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2634 static void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2635 gtk_tab_control_redisplay (Lisp_Object image_instance)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2636 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2637 /* #### Convert this to GTK baby! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2638 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2639
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2640 if (IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2641 IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2642 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2643 /* If only the order has changed then simply select the first
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2644 one of the pending set. This stops horrendous rebuilding -
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2645 and hence flicker - of the tabs each time you click on
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2646 one. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2647 if (tab_control_order_only_changed (image_instance))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2648 {
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2649 int i = 0;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2650 Lisp_Object rest, selected =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2651 gui_item_list_find_selected
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2652 (NILP (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii)) ?
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2653 XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)) :
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2654 XCDR (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii)));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2655
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2656 LIST_LOOP (rest, XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2657 {
1913
7473844a83d3 [xemacs-hg @ 2004-02-17 15:20:41 by james]
james
parents: 1743
diff changeset
2658 if (gui_item_equal_sans_selected (XCAR (rest), selected, 0))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2659 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2660 Lisp_Object old_selected =gui_item_list_find_selected
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2661 (XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2662
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2663 /* Pick up the new selected item. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2664 XGUI_ITEM (old_selected)->selected =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2665 XGUI_ITEM (XCAR (rest))->selected;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2666 XGUI_ITEM (XCAR (rest))->selected =
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2667 XGUI_ITEM (selected)->selected;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2668 /* We're not actually changing the items anymore. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2669 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2670 IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii) = Qnil;
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2671
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2672 gtk_notebook_set_page(GTK_NOTEBOOK (IMAGE_INSTANCE_GTK_CLIPWIDGET (ii)),
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2673 i);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2674 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2675 }
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2676
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2677 i++;
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2678 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2679 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2680 else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2681 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2682 /* More than just the order has changed... let's get busy! */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2683 GtkNotebook *nb = GTK_NOTEBOOK (IMAGE_INSTANCE_GTK_CLIPWIDGET (ii));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2684 guint num_pages = g_list_length (nb->children);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2685 Lisp_Object rest;
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2686 int i;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2687
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2688 /* Why is there no API to remove everything from a notebook? */
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2689 if (num_pages >= 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2690 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2691 for (i = num_pages; i >= 0; --i)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2692 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2693 gtk_notebook_remove_page (nb, i);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2694 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2695 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2696
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2697 i = 0;
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2698
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2699 LIST_LOOP (rest, XCDR (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii)))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2700 {
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2701 gtk_add_tab_item(image_instance, nb, XCAR(rest),
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2702 IMAGE_INSTANCE_FRAME(ii), i);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2703 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2704
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2705 /* Show all the new widgets we just added... */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2706 gtk_widget_show_all (GTK_WIDGET (nb));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2707 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2708 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2709
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2710 /* Possibly update the face. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2711 #if 0
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2712 if (IMAGE_INSTANCE_WIDGET_FACE_CHANGED (ii)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2713 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2714 XFRAME (IMAGE_INSTANCE_FRAME (ii))->faces_changed
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2715 ||
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2716 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2717 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2718 update_tab_widget_face (wv, ii,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2719 IMAGE_INSTANCE_FRAME (ii));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2720 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2721 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2722 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2723 #endif /* HAVE_WIDGETS */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2724
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2725
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2726 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2727 /* initialization */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2728 /************************************************************************/
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2729 void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2730 syms_of_glyphs_gtk (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2731 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2732 #ifdef HAVE_WIDGETS
563
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2733 DEFSYMBOL (Qgtk_widget_instantiate_internal);
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2734 DEFSYMBOL (Qgtk_widget_property_internal);
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2735 DEFSYMBOL (Qgtk_widget_redisplay_internal);
183866b06e0b [xemacs-hg @ 2001-05-24 07:50:48 by ben]
ben
parents: 462
diff changeset
2736 DEFSYMBOL (Qgtk_widget_set_style);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2737 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2738 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2739
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2740 void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2741 console_type_create_glyphs_gtk (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2742 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2743 /* image methods */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2744 CONSOLE_HAS_METHOD (gtk, print_image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2745 CONSOLE_HAS_METHOD (gtk, finalize_image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2746 CONSOLE_HAS_METHOD (gtk, image_instance_equal);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2747 CONSOLE_HAS_METHOD (gtk, image_instance_hash);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2748 CONSOLE_HAS_METHOD (gtk, colorize_image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2749 CONSOLE_HAS_METHOD (gtk, init_image_instance_from_eimage);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2750 CONSOLE_HAS_METHOD (gtk, locate_pixmap_file);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2751 CONSOLE_HAS_METHOD (gtk, unmap_subwindow);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2752 CONSOLE_HAS_METHOD (gtk, map_subwindow);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2753 CONSOLE_HAS_METHOD (gtk, redisplay_widget);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2754 CONSOLE_HAS_METHOD (gtk, redisplay_subwindow);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2755 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2756
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2757 void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2758 image_instantiator_format_create_glyphs_gtk (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2759 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2760 IIFORMAT_VALID_CONSOLE (gtk, nothing);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2761 IIFORMAT_VALID_CONSOLE (gtk, string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2762 #ifdef HAVE_WIDGETS
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2763 IIFORMAT_VALID_CONSOLE (gtk, layout);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2764 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2765 IIFORMAT_VALID_CONSOLE (gtk, formatted_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2766 IIFORMAT_VALID_CONSOLE (gtk, inherit);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2767 #ifdef HAVE_XPM
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2768 INITIALIZE_DEVICE_IIFORMAT (gtk, xpm);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2769 IIFORMAT_HAS_DEVMETHOD (gtk, xpm, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2770 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2771 #ifdef HAVE_JPEG
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2772 IIFORMAT_VALID_CONSOLE (gtk, jpeg);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2773 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2774 #ifdef HAVE_TIFF
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2775 IIFORMAT_VALID_CONSOLE (gtk, tiff);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2776 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2777 #ifdef HAVE_PNG
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2778 IIFORMAT_VALID_CONSOLE (gtk, png);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2779 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2780 #ifdef HAVE_GIF
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2781 IIFORMAT_VALID_CONSOLE (gtk, gif);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2782 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2783
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2784 INITIALIZE_DEVICE_IIFORMAT (gtk, subwindow);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2785 IIFORMAT_HAS_DEVMETHOD (gtk, subwindow, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2786
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2787 #ifdef HAVE_WIDGETS
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2788 /* layout widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2789 INITIALIZE_DEVICE_IIFORMAT (gtk, native_layout);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2790 IIFORMAT_HAS_DEVMETHOD (gtk, native_layout, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2791
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2792 /* button widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2793 INITIALIZE_DEVICE_IIFORMAT (gtk, button);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2794 IIFORMAT_HAS_DEVMETHOD (gtk, button, property);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2795 IIFORMAT_HAS_DEVMETHOD (gtk, button, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2796 IIFORMAT_HAS_DEVMETHOD (gtk, button, redisplay);
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2797 IIFORMAT_HAS_SHARED_DEVMETHOD (gtk, button, query_geometry, widget);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2798 /* general widget methods. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2799 INITIALIZE_DEVICE_IIFORMAT (gtk, widget);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2800 IIFORMAT_HAS_DEVMETHOD (gtk, widget, property);
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2801 IIFORMAT_HAS_DEVMETHOD (gtk, widget, query_geometry);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2802
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2803 /* progress gauge */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2804 INITIALIZE_DEVICE_IIFORMAT (gtk, progress_gauge);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2805 IIFORMAT_HAS_DEVMETHOD (gtk, progress_gauge, redisplay);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2806 IIFORMAT_HAS_DEVMETHOD (gtk, progress_gauge, instantiate);
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2807 IIFORMAT_HAS_SHARED_DEVMETHOD (gtk, progress_gauge, query_geometry, widget);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2808 /* text field */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2809 INITIALIZE_DEVICE_IIFORMAT (gtk, edit_field);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2810 IIFORMAT_HAS_DEVMETHOD (gtk, edit_field, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2811 INITIALIZE_DEVICE_IIFORMAT (gtk, combo_box);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2812 IIFORMAT_HAS_DEVMETHOD (gtk, combo_box, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2813 IIFORMAT_HAS_SHARED_DEVMETHOD (gtk, combo_box, redisplay, tab_control);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2814 /* tab control widget */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2815 INITIALIZE_DEVICE_IIFORMAT (gtk, tab_control);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2816 IIFORMAT_HAS_DEVMETHOD (gtk, tab_control, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2817 IIFORMAT_HAS_DEVMETHOD (gtk, tab_control, redisplay);
2168
95fee4a1420e [xemacs-hg @ 2004-07-07 12:00:58 by malcolmp]
malcolmp
parents: 2082
diff changeset
2818 IIFORMAT_HAS_SHARED_DEVMETHOD (gtk, tab_control, query_geometry, widget);
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2819 /* label */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2820 INITIALIZE_DEVICE_IIFORMAT (gtk, label);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2821 IIFORMAT_HAS_DEVMETHOD (gtk, label, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2822 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2823
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2824 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2825 IIFORMAT_VALID_CONSOLE (gtk, cursor_font);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2826
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2827 IIFORMAT_HAS_METHOD (cursor_font, validate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2828 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2829 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2830
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2831 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2832 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2833 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2834
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2835 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2836 IIFORMAT_VALID_CONSOLE (gtk, font);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2837
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2838 IIFORMAT_HAS_METHOD (font, validate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2839 IIFORMAT_HAS_METHOD (font, possible_dest_types);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2840 IIFORMAT_HAS_METHOD (font, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2841
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2842 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2843 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2844 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2845
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2846 #ifdef HAVE_XPM
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2847 INITIALIZE_DEVICE_IIFORMAT (gtk, xpm);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2848 IIFORMAT_HAS_DEVMETHOD (gtk, xpm, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2849 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2850
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2851 #ifdef HAVE_XFACE
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2852 INITIALIZE_DEVICE_IIFORMAT (gtk, xface);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2853 IIFORMAT_HAS_DEVMETHOD (gtk, xface, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2854 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2855
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2856 INITIALIZE_DEVICE_IIFORMAT (gtk, xbm);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2857 IIFORMAT_HAS_DEVMETHOD (gtk, xbm, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2858 IIFORMAT_VALID_CONSOLE (gtk, xbm);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2859
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2860 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (gtk_resource, "gtk-resource");
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2861 IIFORMAT_VALID_CONSOLE (gtk, gtk_resource);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2862
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2863 IIFORMAT_HAS_METHOD (gtk_resource, validate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2864 IIFORMAT_HAS_METHOD (gtk_resource, normalize);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2865 IIFORMAT_HAS_METHOD (gtk_resource, possible_dest_types);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2866 IIFORMAT_HAS_METHOD (gtk_resource, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2867
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2868 IIFORMAT_VALID_KEYWORD (gtk_resource, Q_resource_type, check_valid_resource_symbol);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2869 IIFORMAT_VALID_KEYWORD (gtk_resource, Q_resource_id, check_valid_resource_id);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2870 IIFORMAT_VALID_KEYWORD (gtk_resource, Q_file, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2871
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2872 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect, "autodetect");
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2873 IIFORMAT_VALID_CONSOLE (gtk, autodetect);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2874
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2875 IIFORMAT_HAS_METHOD (autodetect, validate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2876 IIFORMAT_HAS_METHOD (autodetect, normalize);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2877 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2878 IIFORMAT_HAS_METHOD (autodetect, instantiate);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2879
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2880 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2881 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2882
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2883 void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2884 vars_of_glyphs_gtk (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2885 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2886 #ifdef HAVE_XFACE
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2887 Fprovide (Qxface);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2888 #endif
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2889
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2890 DEFVAR_LISP ("gtk-bitmap-file-path", &Vgtk_bitmap_file_path /*
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2891 A list of the directories in which X bitmap files may be found.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2892 If nil, this is initialized from the "*bitmapFilePath" resource.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2893 This is used by the `make-image-instance' function (however, note that if
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2894 the environment variable XBMLANGPATH is set, it is consulted first).
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2895 */ );
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2896 Vgtk_bitmap_file_path = Qnil;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2897 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2898
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2899 void
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2900 complex_vars_of_glyphs_gtk (void)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2901 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2902 #define BUILD_GLYPH_INST(variable, name) \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2903 Fadd_spec_to_specifier \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2904 (GLYPH_IMAGE (XGLYPH (variable)), \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2905 vector3 (Qxbm, Q_data, \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2906 list3 (make_int (name##_width), \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2907 make_int (name##_height), \
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
2908 make_ext_string ((Extbyte*) name##_bits, \
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2909 sizeof (name##_bits), \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2910 Qbinary))), \
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2911 Qglobal, Qgtk, Qnil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2912
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2913 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2914 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2915 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2916 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2917
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2918 #undef BUILD_GLYPH_INST
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2919 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2920
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2921 /* X specific crap */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2922 #include <gdk/gdkx.h>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2923 /* #### Should remove all this X specific stuff when GTK/GDK matures a
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2924 bit more and provides an abstraction for it. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2925 static int
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2926 gtk_colorize_image_instance (Lisp_Object image_instance,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2927 Lisp_Object foreground, Lisp_Object background)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2928 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2929 struct Lisp_Image_Instance *p;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2930
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2931 p = XIMAGE_INSTANCE (image_instance);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2932
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2933 switch (IMAGE_INSTANCE_TYPE (p))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2934 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2935 case IMAGE_MONO_PIXMAP:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2936 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2937 /* Make sure there aren't two pointers to the same mask, causing
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2938 it to get freed twice. */
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2939 IMAGE_INSTANCE_GTK_MASK (p) = 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2940 break;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2941
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2942 default:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2943 return 0;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2944 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2945
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2946 {
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2947 GdkWindow *draw = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2948 GdkPixmap *new_pxmp = gdk_pixmap_new (draw,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2949 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2950 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2951 DEVICE_GTK_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2952 GdkGCValues gcv;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2953 GdkGC *gc;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2954
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2955 gcv.foreground = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (foreground));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2956 gcv.background = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (background));
2054
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
2957 gc = gdk_gc_new_with_values (new_pxmp, &gcv,
91d4c8c65a0f [xemacs-hg @ 2004-05-02 04:06:51 by malcolmp]
malcolmp
parents: 1913
diff changeset
2958 (GdkGCValuesMask) (GDK_GC_BACKGROUND | GDK_GC_FOREGROUND));
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2959
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2960 XCopyPlane (GDK_WINDOW_XDISPLAY (draw),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2961 GDK_WINDOW_XWINDOW (IMAGE_INSTANCE_GTK_PIXMAP (p)),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2962 GDK_WINDOW_XWINDOW (new_pxmp),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2963 GDK_GC_XGC (gc), 0, 0,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2964 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2965 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2966 0, 0, 1);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2967
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2968 gdk_gc_destroy (gc);
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2969 IMAGE_INSTANCE_GTK_PIXMAP (p) = new_pxmp;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2970 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = DEVICE_GTK_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2971 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2972 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2973 return 1;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2974 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2975 }
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2976