Support newer versions of libjpeg on MS-Windows.
[bpt/emacs.git] / lisp / term / w32-win.el
CommitLineData
0fda9b75 1;;; w32-win.el --- parse switches controlling interface with W32 window system -*- lexical-binding: t -*-
2fe590dc 2
ab422c4d 3;; Copyright (C) 1993-1994, 2001-2013 Free Software Foundation, Inc.
ee78dc32
GV
4
5;; Author: Kevin Gallo
6;; Keywords: terminals
7
2fe590dc
EN
8;; This file is part of GNU Emacs.
9
1fecc8fe 10;; GNU Emacs is free software: you can redistribute it and/or modify
2fe590dc 11;; it under the terms of the GNU General Public License as published by
1fecc8fe
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
2fe590dc
EN
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
1fecc8fe 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
ee78dc32
GV
22
23;;; Commentary:
24
b63f9ba1
GV
25;; w32-win.el: this file is loaded from ../lisp/startup.el when it recognizes
26;; that W32 windows are to be used. Command line switches are parsed and those
27;; pertaining to W32 are processed and removed from the command line. The
28;; W32 display is opened and hooks are set for popping up the initial window.
ee78dc32
GV
29
30;; startup.el will then examine startup files, and eventually call the hooks
31;; which create the first window (s).
32
33;;; Code:
34\f
35
36;; These are the standard X switches from the Xt Initialize.c file of
37;; Release 4.
38
39;; Command line Resource Manager string
40
41;; +rv *reverseVideo
42;; +synchronous *synchronous
43;; -background *background
44;; -bd *borderColor
45;; -bg *background
46;; -bordercolor *borderColor
47;; -borderwidth .borderWidth
48;; -bw .borderWidth
49;; -display .display
50;; -fg *foreground
51;; -fn *font
52;; -font *font
53;; -foreground *foreground
54;; -geometry .geometry
55;; -i .iconType
56;; -itype .iconType
57;; -iconic .iconic
58;; -name .name
59;; -reverse *reverseVideo
60;; -rv *reverseVideo
61;; -selectionTimeout .selectionTimeout
62;; -synchronous *synchronous
63;; -xrm
64
65;; An alist of X options and the function which handles them. See
66;; ../startup.el.
67
c60b74b4
JR
68;; (if (not (eq window-system 'w32))
69;; (error "%s: Loading w32-win.el but not compiled for w32" (invocation-name)))
db95369b 70
efc3dd3c 71(eval-when-compile (require 'cl-lib))
ee78dc32
GV
72(require 'frame)
73(require 'mouse)
74(require 'scroll-bar)
75(require 'faces)
76(require 'select)
77(require 'menu-bar)
6bc52abc 78(require 'dnd)
729f1525 79(require 'w32-vars)
b0efcd2e 80
c6524989
JR
81;; Keep an obsolete alias for w32-focus-frame and w32-select-font in case
82;; they are used by code outside Emacs.
44fe0f65 83(define-obsolete-function-alias 'w32-focus-frame 'x-focus-frame "23.1")
a70f4c6f
GM
84(declare-function x-select-font "w32font.c"
85 (&optional frame exclude-proportional))
c6524989 86(define-obsolete-function-alias 'w32-select-font 'x-select-font "23.1")
44fe0f65 87
729f1525 88(defvar w32-color-map) ;; defined in w32fns.c
5430d399 89(make-obsolete 'w32-default-color-map nil "24.1")
b01f27a3 90
73e6adaa 91(declare-function w32-send-sys-command "w32fns.c")
9a5f296f 92(declare-function set-message-beep "w32fns.c")
73e6adaa 93
6e9f7997 94(declare-function cygwin-convert-file-name-from-windows "cygw32.c"
d7fe6352 95 (path &optional absolute_p))
3804f7bc 96
b05f815e 97;; Conditional on new-fontset so bootstrapping works on non-GUI compiles
64f41d64
JR
98(if (fboundp 'new-fontset)
99 (require 'fontset))
ee78dc32 100
15f18b89 101;; The following definition is used for debugging scroll bar events.
fbd6baed 102;(defun w32-handle-scroll-bar-event (event) (interactive "e") (princ event))
af99aa46 103
31358bee
JR
104;; (defun w32-drag-n-drop-debug (event)
105;; "Print the drag-n-drop EVENT in a readable form."
106;; (interactive "e")
107;; (princ event))
33b307f8 108
0fda9b75
DC
109(defun w32-handle-dropped-file (window file-name)
110 (let ((f (if (eq system-type 'cygwin)
6e9f7997 111 (cygwin-convert-file-name-from-windows file-name t)
0fda9b75
DC
112 (subst-char-in-string ?\\ ?/ file-name)))
113 (coding (or file-name-coding-system
114 default-file-name-coding-system)))
115
116 (setq file-name
117 (mapconcat 'url-hexify-string
118 (split-string (encode-coding-string f coding)
119 "/")
120 "/")))
121 (dnd-handle-one-url window 'private
3804f7bc
EZ
122 (concat
123 (if (eq system-type 'cygwin)
124 "file://"
125 "file:")
126 file-name)))
0fda9b75
DC
127
128(defun w32-drag-n-drop (event &optional new-frame)
de0c7b5d 129 "Edit the files listed in the drag-n-drop EVENT.
33b307f8
RS
130Switch to a buffer editing the last file dropped."
131 (interactive "e")
c8316112 132 (save-excursion
35a8911d
GM
133 ;; Make sure the drop target has positive co-ords
134 ;; before setting the selected frame - otherwise it
135 ;; won't work. <skx@tardis.ed.ac.uk>
136 (let* ((window (posn-window (event-start event)))
137 (coords (posn-x-y (event-start event)))
138 (x (car coords))
139 (y (cdr coords)))
140 (if (and (> x 0) (> y 0))
141 (set-frame-selected-window nil window))
0fda9b75
DC
142
143 (when new-frame
144 (select-frame (make-frame)))
145 (raise-frame)
146 (setq window (selected-window))
147
148 (mapc (apply-partially #'w32-handle-dropped-file window)
149 (car (cdr (cdr event)))))))
33b307f8
RS
150
151(defun w32-drag-n-drop-other-frame (event)
de0c7b5d 152 "Edit the files listed in the drag-n-drop EVENT, in other frames.
33b307f8
RS
153May create new frames, or reuse existing ones. The frame editing
154the last file dropped is selected."
155 (interactive "e")
0fda9b75 156 (w32-drag-n-drop event t))
33b307f8
RS
157
158;; Bind the drag-n-drop event.
159(global-set-key [drag-n-drop] 'w32-drag-n-drop)
160(global-set-key [C-drag-n-drop] 'w32-drag-n-drop-other-frame)
161
a73c80a3
GV
162;; Keyboard layout/language change events
163;; For now ignore language-change events; in the future
164;; we should switch the Emacs Input Method to match the
165;; new layout/language selected by the user.
166(global-set-key [language-change] 'ignore)
167
aa360da1
GM
168(defvar x-resource-name)
169
ee78dc32 170\f
ee78dc32
GV
171;;;; Function keys
172
7eb1e453
MB
173 ;;; make f10 activate the real menubar rather than the mini-buffer menu
174 ;;; navigation feature.
14f3467e 175 (defun w32-menu-bar-open (&optional frame)
7eb1e453 176 "Start key navigation of the menu bar in FRAME.
b15c31c7 177
14f3467e
JR
178This initially activates the first menu-bar item, and you can then navigate
179with the arrow keys, select a menu entry with the Return key or cancel with
180the Escape key. If FRAME has no menu bar, this function does nothing.
b15c31c7 181
14f3467e
JR
182If FRAME is nil or not given, use the selected frame.
183If FRAME does not have the menu bar enabled, display a text menu using
184`tmm-menubar'."
7eb1e453 185 (interactive "i")
14f3467e
JR
186 (if menu-bar-mode
187 (w32-send-sys-command ?\xf100 frame)
188 (with-selected-frame (or frame (selected-frame))
189 (tmm-menubar))))
ee78dc32 190\f
ee78dc32 191
4664455c
GV
192;; W32 systems have different fonts than commonly found on X, so
193;; we define our own standard fontset here.
194(defvar w32-standard-fontset-spec
e7a8ad1f 195 "-*-Courier New-normal-r-*-*-13-*-*-*-c-*-fontset-standard"
de0c7b5d
JR
196 "String of fontset spec of the standard fontset.
197This defines a fontset consisting of the Courier New variations for
198European languages which are distributed with Windows as
199\"Multilanguage Support\".
4664455c 200
885a56fe 201See the documentation of `create-fontset-from-fontset-spec' for the format.")
4664455c 202
ee78dc32 203(defun x-win-suspend-error ()
de0c7b5d
JR
204 "Report an error when a suspend is attempted."
205 (error "Suspending an Emacs running under W32 makes no sense"))
ee78dc32 206
2e288d54 207(defvar dynamic-library-alist)
8d7b5b5b 208(defvar libpng-version) ; image.c #ifdef HAVE_NTGUI
aa360da1 209
2e288d54
JB
210;;; Set default known names for external libraries
211(setq dynamic-library-alist
5be1c984
EZ
212 (list
213 '(xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll")
214 ;; Versions of libpng 1.4.x and later are incompatible with
215 ;; earlier versions. Set up the list of libraries according to
216 ;; the version we were compiled against. (If we were compiled
217 ;; without PNG support, libpng-version's value is -1.)
218 (if (>= libpng-version 10400)
219 ;; libpng14-14.dll is libpng 1.4.3 from GTK+
220 '(png "libpng14-14.dll" "libpng14.dll")
221 '(png "libpng12d.dll" "libpng12.dll" "libpng3.dll" "libpng.dll"
222 ;; these are libpng 1.2.8 from GTK+
223 "libpng13d.dll" "libpng13.dll"))
0898ca10 224 '(tiff "libtiff3.dll" "libtiff.dll")
d14c81ee
CB
225 (if (> libjpeg-version 62)
226 ;; Versions of libjpeg after 6b are incompatible with
227 ;; earlier versions, and each of versions 7, 8, and 9 is
228 ;; also incompatible with the preceding ones (the core data
229 ;; structures used for communications with the library
230 ;; gained additional members with each new version). So we
231 ;; must use only the version of the library which Emacs was
232 ;; compiled against.
233 (list 'jpeg (format "libjpeg-%d.dll" (/ libjpeg-version 10)))
234 '(jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll"))
a5dab159
EZ
235 ;; Versions of giflib 5.0.0 and later changed signatures of
236 ;; several functions used by Emacs, which makes those versions
237 ;; incompatible with previous ones. We select the correct
238 ;; libraries according to the version of giflib we were
239 ;; compiled against. (If we were compiled without GIF support,
240 ;; libgif-version's value is -1.)
241 (if (>= libgif-version 50000)
242 ;; Yes, giflib 5.x uses 6 as the major version of the API,
243 ;; thus "libgif-6.dll" below (giflib 4.x used 5 as the
244 ;; major API version).
245 ;; giflib5.dll is from the lua-files project.
246 '(gif "libgif-6.dll" "giflib5.dll")
247 '(gif "libgif-5.dll" "giflib4.dll" "libungif4.dll" "libungif.dll"))
0898ca10
JB
248 '(svg "librsvg-2-2.dll")
249 '(gdk-pixbuf "libgdk_pixbuf-2.0-0.dll")
250 '(glib "libglib-2.0-0.dll")
251 '(gobject "libgobject-2.0-0.dll")
9078ead6 252 '(gnutls "libgnutls-28.dll" "libgnutls-26.dll")
594a4307
EZ
253 '(libxml2 "libxml2-2.dll" "libxml2.dll")
254 '(zlib "zlib1.dll" "libz-1.dll")))
fe347034 255
eacf409f
JR
256;;; multi-tty support
257(defvar w32-initialized nil
258 "Non-nil if the w32 window system has been initialized.")
259
aa360da1
GM
260(declare-function x-open-connection "w32fns.c"
261 (display &optional xrm-string must-succeed))
5fa89513 262(declare-function create-default-fontset "fontset" ())
aa360da1
GM
263(declare-function create-fontset-from-fontset-spec "fontset"
264 (fontset-spec &optional style-variant noerror))
265(declare-function create-fontset-from-x-resource "fontset" ())
266(declare-function x-get-resource "frame.c"
267 (attribute class &optional component subclass))
f2d9c15f
GM
268(declare-function x-handle-args "common-win" (args))
269(declare-function x-parse-geometry "frame.c" (string))
270(defvar x-command-line-resources)
aa360da1 271
51646b62 272(defun w32-initialize-window-system (&optional _display)
c60b74b4 273 "Initialize Emacs for W32 GUI frames."
efc3dd3c 274 (cl-assert (not w32-initialized))
00954c67
JR
275
276 ;; Do the actual Windows setup here; the above code just defines
277 ;; functions and variables that we use now.
278
279 (setq command-line-args (x-handle-args command-line-args))
280
281 ;; Make sure we have a valid resource name.
282 (or (stringp x-resource-name)
283 (setq x-resource-name
284 ;; Change any . or * characters in x-resource-name to hyphens,
285 ;; so as not to choke when we use it in X resource queries.
286 (replace-regexp-in-string "[.*]" "-" (invocation-name))))
287
efc3dd3c 288 (x-open-connection "w32" x-command-line-resources
eacf409f
JR
289 ;; Exit with a fatal error if this fails and we
290 ;; are the initial display
291 (eq initial-window-system 'w32))
00954c67 292
0311148f
KH
293 ;; Create the default fontset.
294 (create-default-fontset)
00954c67 295 ;; Create the standard fontset.
0311148f
KH
296 (condition-case err
297 (create-fontset-from-fontset-spec w32-standard-fontset-spec t)
b15c31c7 298 (error (display-warning
0311148f
KH
299 'initialization
300 (format "Creation of the standard fontset failed: %s" err)
301 :error)))
00954c67
JR
302 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1,...).
303 (create-fontset-from-x-resource)
00954c67
JR
304
305 ;; Apply a geometry resource to the initial frame. Put it at the end
306 ;; of the alist, so that anything specified on the command line takes
307 ;; precedence.
308 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
309 parsed)
310 (if res-geometry
311 (progn
312 (setq parsed (x-parse-geometry res-geometry))
313 ;; If the resource specifies a position,
314 ;; call the position and size "user-specified".
315 (if (or (assq 'top parsed) (assq 'left parsed))
316 (setq parsed (cons '(user-position . t)
317 (cons '(user-size . t) parsed))))
318 ;; All geometry parms apply to the initial frame.
319 (setq initial-frame-alist (append initial-frame-alist parsed))
320 ;; The size parms apply to all frames.
aaa5e420
JR
321 (if (and (assq 'height parsed)
322 (not (assq 'height default-frame-alist)))
323 (setq default-frame-alist
324 (cons (cons 'height (cdr (assq 'height parsed)))
325 default-frame-alist))
326 (if (and (assq 'width parsed)
327 (not (assq 'width default-frame-alist)))
328 (setq default-frame-alist
329 (cons (cons 'width (cdr (assq 'width parsed)))
330 default-frame-alist)))))))
00954c67 331
eacf409f
JR
332 ;; Check the reverseVideo resource.
333 (let ((case-fold-search t))
334 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
335 (if (and rv (string-match "^\\(true\\|yes\\|on\\)$" rv))
aaa5e420
JR
336 (setq default-frame-alist
337 (cons '(reverse . t) default-frame-alist)))))
eacf409f 338
efc3dd3c 339 ;; Don't let Emacs suspend under Windows.
00954c67
JR
340 (add-hook 'suspend-hook 'x-win-suspend-error)
341
342 ;; Turn off window-splitting optimization; w32 is usually fast enough
343 ;; that this is only annoying.
344 (setq split-window-keep-point t)
345
eacf409f
JR
346 ;; W32 expects the menu bar cut and paste commands to use the clipboard.
347 (menu-bar-enable-clipboard)
348
00954c67
JR
349 ;; Don't show the frame name; that's redundant.
350 (setq-default mode-line-frame-identification " ")
351
352 ;; Set to a system sound if you want a fancy bell.
353 (set-message-beep 'ok)
15cd8efd 354 (x-apply-session-resources)
eacf409f 355 (setq w32-initialized t))
c60b74b4 356
efc3dd3c 357(add-to-list 'display-format-alist '("\\`w32\\'" . w32))
c60b74b4
JR
358(add-to-list 'handle-args-function-alist '(w32 . x-handle-args))
359(add-to-list 'frame-creation-function-alist '(w32 . x-create-frame-with-faces))
360(add-to-list 'window-system-initialization-alist '(w32 . w32-initialize-window-system))
361
362(provide 'w32-win)
fe347034 363
b63f9ba1 364;;; w32-win.el ends here