Mercurial > hg > xemacs-beta
comparison lisp/msw-mouse.el @ 286:57709be46d1b r21-0b41
Import from CVS: tag r21-0b41
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:35:03 +0200 |
parents | |
children | c9fe270a4101 |
comparison
equal
deleted
inserted
replaced
285:9a3756523c1b | 286:57709be46d1b |
---|---|
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 [resource :resource-type cursor :resource-id "Ibeam"]) | |
35 (set-glyph-image nontext-pointer-glyph | |
36 [resource :resource-type cursor :resource-id "Normal"]) | |
37 (set-glyph-image modeline-pointer-glyph | |
38 [resource :resource-type cursor :resource-id "SizeNS"]) | |
39 (set-glyph-image divider-pointer-glyph | |
40 [resource :resource-type cursor :resource-id "SizeWE"]) | |
41 (set-glyph-image busy-pointer-glyph | |
42 [resource :resource-type cursor :resource-id "Wait"]) | |
43 (set-glyph-image gc-pointer-glyph | |
44 [resource :resource-type cursor :resource-id "Wait"]) | |
45 | |
46 ;;; msw-mouse.el ends here |