annotate lisp/w32-vars.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 aac0a33f5772 375f2633d815
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
42846
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
1 ;;; w32-vars.el --- MS-Windows specific user options
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
2
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
3 ;; Copyright (C) 2002 Free Software Foundation, Inc.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
4
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
5 ;; Author: Jason Rumney <jasonr@gnu.org>
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
6 ;; Keywords: internal
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
7
45057
1344a9d40dc8 Follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 43539
diff changeset
8 ;; This file is part of GNU Emacs.
1344a9d40dc8 Follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 43539
diff changeset
9
45340
a0cc96a3bf71 Fix the preamble comments.
Eli Zaretskii <eliz@gnu.org>
parents: 45255
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
42846
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
13 ;; any later version.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
14
45341
1471d94c6f8a More preamble fixes.
Eli Zaretskii <eliz@gnu.org>
parents: 45340
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
42846
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
19
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
24
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
26
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
27 ;;; Code:
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
28
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
29 ;; Custom group for w32 specific settings
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
30 (defgroup w32 nil
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
31 "MS-Windows specific features"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
32 :group 'environment
45255
20c79f08a7da Change all post-21.1 :version attributes to 21.4.
Eli Zaretskii <eliz@gnu.org>
parents: 45124
diff changeset
33 :version "21.4"
42846
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
34 :prefix "w32")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
35
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
36 ;; Redefine the font selection to use the standard W32 dialog
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
37 (defcustom w32-use-w32-font-dialog t
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
38 "*Use the standard font dialog.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
39 If nil, pop up a menu of a fixed set of fonts including fontsets, like
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
40 X does. See `w32-fixed-font-alist' for the font menu definition."
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
41 :type 'boolean
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
42 :group 'w32)
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
43
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
44 (defcustom w32-list-proportional-fonts nil
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
45 "*Include proportional fonts in the default font dialog."
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
46 :type 'boolean
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
47 :group 'w32)
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
48
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
49 (defcustom w32-allow-system-shell nil
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
50 "*Disable startup warning when using \"system\" shells."
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
51 :type 'boolean
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
52 :group 'w32)
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
53
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
54 (defcustom w32-system-shells '("cmd" "cmd.exe" "command" "command.com"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
55 "4nt" "4nt.exe" "4dos" "4dos.exe"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
56 "ndos" "ndos.exe")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
57 "*List of strings recognized as Windows NT/9X system shells."
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
58 :type '(repeat string)
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
59 :group 'w32)
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
60
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
61 ;; Want "menu" custom type for this.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
62 (defcustom w32-fixed-font-alist
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
63 '("Font menu"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
64 ("Misc"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
65 ;; For these, we specify the pixel height and width.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
66 ("fixed" "Fixedsys")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
67 ("")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
68 ("Terminal 5x4"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
69 "-*-Terminal-normal-r-*-*-*-45-*-*-c-40-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
70 ("Terminal 6x8"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
71 "-*-Terminal-normal-r-*-*-*-60-*-*-c-80-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
72 ("Terminal 9x5"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
73 "-*-Terminal-normal-r-*-*-*-90-*-*-c-50-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
74 ("Terminal 9x7"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
75 "-*-Terminal-normal-r-*-*-*-90-*-*-c-70-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
76 ("Terminal 9x8"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
77 "-*-Terminal-normal-r-*-*-*-90-*-*-c-80-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
78 ("Terminal 12x12"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
79 "-*-Terminal-normal-r-*-*-*-120-*-*-c-120-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
80 ("Terminal 14x10"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
81 "-*-Terminal-normal-r-*-*-*-135-*-*-c-100-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
82 ("Terminal 6x6 Bold"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
83 "-*-Terminal-bold-r-*-*-*-60-*-*-c-60-*-oem")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
84 ("")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
85 ("Lucida Sans Typewriter.8"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
86 "-*-Lucida Sans Typewriter-normal-r-*-*-11-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
87 ("Lucida Sans Typewriter.9"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
88 "-*-Lucida Sans Typewriter-normal-r-*-*-12-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
89 ("Lucida Sans Typewriter.10"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
90 "-*-Lucida Sans Typewriter-normal-r-*-*-13-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
91 ("Lucida Sans Typewriter.11"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
92 "-*-Lucida Sans Typewriter-normal-r-*-*-15-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
93 ("Lucida Sans Typewriter.12"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
94 "-*-Lucida Sans Typewriter-normal-r-*-*-16-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
95 ("Lucida Sans Typewriter.8 Bold"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
96 "-*-Lucida Sans Typewriter-semibold-r-*-*-11-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
97 ("Lucida Sans Typewriter.9 Bold"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
98 "-*-Lucida Sans Typewriter-semibold-r-*-*-12-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
99 ("Lucida Sans Typewriter.10 Bold"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
100 "-*-Lucida Sans Typewriter-semibold-r-*-*-13-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
101 ("Lucida Sans Typewriter.11 Bold"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
102 "-*-Lucida Sans Typewriter-semibold-r-*-*-15-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
103 ("Lucida Sans Typewriter.12 Bold"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
104 "-*-Lucida Sans Typewriter-semibold-r-*-*-16-*-*-*-c-*-iso8859-1"))
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
105 ("Courier"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
106 ("Courier 10x8"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
107 "-*-Courier-*normal-r-*-*-*-97-*-*-c-80-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
108 ("Courier 12x9"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
109 "-*-Courier-*normal-r-*-*-*-120-*-*-c-90-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
110 ("Courier 15x12"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
111 "-*-Courier-*normal-r-*-*-*-150-*-*-c-120-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
112 ;; For these, we specify the point height.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
113 ("")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
114 ("8" "-*-Courier New-normal-r-*-*-11-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
115 ("9" "-*-Courier New-normal-r-*-*-12-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
116 ("10" "-*-Courier New-normal-r-*-*-13-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
117 ("11" "-*-Courier New-normal-r-*-*-15-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
118 ("12" "-*-Courier New-normal-r-*-*-16-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
119 ("8 bold" "-*-Courier New-bold-r-*-*-11-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
120 ("9 bold" "-*-Courier New-bold-r-*-*-12-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
121 ("10 bold" "-*-Courier New-bold-r-*-*-13-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
122 ("11 bold" "-*-Courier New-bold-r-*-*-15-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
123 ("12 bold" "-*-Courier New-bold-r-*-*-16-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
124 ("8 italic" "-*-Courier New-normal-i-*-*-11-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
125 ("9 italic" "-*-Courier New-normal-i-*-*-12-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
126 ("10 italic" "-*-Courier New-normal-i-*-*-13-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
127 ("11 italic" "-*-Courier New-normal-i-*-*-15-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
128 ("12 italic" "-*-Courier New-normal-i-*-*-16-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
129 ("8 bold italic" "-*-Courier New-bold-i-*-*-11-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
130 ("9 bold italic" "-*-Courier New-bold-i-*-*-12-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
131 ("10 bold italic" "-*-Courier New-bold-i-*-*-13-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
132 ("11 bold italic" "-*-Courier New-bold-i-*-*-15-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
133 ("12 bold italic" "-*-Courier New-bold-i-*-*-16-*-*-*-c-*-iso8859-1")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
134 ))
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
135 "*Fonts suitable for use in Emacs.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
136 Initially this is a list of some fixed width fonts that most people
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
137 will have like Terminal and Courier. These fonts are used in the font
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
138 menu if the variable `w32-use-w32-font-dialog' is nil."
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
139 :type '(list
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
140 (string :tag "Menu Title")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
141 (repeat :inline t
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
142 (list :tag "Submenu"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
143 (string :tag "Title")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
144 (repeat :inline t
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
145 (choice :tag ""
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
146 (const :tag "Seperator" (""))
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
147 (list :tag "Font Entry"
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
148 (string :tag "Menu text")
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
149 (string :tag "Font"))))))))
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
150
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
151 (defcustom x-select-enable-clipboard t
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
152 "*Non-nil means cutting and pasting uses the clipboard.
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
153 This is in addition to the primary selection."
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
154 :type 'boolean
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
155 :group 'killing)
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
156
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
157
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 45341
diff changeset
158 ;;; arch-tag: ee2394fb-9db7-4c15-a8f0-66b47f4a2bb1
42846
d254de347285 New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff changeset
159 ;;; w32-vars.el ends here