2 Copyright (C) 1986, 1988, 1990, 1991, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
23 * For Emacs in SunView/Sun-Windows: (supported by Sun Unix v3.2 or greater)
24 * Insert a notifier filter-function to convert all useful input
25 * to "key" sequences that emacs can understand. See: Emacstool(1).
27 * Author: Jeff Peck, Sun Microsystems, Inc. <peck@eng.sun.com>
29 * Original Idea: Ian Batten
30 * Updated 15-Mar-88, Jeff Peck: set IN_EMACSTOOL, TERM, TERMCAP
31 * Updated 10-Sep-88, Jeff Peck: add XVIEW and JLE support
32 * Updated 8-Oct-90, Jeff Peck: add Meta-bit for Xview
33 * Updated 6-Mar-91, Jeff Peck: Hack to detect -Wt invocation
34 * [note, TTYSW limitation means you must Click-To-Type in Openwin]
35 * [fixed in OW3 or use local/tty.o]
36 * for better results, this should move to using TERMSW.
37 * Updated 10-Mar-91, Jeff Peck, et al: support for TERMSW (TTERM)
38 * allows point-to-type even in OW2
40 * [note: xvetool should be started with the "-nw" flag for emacs!]
44 #include <xview/xview.h>
45 #include <xview/panel.h>
46 #include <xview/attr.h>
47 #include <xview/tty.h>
48 #include <xview/ttysw.h> /* private defines */
49 #include <xview/termsw.h> /* -DTTERM */
50 #include <xview/font.h> /* for testing */
52 #include <suntool/sunview.h>
53 #include <suntool/tty.h>
54 #include <suntool/ttysw.h>
64 #define BUFFER_SIZE 128 /* Size of all the buffers */
66 /* define WANT_CAPS_LOCK to make f-key T1 (aka F1) behave as CapsLock */
67 #define WANT_CAPS_LOCK
69 int caps_lock
; /* toggle indicator for f-key T1 caps lock */
70 static char *Caps
= "[CAPS] "; /* Caps Lock prefix string */
71 #define CAPS_LEN 7 /* strlen (Caps) */
74 static char *mouse_prefix
= "\030\000"; /* C-x C-@ */
75 static int m_prefix_length
= 2; /* mouse_prefix length */
77 static char *key_prefix
= "\030*"; /* C-x * */
78 static int k_prefix_length
= 2; /* key_prefix length */
81 static char *emacs_name
= "nemacs"; /* default run command */
82 static char *title
= "NEmacstool - "; /* initial title */
84 static char *emacs_name
= "emacs"; /* default run command */
85 static char *title
= "Emacstool - "; /* initial title */
88 static char buffer
[BUFFER_SIZE
]; /* send to ttysw_input */
89 static char *bold_name
= 0; /* for -bold option */
91 Frame frame
; /* Base frame for system */
95 Tty tty_win
; /* Where emacs is reading */
98 Termsw tty_win
; /* Termsw does follow-mouse */
102 Xv_Window tty_view
; /* Where the events are in Xview*/
104 Tty tty_view
; /* SunView place filler */
107 int font_width
, font_height
; /* For translating pixels to chars */
108 int left_margin
= 0; /* default window -- frame offset */
110 int console_fd
= 0; /* for debugging: setenv DEBUGEMACSTOOL */
111 FILE *console
; /* for debugging: setenv DEBUGEMACSTOOL */
114 /* make an icon_image for the default frame_icon */
115 static short default_image
[258] =
117 #include <images/terminal.icon>
119 mpr_static(icon_image
, 64, 64, 1, default_image
);
122 * Assign a value to a set of keys
130 * Code up the current situation:
142 if (MS_LEFT
== (event_id (event
))) retval
= 1;
143 if (MS_MIDDLE
== (event_id (event
))) retval
= 2;
144 if (MS_RIGHT
== (event_id (event
))) retval
= 4;
146 if (event_shift_is_down (event
)) retval
+= 8;
147 if (event_ctrl_is_down (event
)) retval
+= 16;
148 if (event_meta_is_down (event
)) retval
+= 32;
149 if (event_is_up (event
)) retval
+= 128;
154 * Variables to store the time of the previous mouse event that was
157 * The theory is that to time double clicks while ignoring UP buttons,
158 * we must keep track of the accumulated time.
160 * If someone writes a SUN-SET-INPUT-MASK for emacstool,
161 * That could be used to selectively disable UP events,
162 * and then this cruft wouldn't be necessary.
164 static long prev_event_sec
= 0;
165 static long prev_event_usec
= 0;
168 * Give the time difference in milliseconds, where one second
169 * is considered infinite.
172 time_delta (now_sec
, now_usec
, prev_sec
, prev_usec
)
173 long now_sec
, now_usec
, prev_sec
, prev_usec
;
175 long sec_delta
= now_sec
- prev_sec
;
176 long usec_delta
= now_usec
- prev_usec
;
178 if (usec_delta
< 0) { /* "borrow" a second */
179 usec_delta
+= 1000000;
184 return (9999); /* Infinity */
186 return ((sec_delta
* 1000) + (usec_delta
/ 1000));
191 * Filter function to translate selected input events for emacs
192 * Mouse button events become ^X^@(button x-col y-line time-delta) .
193 * Function keys: ESC-*{c}{lrt} l,r,t for Left, Right, Top;
194 * {c} encodes the keynumber as a character [a-o]
197 input_event_filter_function (window
, event
, arg
, type
)
205 Notify_event_type type
;
207 struct timeval time_stamp
;
209 if (console_fd
) fprintf(console
, "Event: %d\n", event_id(event
));
211 /* UP L1 is the STOP key */
212 if (event_id(event
) == WIN_STOP
) {
213 ttysw_input(tty_win
, "\007\007\007\007\007\007\007", 7);
214 return NOTIFY_IGNORED
;
217 /* UP L5 & L7 is Expose & Open, let them pass to sunview */
218 if (event_id(event
) == KEY_LEFT(5) || event_id(event
) == KEY_LEFT(7))
219 if(event_is_up (event
))
220 return notify_next_event_func (window
, event
, arg
, type
);
221 else return NOTIFY_IGNORED
;
223 if (event_is_button (event
)) { /* do Mouse Button events */
224 /* Commented out so that we send mouse up events too.
225 if (event_is_up (event))
226 return notify_next_event_func (window, event, arg, type);
228 time_stamp
= event_time (event
);
229 ttysw_input (tty_win
, mouse_prefix
, m_prefix_length
);
230 sprintf (buffer
, "(%d %d %d %d)\015",
231 button_value (event
),
232 (event_x (event
) - left_margin
) / font_width
,
233 event_y (event
) / font_height
,
234 time_delta (time_stamp
.tv_sec
, time_stamp
.tv_usec
,
235 prev_event_sec
, prev_event_usec
)
237 ttysw_input (tty_win
, buffer
, strlen(buffer
));
238 prev_event_sec
= time_stamp
.tv_sec
;
239 prev_event_usec
= time_stamp
.tv_usec
;
240 return NOTIFY_IGNORED
;
243 { /* Do the function key events */
246 if ((event_is_key_left (event
)) ?
247 ((d
= event_id(event
) - KEY_LEFT(1) + 'a'), c
='l') :
248 ((event_is_key_right (event
)) ?
249 ((d
= event_id(event
) - KEY_RIGHT(1) + 'a'), c
='r') :
250 ((event_is_key_top (event
)) ?
251 ((d
= event_id(event
) - KEY_TOP(1) + 'a'), c
='t') : 0)))
253 if (event_is_up(event
)) return NOTIFY_IGNORED
;
254 if (event_shift_is_down (event
)) c
= c
- 32;
255 /* this will give a non-{lrt} for unshifted keys */
256 if (event_ctrl_is_down (event
)) c
= c
- 64;
257 if (event_meta_is_down (event
)) c
= c
+ 128;
258 #ifdef WANT_CAPS_LOCK
259 /* set a toggle and relabel window so T1 can act like caps-lock */
260 if (event_id(event
) == KEY_TOP(1))
262 /* make a frame label with and without CAPS */
263 strcpy (buffer
, Caps
);
264 title
= &buffer
[CAPS_LEN
];
265 strncpy (title
, (char *)window_get (frame
, FRAME_LABEL
),
266 BUFFER_SIZE
- CAPS_LEN
);
267 buffer
[BUFFER_SIZE
] = (char) 0;
268 if (strncmp (title
, Caps
, CAPS_LEN
) == 0)
269 title
+= CAPS_LEN
; /* already Caps */
270 caps_lock
= (caps_lock
? 0 : CAPS_LEN
);
271 window_set(frame
, FRAME_LABEL
, (title
-= caps_lock
), 0);
272 return NOTIFY_IGNORED
;
275 ttysw_input (tty_win
, key_prefix
, k_prefix_length
);
276 sprintf (buffer
, "%c%c", d
, c
);
277 ttysw_input(tty_win
, buffer
, strlen(buffer
));
279 return NOTIFY_IGNORED
;
282 if ((event_is_ascii(event
) || event_is_meta(event
))
283 && event_is_up(event
)) return NOTIFY_IGNORED
;
284 #ifdef WANT_CAPS_LOCK
285 /* shift alpha chars to upper case if toggle is set */
286 if ((caps_lock
) && event_is_ascii(event
)
287 && (event_id(event
) >= 'a') && (event_id(event
) <= 'z'))
288 event_set_id(event
, (event_id(event
) - 32));
289 /* crufty, but it works for now. is there an UPCASE(event)? */
292 /* under Openwindows/X, the meta bit is not set in the key event,
293 * emacs expects this so we add it in here:
295 if (event_is_ascii(event
) && event_meta_is_down(event
))
296 event_set_id(event
, 128 | event_id(event
));
298 return notify_next_event_func (window
, event
, arg
, type
);
305 int error_code
; /* Error codes */
308 setlocale(LC_ALL
, "");
311 if(getenv("DEBUGEMACSTOOL"))
312 console
= fdopen (console_fd
= open("/dev/console",O_WRONLY
), "w");
314 putenv("IN_EMACSTOOL=t"); /* notify subprocess that it is in emacstool */
316 if (putenv("TERM=sun") != 0) /* TTY_WIN will be a TERM=sun window */
317 {fprintf (stderr
, "%s: Could not set TERM=sun, using `%s'\n",
318 argv
[0], (char *)getenv("TERM")) ;};
320 * If TERMCAP starts with a slash, it is the pathname of the
321 * termcap file, not an entry extracted from it, so KEEP it!
322 * Otherwise, it may not relate to the new TERM, so Nuke-It.
323 * If there is no TERMCAP environment variable, don't make one.
326 char *termcap
; /* Current TERMCAP value */
327 termcap
= (char *)getenv("TERMCAP") ;
328 if (termcap
&& (*termcap
!= '/'))
330 if (putenv("TERMCAP=") != 0)
331 {fprintf (stderr
, "%s: Could not clear TERMCAP\n", argv
[0]) ;} ;
335 /* find command to run as subprocess in window */
336 if (!(argv
[0] = (char *)getenv("EMACSTOOL"))) /* Set emacs command name */
337 argv
[0] = emacs_name
;
338 /* Emacstool recognizes two special args: -rc <file> and -bold <bold-name> */
339 for (argc
= 1; argv
[argc
]; argc
++) /* Use last one on line */
341 if(!(strcmp ("-rc", argv
[argc
]))) /* Override if -rc given */
343 argv
[argc
--]=0; /* kill the -rc argument */
344 if (argv
[i
+1]) { /* move to argv[0] and squeeze the rest */
346 for (; argv
[i
+2]; (argv
[i
]=argv
[i
+2],argv
[++i
]=0));
350 if (!(strcmp ("-bold", argv
[argc
])))
352 argv
[argc
--]=0; /* kill the -bold argument */
353 if (argv
[i
+1]) { /* move to bold_name and squeeze the rest */
354 bold_name
= argv
[i
+1];
355 for (; argv
[i
+2]; (argv
[i
]=argv
[i
+2],argv
[++i
]=0));
360 strcpy (buffer
, title
);
361 strncat (buffer
, argv
[0], /* append run command name */
362 (BUFFER_SIZE
- (strlen (buffer
)) - (strlen (argv
[0]))) - 1);
364 error_code
= interpose_on_window(argc
,argv
);
365 if (error_code
!= 0) { /* Barf */
366 fprintf (stderr
, "notify_interpose_event_func returns %d.\n", error_code
);
371 xv_main_loop (frame
); /* And away we go */
373 window_main_loop (frame
);
378 int interpose_on_window(argc
,argv
)
383 int i
, font_width_adjust
= 1; /* hackery, and heuristics */
384 /* if -Wt is not supplied, then font comes out as lucida-14 (width=8)
385 * rather than the screen.r.12 (width=7) typically used
386 * this hack attempts to workaround it.
387 * could use a env var EMACSTOOL_DEFAULT_FONT_WIDTH instead */
388 for (i
= 1; argv
[i
]; i
++) {
389 if (!(strcmp ("-Wt", argv
[i
])))
390 {font_width_adjust
= 0;
391 if (console_fd
) fprintf(console
, "-Wt = %d\n", font_width_adjust
);
395 /* initialize Xview, and strip window args */
396 xv_init(XV_INIT_ARGC_PTR_ARGV
, &argc
, argv
, 0);
398 /* do this first, so arglist can override it */
399 frame_icon
= icon_create (ICON_LABEL
, "Emacstool",
400 ICON_IMAGE
, &icon_image
,
403 /* Build a frame to run in */
404 frame
= xv_create ((Xv_Window
)NULL
, FRAME
,
406 FRAME_ICON
, frame_icon
,
409 /* Create a tty with emacs in it */
410 tty_win
= xv_create (frame
, SWTYPE
, WIN_IS_CLIENT_PANE
,
411 TTY_QUIT_ON_CHILD_DEATH
, TRUE
,
412 TTY_BOLDSTYLE
, TTYSW_BOLD_INVERT
,
417 (void)xv_set(tty_win
, TTY_BOLDSTYLE_NAME
, bold_name
, 0);
421 Xv_font font
; /* declare temp font variable */
422 font
= (Xv_font
)xv_get (tty_win
, XV_FONT
);
423 font_height
= (int)xv_get (font
, FONT_DEFAULT_CHAR_HEIGHT
);
424 font_width
= (int)xv_get (font
, FONT_DEFAULT_CHAR_WIDTH
);
426 if (console_fd
) fprintf(console
, "Width = %d\n", font_width
);
429 font_width
-= font_width_adjust
; /* A guess! font bug in ttysw*/
431 /* make the termsw act as a tty */
432 xv_set(tty_win
, TERMSW_MODE
, TTYSW_MODE_TYPE
, 0);
433 /* termsw has variable offset depending on scrollbar size/location */
434 left_margin
= (int)xv_get (tty_win
, TEXTSW_LEFT_MARGIN
);
437 tty_view
= (Xv_Window
) xv_get (tty_win
, OPENWIN_NTH_VIEW
, 0);
440 WIN_MOUSE_BUTTONS
, WIN_UP_EVENTS
,
441 ACTION_ADJUST
, ACTION_MENU
,
443 WIN_LEFT_KEYS
, WIN_TOP_KEYS
, WIN_RIGHT_KEYS
,
446 /* Interpose my event function */
447 return (int) notify_interpose_event_func
448 (tty_view
, input_event_filter_function
, NOTIFY_SAFE
);
451 int interpose_on_window (argc
, argv
)
455 /* do this first, so arglist can override it */
456 frame_icon
= icon_create (ICON_LABEL
, "Emacstool",
457 ICON_IMAGE
, &icon_image
,
460 /* Build a frame to run in */
461 frame
= window_create ((Window
)NULL
, FRAME
,
463 FRAME_ICON
, frame_icon
,
464 FRAME_ARGC_PTR_ARGV
, &argc
, argv
,
467 /* Create a tty with emacs in it */
468 tty_win
= window_create (frame
, TTY
,
469 TTY_QUIT_ON_CHILD_DEATH
, TRUE
,
470 TTY_BOLDSTYLE
, TTYSW_BOLD_INVERT
,
475 (void)window_set(tty_win
, TTY_BOLDSTYLE_NAME
, bold_name
, 0);
478 /* ttysw uses pf_default, one must set WIN_FONT explicitly */
479 window_set (tty_win
, WIN_FONT
, pf_default(), 0);
480 font_height
= (int)window_get (tty_win
, WIN_ROW_HEIGHT
);
481 font_width
= (int)window_get (tty_win
, WIN_COLUMN_WIDTH
);
485 WIN_CONSUME_PICK_EVENTS
,
487 WIN_MOUSE_BUTTONS
, WIN_UP_EVENTS
,
488 /* LOC_WINENTER, LOC_WINEXIT, LOC_MOVE, */
490 WIN_CONSUME_KBD_EVENTS
,
493 WIN_LEFT_KEYS
, WIN_TOP_KEYS
, WIN_RIGHT_KEYS
,
494 /* WIN_UP_ASCII_EVENTS, */
497 /* Interpose my event function */
498 return (int) notify_interpose_event_func
499 (tty_view
, input_event_filter_function
, NOTIFY_SAFE
);
503 /* arch-tag: 7a2e7105-c059-418a-b3d9-5b5de96abb4e
504 (do not change this comment) */