annotate lisp/forms-d2.el @ 54341:80dfe07a1d65

New file (image.c) for Image consolidation: (COLOR_TABLE_SUPPORT): New define to control whether color table support is available (X only). (Bitmap_Record): Common name for x_bitmap_record, w32_bitmap_record, and mac_bitmap_record. (XImagePtr): Common name for pointer to XImage or equivalent. (XImagePtr_or_DC): New type to simplify code sharing; equivalent to XImagePtr on X+MAC, and to HDC on W32. (GET_PIXEL): Wrapper for XGetPixel or equivalent. (NO_PIXMAP): Common name for "None" or equivalent. (PNG_BG_COLOR_SHIFT): Bits to shift PNG background colors. (RGB_PIXEL_COLOR): Common type for an integer "pixel color" value. (PIX_MASK_RETAIN, PIX_MASK_DRAW): Portability macros (from macfns.c). (FRAME_X_VISUAL, x_defined_color, DefaultDepthOfScreen): Define with suitable equivalents on W32 and MAC for code sharing. (XDrawLine): Define on MAC for code sharing. (Destroy_Image, Free_Pixmap): Wrappers for code sharing. (IF_LIB_AVAILABLE): Macro to simplify code sharing. (Vx_bitmap_file_path, Vimage_cache_eviction_delay) (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap) (x_reference_bitmap, x_create_bitmap_from_data) (x_create_bitmap_from_file, x_destroy_bitmap) (x_destroy_all_bitmaps, x_create_bitmap_mask) (XGetImage, XPutPixel, XGetPixel, XDestroyImage) (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols) (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask) (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter) (define_image_type, lookup_image_type, valid_image_p) (image_error, enum image_value_type, struct image_keyword) (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) (make_image, free_image, prepare_image_for_display, image_ascent) (four_corners_best, image_background, image_background_transparent) (x_clear_image_1, x_clear_image, x_alloc_image_color) (make_image_cache, free_image_cache, clear_image_cache) (Fclear_image_cache, postprocess_image, lookup_image, cache_image) (forall_images_in_image_cache, x_create_x_image_and_pixmap) (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file) (find_image_fsspec, image_load_qt_1, image_load_quicktime) (init_image_func_pointer, image_load_quartz2d) (struct ct_color, init_color_table, free_color_table) (lookup_rgb_color, lookup_pixel_color, colors_in_color_table) (cross_disabled_images, x_to_xcolors, x_from_xcolors) (x_detect_edges, x_emboss, x_laplace, x_edge_detection) (x_disable_image, x_build_heuristic_mask) (XBM support, XPM support, PBM support, PNG support, JPEG support) (TIFF support, GIF support, Ghostscript support): Consolidate image code from xfns.c, w32fns.c, and macfns.c. (syms_of_image): Consolidate image related symbol setup here. (init_image): Consolidate image related initializations here.
author Kim F. Storm <storm@cua.dk>
date Thu, 11 Mar 2004 00:28:24 +0000
parents 695cf19ef79e
children 24c6e1c8e0cb 375f2633d815
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47726
33d53d287ee4 Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents: 38436
diff changeset
1 ;;; forms-d2.el --- demo forms-mode -*- no-byte-compile: t -*-
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
2
Dave Love <fx@gnu.org>
parents:
diff changeset
3 ;; Author: Johan Vromans <jvromans@squirrel.nl>
Dave Love <fx@gnu.org>
parents:
diff changeset
4 ;; Created: 1989
Dave Love <fx@gnu.org>
parents:
diff changeset
5
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
6 ;; This file is part of GNU Emacs.
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
7
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
8 ;;; Commentary:
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
9
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
10 ;; This sample forms exploit most of the features of forms mode.
Dave Love <fx@gnu.org>
parents:
diff changeset
11
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
12 ;;; Code:
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
13
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
14 ;; Set the name of the data file.
Dave Love <fx@gnu.org>
parents:
diff changeset
15 (setq forms-file "forms-d2.dat")
Dave Love <fx@gnu.org>
parents:
diff changeset
16
Dave Love <fx@gnu.org>
parents:
diff changeset
17 ;; Use 'forms-enumerate' to set field names and number thereof.
Dave Love <fx@gnu.org>
parents:
diff changeset
18 (setq forms-number-of-fields
Dave Love <fx@gnu.org>
parents:
diff changeset
19 (forms-enumerate
Dave Love <fx@gnu.org>
parents:
diff changeset
20 '(arch-newsgroup ; 1
Dave Love <fx@gnu.org>
parents:
diff changeset
21 arch-volume ; 2
Dave Love <fx@gnu.org>
parents:
diff changeset
22 arch-issue ; and ...
Dave Love <fx@gnu.org>
parents:
diff changeset
23 arch-article ; ... so
Dave Love <fx@gnu.org>
parents:
diff changeset
24 arch-shortname ; ... ... on
Dave Love <fx@gnu.org>
parents:
diff changeset
25 arch-parts
Dave Love <fx@gnu.org>
parents:
diff changeset
26 arch-from
Dave Love <fx@gnu.org>
parents:
diff changeset
27 arch-longname
Dave Love <fx@gnu.org>
parents:
diff changeset
28 arch-keywords
Dave Love <fx@gnu.org>
parents:
diff changeset
29 arch-date
Dave Love <fx@gnu.org>
parents:
diff changeset
30 arch-remarks)))
Dave Love <fx@gnu.org>
parents:
diff changeset
31
Dave Love <fx@gnu.org>
parents:
diff changeset
32 ;; The following functions are used by this form for layout purposes.
Dave Love <fx@gnu.org>
parents:
diff changeset
33 ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
34 (defun arch-tocol (target &optional fill)
Dave Love <fx@gnu.org>
parents:
diff changeset
35 "Produces a string to skip to column TARGET. Prepends newline if needed.
Dave Love <fx@gnu.org>
parents:
diff changeset
36 The optional FILL should be a character, used to fill to the column."
Dave Love <fx@gnu.org>
parents:
diff changeset
37 (if (null fill)
Dave Love <fx@gnu.org>
parents:
diff changeset
38 (setq fill ? ))
Dave Love <fx@gnu.org>
parents:
diff changeset
39 (if (< target (current-column))
Dave Love <fx@gnu.org>
parents:
diff changeset
40 (concat "\n" (make-string target fill))
Dave Love <fx@gnu.org>
parents:
diff changeset
41 (make-string (- target (current-column)) fill)))
Dave Love <fx@gnu.org>
parents:
diff changeset
42 ;;
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47726
diff changeset
43 (defun arch-rj (target field &optional fill)
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
44 "Produces a string to skip to column TARGET minus the width of field FIELD.
Dave Love <fx@gnu.org>
parents:
diff changeset
45 Prepends newline if needed. The optional FILL should be a character,
Dave Love <fx@gnu.org>
parents:
diff changeset
46 used to fill to the column."
Dave Love <fx@gnu.org>
parents:
diff changeset
47 (arch-tocol (- target (length (nth field forms-fields))) fill))
Dave Love <fx@gnu.org>
parents:
diff changeset
48
Dave Love <fx@gnu.org>
parents:
diff changeset
49 ;; Record filters.
Dave Love <fx@gnu.org>
parents:
diff changeset
50 ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
51 (defun arch-new-record-filter (the-record)
Dave Love <fx@gnu.org>
parents:
diff changeset
52 "Form a new record with some defaults."
Dave Love <fx@gnu.org>
parents:
diff changeset
53 (aset the-record arch-from (user-full-name))
Dave Love <fx@gnu.org>
parents:
diff changeset
54 (aset the-record arch-date (current-time-string))
Dave Love <fx@gnu.org>
parents:
diff changeset
55 the-record ; return it
Dave Love <fx@gnu.org>
parents:
diff changeset
56 )
Dave Love <fx@gnu.org>
parents:
diff changeset
57 (setq forms-new-record-filter 'arch-new-record-filter)
Dave Love <fx@gnu.org>
parents:
diff changeset
58
Dave Love <fx@gnu.org>
parents:
diff changeset
59 ;; The format list.
Dave Love <fx@gnu.org>
parents:
diff changeset
60 (setq forms-format-list
Dave Love <fx@gnu.org>
parents:
diff changeset
61 (list
Dave Love <fx@gnu.org>
parents:
diff changeset
62 "====== Public Domain Software Archive ======\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
63 arch-shortname
Dave Love <fx@gnu.org>
parents:
diff changeset
64 " - " arch-longname
Dave Love <fx@gnu.org>
parents:
diff changeset
65 "\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
66 "Article: " arch-newsgroup
Dave Love <fx@gnu.org>
parents:
diff changeset
67 "/" arch-article
Dave Love <fx@gnu.org>
parents:
diff changeset
68 " "
Dave Love <fx@gnu.org>
parents:
diff changeset
69 '(arch-tocol 40)
Dave Love <fx@gnu.org>
parents:
diff changeset
70 "Issue: " arch-issue
Dave Love <fx@gnu.org>
parents:
diff changeset
71 " "
Dave Love <fx@gnu.org>
parents:
diff changeset
72 '(arch-rj 73 10)
Dave Love <fx@gnu.org>
parents:
diff changeset
73 "Date: " arch-date
Dave Love <fx@gnu.org>
parents:
diff changeset
74 "\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
75 "Submitted by: " arch-from
Dave Love <fx@gnu.org>
parents:
diff changeset
76 "\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
77 '(arch-tocol 79 ?-)
Dave Love <fx@gnu.org>
parents:
diff changeset
78 "\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
79 "Keywords: " arch-keywords
Dave Love <fx@gnu.org>
parents:
diff changeset
80 "\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
81 "Parts: " arch-parts
Dave Love <fx@gnu.org>
parents:
diff changeset
82 "\n\n====== Remarks ======\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
83 arch-remarks
Dave Love <fx@gnu.org>
parents:
diff changeset
84 ))
Dave Love <fx@gnu.org>
parents:
diff changeset
85
Dave Love <fx@gnu.org>
parents:
diff changeset
86 ;; That's all, folks!
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
87
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49588
diff changeset
88 ;;; arch-tag: 8e5d5dac-7abf-4722-ab5e-03eb749beaca
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
89 ;;; forms-d2.el ends here