(comment-region): Do move to next line, in neg arg case.
[bpt/emacs.git] / lisp / sun-curs.el
CommitLineData
c88ab9ce
ER
1;;; sun-cursors.el --- cursor definitions for Sun windows
2
0d20f9a0
JB
3;; Copyright (C) 1987 Free Software Foundation, Inc.
4
eea8d4ef
ER
5;; Author: Jeff Peck <peck@sun.com>
6
0d20f9a0
JB
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
e5167999 11;; the Free Software Foundation; either version 2, or (at your option)
0d20f9a0
JB
12;; any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs; see the file COPYING. If not, write to
21;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22
e5167999
ER
23;;; Code:
24
0d20f9a0
JB
25;;;
26;;; Added some more cursors and moved the hot spots
27;;; Cursor defined by 16 pairs of 16-bit numbers
28;;;
29;;; 9-dec-86 Jeff Peck, Sun Microsystems Inc. <peck@sun.com>
30
e8a57935
JB
31(require 'cl)
32
0d20f9a0
JB
33(defvar sc::cursors nil "List of known cursors")
34
35(defmacro defcursor (name x y string)
36 (if (not (memq name sc::cursors))
37 (setq sc::cursors (cons name sc::cursors)))
38 (list 'defconst name (list 'vector x y string)))
39
40;;; push should be defined in common lisp, but if not use this:
41;(defmacro push (v l)
42; "The ITEM is evaluated and consed onto LIST, a list-valued atom"
43; (list 'setq l (list 'cons v l)))
44
45;;;
46;;; The standard default cursor
47;;;
48(defcursor sc:right-arrow 15 0
49 (concat '(0 1 0 3 0 7 0 15 0 31 0 63 0 127 0 15
50 0 27 0 25 0 48 0 48 0 96 0 96 0 192 0 192)))
51
52;;(sc:set-cursor sc:right-arrow)
53
54(defcursor sc:fat-left-arrow 0 8
55 (concat '(1 0 3 0 7 0 15 0 31 0 63 255 127 255 255 255
56 255 255 127 255 63 255 31 0 15 0 7 0 3 0 1 0)))
57
58(defcursor sc:box 8 8
59 (concat '(15 252 8 4 8 4 8 4 8 4 8 4 8 4 8 4
60 8 132 8 4 8 4 8 4 8 4 8 4 8 4 15 252)))
61
62(defcursor sc:hourglass 8 8
63 (concat "\177\376\100\002\040\014\032\070"
64 "\017\360\007\340\003\300\001\200"
65 "\001\200\002\100\005\040\010\020"
66 "\021\210\043\304\107\342\177\376"))
67
68(defun sc:set-cursor (icon)
69 "Change the Sun mouse cursor to ICON.
70If ICON is nil, switch to the system default cursor,
71Otherwise, ICON should be a vector or the name of a vector of [x y 32-chars]"
72 (interactive "XIcon Name: ")
73 (if (symbolp icon) (setq icon (symbol-value icon)))
74 (sun-change-cursor-icon icon))
75
76(make-local-variable '*edit-icon*)
77(make-variable-buffer-local 'icon-edit)
78(setq-default icon-edit nil)
79(or (assq 'icon-edit minor-mode-alist)
80 (push '(icon-edit " IconEdit") minor-mode-alist))
81
82(defun sc:edit-cursor (icon)
83 "convert icon to rectangle, edit, and repack"
84 (interactive "XIcon Name: ")
85 (if (not icon) (setq icon (sc::menu-choose-cursor (selected-window) 1 1)))
86 (if (symbolp icon) (setq icon (symbol-value icon)))
87 (if (get-buffer "icon-edit") (kill-buffer "icon-edit"))
88 (switch-to-buffer "icon-edit")
89 (local-set-mouse '(text right) 'sc::menu-function)
90 (local-set-mouse '(text left) '(sc::pic-ins-at-mouse 32))
91 (local-set-mouse '(text middle) '(sc::pic-ins-at-mouse 64))
92 (local-set-mouse '(text left middle) 'sc::hotspot)
93 (sc::display-icon icon)
94 (picture-mode)
95 (setq icon-edit t) ; for mode line display
96)
97\f
98(defun sc::pic-ins-at-mouse (char)
99 "Picture insert char at mouse location"
100 (mouse-move-point *mouse-window* (min 15 *mouse-x*) (min 15 *mouse-y*))
e8a57935 101 (move-to-column (1+ (min 15 (current-column))) t)
0d20f9a0
JB
102 (delete-char -1)
103 (insert char)
104 (sc::goto-hotspot))
105
106(defun sc::menu-function (window x y)
107 (sun-menu-evaluate window (1+ x) y sc::menu))
108
109(defmenu sc::menu
110 ("Cursor Menu")
111 ("Pack & Use" sc::pack-buffer-to-cursor)
112 ("Pack to Icon" sc::pack-buffer-to-icon
113 (sc::menu-choose-cursor *menu-window* *menu-x* *menu-y*))
114 ("New Icon" call-interactively 'sc::make-cursor)
115 ("Edit Icon" sc:edit-cursor
116 (sc::menu-choose-cursor *menu-window* *menu-x* *menu-y*))
117 ("Set Cursor" sc:set-cursor
118 (sc::menu-choose-cursor *menu-window* *menu-x* *menu-y*))
119 ("Reset Cursor" sc:set-cursor nil)
120 ("Help". sc::edit-icon-help-menu)
121 ("Quit" sc::quit-edit)
122 )
123
124(defun sc::quit-edit ()
125 (interactive)
126 (bury-buffer (current-buffer))
127 (switch-to-buffer (other-buffer) 'no-record))
128
129(defun sc::make-cursor (symbol)
130 (interactive "SIcon Name: ")
131 (eval (list 'defcursor symbol 0 0 ""))
132 (sc::pack-buffer-to-icon (symbol-value symbol)))
133
134(defmenu sc::edit-icon-help-menu
135 ("Simple Icon Editor")
136 ("Left => CLEAR")
137 ("Middle => SET")
138 ("L & M => HOTSPOT")
139 ("Right => MENU"))
140
141(defun sc::edit-icon-help ()
142 (message "Left=> CLEAR Middle=> SET Left+Middle=> HOTSPOT Right=> MENU"))
143
144(defun sc::pack-buffer-to-cursor ()
145 (sc::pack-buffer-to-icon *edit-icon*)
146 (sc:set-cursor *edit-icon*))
147
148(defun sc::menu-choose-cursor (window x y)
149 "Presents a menu of cursor names, and returns one or nil"
150 (let ((curs sc::cursors)
151 (items))
152 (while curs
153 (push (sc::menu-item-for-cursor (car curs)) items)
154 (setq curs (cdr curs)))
155 (push (list "Choose Cursor") items)
156 (setq menu (menu-create items))
157 (sun-menu-evaluate window x y menu)))
158
159(defun sc::menu-item-for-cursor (cursor)
160 "apply function to selected cursor"
161 (list (symbol-name cursor) 'quote cursor))
162
163(defun sc::hotspot (window x y)
164 (aset *edit-icon* 0 x)
165 (aset *edit-icon* 1 y)
166 (sc::goto-hotspot))
167
168(defun sc::goto-hotspot ()
169 (goto-line (1+ (aref *edit-icon* 1)))
170 (move-to-column (aref *edit-icon* 0)))
171
172(defun sc::display-icon (icon)
173 (setq *edit-icon* (copy-sequence icon))
174 (let ((string (aref *edit-icon* 2))
175 (index 0))
176 (while (< index 32)
177 (let ((char (aref string index))
178 (bit 128))
179 (while (> bit 0)
180 (insert (sc::char-at-bit char bit))
181 (setq bit (lsh bit -1))))
182 (if (eq 1 (% index 2)) (newline))
183 (setq index (1+ index))))
184 (sc::goto-hotspot))
185
186(defun sc::char-at-bit (char bit)
187 (if (> (logand char bit) 0) "@" " "))
188
189(defun sc::pack-buffer-to-icon (icon)
190 "Pack 16 x 16 field into icon string"
191 (goto-char (point-min))
192 (aset icon 0 (aref *edit-icon* 0))
193 (aset icon 1 (aref *edit-icon* 1))
194 (aset icon 2 (mapconcat 'sc::pack-one-line "1234567890123456" ""))
195 (sc::goto-hotspot)
196 )
197
198(defun sc::pack-one-line (dummy)
199 (let* (char chr1 chr2)
200 (setq char 0 chr1 (mapconcat 'sc::pack-one-char "12345678" "") chr1 char)
201 (setq char 0 chr2 (mapconcat 'sc::pack-one-char "12345678" "") chr2 char)
202 (forward-line 1)
203 (concat (char-to-string chr1) (char-to-string chr2))
204 ))
205
206(defun sc::pack-one-char (dummy)
207 "pack following char into char, unless eolp"
208 (if (or (eolp) (char-equal (following-char) 32))
209 (setq char (lsh char 1))
210 (setq char (1+ (lsh char 1))))
211 (if (not (eolp))(forward-char)))
212
49116ac0
JB
213(provide 'sm-cursors)
214
c88ab9ce 215;;; sun-cursors.el ends here