Japanese translation of message catalog for Sawfish Window-Manager
修訂 | ff6759ad167f9b8f97e5d5636d1d736a234d38bf (tree) |
---|---|
時間 | 1999-10-26 02:54:18 |
作者 | john <john> |
Commiter | john |
*** empty log message ***
@@ -73,8 +73,6 @@ General tasks | ||
73 | 73 | |
74 | 74 | allow matching of WM_CLASS as well as WM_NAME |
75 | 75 | |
76 | - + do the virtual-workspace edge-flipping thing? | |
77 | - | |
78 | 76 | + wrap-around option for moving viewports |
79 | 77 | |
80 | 78 | + use panes to separate areas in bindings widget |
@@ -25,7 +25,7 @@ AC_CONFIG_HEADER(config.h) | ||
25 | 25 | AC_CONFIG_AUX_DIR(etc) |
26 | 26 | |
27 | 27 | dnl Release versioning info |
28 | -version="0.14.1" | |
28 | +version="0.14.2" | |
29 | 29 | |
30 | 30 | output_files="src/Makefile lisp/Makefile capplet/Makefile\ |
31 | 31 | themes/Makefile man/Makefile Makedefs Makefile sawmill.spec" |
@@ -1,5 +1,17 @@ | ||
1 | 1 | 1999-10-25 John Harper <john@dcs.warwick.ac.uk> |
2 | 2 | |
3 | + * version 0.14.2 | |
4 | + | |
5 | + * maximize.jl (maximize-do-both): sort grid before passing it | |
6 | + to rectangles-from-grid, this stops things going _really_ | |
7 | + ballistic | |
8 | + | |
9 | + * edge-flip.jl: new file, viewport flipping by pushing the | |
10 | + pointer against the screen edges | |
11 | + | |
12 | + * viewport.jl (set-screen-viewport, move-viewport): document | |
13 | + that these now return t if they actually move the viewport | |
14 | + | |
3 | 15 | * version 0.14.1 |
4 | 16 | |
5 | 17 | * maximize.jl (maximize-do-both): only choose rectangles that |
@@ -1,5 +1,23 @@ | ||
1 | 1 | 1999-10-25 John Harper <john@dcs.warwick.ac.uk> |
2 | 2 | |
3 | + * version 0.14.2 | |
4 | + | |
5 | + * functions.c (Fdelete_window): reinterrogate the window's | |
6 | + WM_PROTOCOLS property in case it set WM_DELETE_WINDOW after | |
7 | + being mapped | |
8 | + | |
9 | + * functions.c (Qafter_restacking_hook): new hook, called | |
10 | + whenever the stacking order is explicitly altered | |
11 | + | |
12 | + * functions.c (Fshow_message): use a local event handler for | |
13 | + better data hiding | |
14 | + | |
15 | + * events.c (register_event_handler, deregister_event_handler): | |
16 | + new functions, allow window-local event handlers to be created | |
17 | + | |
18 | + * flippers.c: new plugin, provides the mechanism for viewport | |
19 | + edge-flipping (hooks enter-flipper-hook and leave-flipper-hook) | |
20 | + | |
3 | 21 | * version 0.14.1 |
4 | 22 | |
5 | 23 | * functions.c (Fsend_client_message): bug fix from Ricardo R. |
@@ -30,7 +30,7 @@ SRCS := colors.c commands.c cursors.c display.c events.c fonts.c frames.c \ | ||
30 | 30 | functions.c images.c keys.c main.c server.c session.c windows.c |
31 | 31 | OBJS := $(SRCS:.c=.o) |
32 | 32 | |
33 | -DL_SRCS := gradient.c | |
33 | +DL_SRCS := gradient.c flippers.c | |
34 | 34 | DL_OBJS := $(DL_SRCS:%.c=lib%.la) |
35 | 35 | |
36 | 36 | LISP_SRCS := sawmill-ui.jl sawmill-menu.jl |
@@ -89,6 +89,8 @@ extern void unclick_current_fp (void); | ||
89 | 89 | extern void map_request (XEvent *ev); |
90 | 90 | extern void send_synthetic_configure (Lisp_Window *w); |
91 | 91 | extern long get_event_mask (int type); |
92 | +extern void register_event_handler (Window w, void (*fun)(XEvent *ev)); | |
93 | +extern void deregister_event_handler (Window w); | |
92 | 94 | extern void handle_input_mask(long mask); |
93 | 95 | extern void handle_sync_input(int fd); |
94 | 96 | extern repv Fquery_pointer (repv get); |
@@ -135,7 +137,7 @@ extern void frames_init (void); | ||
135 | 137 | extern void frames_kill (void); |
136 | 138 | |
137 | 139 | /* from functions.c */ |
138 | -extern repv Qroot; | |
140 | +extern repv Qroot, Qafter_restacking_hook; | |
139 | 141 | extern repv Fdelete_window (repv win); |
140 | 142 | extern repv Fdestroy_window (repv win); |
141 | 143 | extern repv Frestack_windows (repv list); |
@@ -166,8 +168,6 @@ extern repv Fcreate_window (repv parent, repv x, repv y, | ||
166 | 168 | repv width, repv height); |
167 | 169 | extern repv Fx_atom (repv symbol); |
168 | 170 | extern repv Fx_atom_name (repv atom); |
169 | -extern Window message_win; | |
170 | -extern void refresh_message_window (void); | |
171 | 171 | extern repv Fshow_message (repv text, repv font, repv fg, repv bg, repv pos); |
172 | 172 | extern void functions_init (void); |
173 | 173 | extern void functions_kill (void); |
@@ -251,6 +251,7 @@ extern void focus_on_window (Lisp_Window *w); | ||
251 | 251 | extern void fix_window_size (Lisp_Window *w); |
252 | 252 | extern Lisp_Window *find_window_by_id (Window id); |
253 | 253 | extern Lisp_Window *x_find_window_by_id (Window id); |
254 | +extern void get_window_protocols (Lisp_Window *w); | |
254 | 255 | extern void before_local_map (Lisp_Window *w); |
255 | 256 | extern void after_local_map (Lisp_Window *w); |
256 | 257 | extern void install_window_frame (Lisp_Window *w); |