428
+ − 1 ;;; msw-mouse.el --- Mouse support for MS Windows.
+ − 2
+ − 3 ;; Copyright (C) 1998 Kirill M. Katsnelson
+ − 4
+ − 5 ;; Maintainer: XEmacs Development Team
+ − 6 ;; Keywords: mouse, dumped
+ − 7
+ − 8 ;; This file is part of XEmacs.
+ − 9
+ − 10 ;; XEmacs is free software; you can redistribute it and/or modify it
+ − 11 ;; under the terms of the GNU General Public License as published by
+ − 12 ;; the Free Software Foundation; either version 2, or (at your option)
+ − 13 ;; any later version.
+ − 14
+ − 15 ;; XEmacs is distributed in the hope that it will be useful, but
+ − 16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
+ − 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ − 18 ;; General Public License for more details.
+ − 19
+ − 20 ;; You should have received a copy of the GNU General Public License
+ − 21 ;; along with XEmacs; see the file COPYING. If not, write to the
+ − 22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ − 23 ;; Boston, MA 02111-1307, USA.
+ − 24
+ − 25 ;;; Synched up with: Not synched.
+ − 26
+ − 27 ;;; Commentary:
+ − 28
+ − 29 ;; This file is dumped with XEmacs (when Windows support is compiled in).
+ − 30
+ − 31 ;;; Code:
+ − 32
+ − 33 (set-glyph-image text-pointer-glyph
+ − 34 [mswindows-resource :resource-type cursor :resource-id "Ibeam"])
+ − 35 (set-glyph-image nontext-pointer-glyph
+ − 36 [mswindows-resource :resource-type cursor :resource-id "Normal"])
+ − 37 (set-glyph-image selection-pointer-glyph
+ − 38 [mswindows-resource :resource-type cursor :resource-id "Normal"])
+ − 39 (set-glyph-image modeline-pointer-glyph
+ − 40 [mswindows-resource :resource-type cursor :resource-id "SizeNS"])
+ − 41 (set-glyph-image divider-pointer-glyph
+ − 42 [mswindows-resource :resource-type cursor :resource-id "SizeWE"])
+ − 43 (set-glyph-image busy-pointer-glyph
+ − 44 [mswindows-resource :resource-type cursor :resource-id "Wait"])
+ − 45 (set-glyph-image gc-pointer-glyph
+ − 46 [mswindows-resource :resource-type cursor :resource-id "Wait"])
+ − 47
+ − 48 ;;; msw-mouse.el ends here