1 /* scrollbar implementation -- mswindows interface.
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
3 Copyright (C) 1994 Amdahl Corporation.
4 Copyright (C) 1995 Sun Microsystems, Inc.
5 Copyright (C) 1995 Darrell Kindred <dkindred+@cmu.edu>.
7 This file is part of XEmacs.
9 XEmacs is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2, or (at your option) any
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 You should have received a copy of the GNU General Public License
20 along with XEmacs; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 /* Synched up with: Not in FSF. */
29 #include "console-msw.h"
32 #include "scrollbar-msw.h"
33 #include "scrollbar.h"
34 #include "specifier.h"
37 /* We use a similar sort of vertical scrollbar drag hack for mswindows
38 * scrollbars as is used for Motif or Lucid scrollbars under X.
39 * We do character-based instead of line-based scrolling, which can mean that
40 * without the hack it is impossible to drag to the end of a buffer. */
41 #define VERTICAL_SCROLLBAR_DRAG_HACK
43 static int vertical_drag_in_progress = 0;
44 extern Lisp_Object mswindows_find_frame (HWND hwnd);
47 mswindows_create_scrollbar_instance (struct frame *f, int vertical,
48 struct scrollbar_instance *sb)
52 sb->scrollbar_data = xnew_and_zero (struct mswindows_scrollbar_data);
55 orientation = SBS_VERT;
57 orientation = SBS_HORZ;
59 SCROLLBAR_MSW_HANDLE (sb) =
60 CreateWindowEx(0, "SCROLLBAR", 0, orientation|WS_CHILD,
61 CW_USEDEFAULT, CW_USEDEFAULT,
62 CW_USEDEFAULT, CW_USEDEFAULT,
63 FRAME_MSWINDOWS_HANDLE (f),
65 SCROLLBAR_MSW_INFO (sb).cbSize = sizeof(SCROLLINFO);
66 SCROLLBAR_MSW_INFO (sb).fMask = SIF_ALL;
67 GetScrollInfo(SCROLLBAR_MSW_HANDLE (sb), SB_CTL,
68 &SCROLLBAR_MSW_INFO (sb));
69 SetWindowLong (SCROLLBAR_MSW_HANDLE(sb), GWL_USERDATA, (LONG)sb);
73 HWND h = SCROLLBAR_MSW_HANDLE (sb);
74 int x = SetWindowLong (SCROLLBAR_MSW_HANDLE(sb), GWL_USERDATA, (LONG)sb);
75 int y = GetLastError();
76 struct scrollbar_instance *z = (struct scrollbar_instance *)GetWindowLong (SCROLLBAR_MSW_HANDLE(sb),
84 mswindows_free_scrollbar_instance (struct scrollbar_instance *sb)
86 if (sb->scrollbar_data)
88 DestroyWindow (SCROLLBAR_MSW_HANDLE (sb));
89 xfree (sb->scrollbar_data);
94 unshow_that_mofo (void *handle)
96 ShowScrollBar ((HWND) handle, SB_CTL, 0);
100 mswindows_release_scrollbar_instance (struct scrollbar_instance *sb)
103 /* #### way bogus! need to remove the offending call.
104 see mark_redisplay(). */
105 register_post_gc_action (unshow_that_mofo,
106 (void *) SCROLLBAR_MSW_HANDLE (sb));
108 ShowScrollBar (SCROLLBAR_MSW_HANDLE (sb), SB_CTL, 0);
109 SCROLLBAR_MSW_SIZE (sb) = 0;
112 #define UPDATE_POS_FIELD(field) \
113 if (new_##field >= 0 && SCROLLBAR_MSW_DATA (sb)->field != new_##field) { \
114 SCROLLBAR_MSW_DATA (sb)->field = new_##field; \
119 mswindows_update_scrollbar_instance_values (struct window *w,
120 struct scrollbar_instance *sb,
121 int new_line_increment,
122 int new_page_increment,
123 int new_minimum, int new_maximum,
125 int new_slider_position,
126 int new_scrollbar_width,
127 int new_scrollbar_height,
132 long styles = GetWindowLong (SCROLLBAR_MSW_HANDLE (sb), GWL_STYLE);
133 int vert = styles & SBS_VERT;
136 mswindows_output_last_error("GetWindowLong");
141 stderr_out ("[%d, %d], page = %d, pos = %d, inhibit = %d\n", new_minimum, new_maximum,
142 new_slider_size, new_slider_position,inhibit_slider_size_change);
145 /* These might be optimized, but since at least one will change at each
146 call, it's probably not worth it. */
147 SCROLLBAR_MSW_INFO (sb).nMin = new_minimum;
148 SCROLLBAR_MSW_INFO (sb).nMax = new_maximum;
149 SCROLLBAR_MSW_INFO (sb).nPage = new_slider_size + 1; /* +1 for DISABLENOSCROLL */
150 SCROLLBAR_MSW_INFO (sb).nPos = new_slider_position;
151 #ifndef VERTICAL_SCROLLBAR_DRAG_HACK
152 SCROLLBAR_MSW_INFO (sb).fMask = ((vert && vertical_drag_in_progress)
153 ? SIF_RANGE | SIF_POS
154 : SIF_ALL | SIF_DISABLENOSCROLL);
156 SCROLLBAR_MSW_INFO (sb).fMask = SIF_ALL | SIF_DISABLENOSCROLL;
158 /* Ignore XEmacs' requests to update the thumb position and size; they don't
159 * bear any relation to reality because we're reporting made-up positions */
160 if (!(vert && vertical_drag_in_progress))
162 SetScrollInfo (SCROLLBAR_MSW_HANDLE (sb), SB_CTL, &SCROLLBAR_MSW_INFO (sb),
165 UPDATE_POS_FIELD (scrollbar_x);
166 UPDATE_POS_FIELD (scrollbar_y);
167 UPDATE_POS_FIELD (scrollbar_width);
168 UPDATE_POS_FIELD (scrollbar_height);
172 MoveWindow(SCROLLBAR_MSW_HANDLE (sb),
173 new_scrollbar_x, new_scrollbar_y,
174 new_scrollbar_width, new_scrollbar_height,
180 mswindows_update_scrollbar_instance_status (struct window *w,
181 int active, int size,
182 struct scrollbar_instance *sb)
184 if (SCROLLBAR_MSW_SIZE (sb) != size)
186 SCROLLBAR_MSW_SIZE (sb) = size;
187 ShowScrollBar (SCROLLBAR_MSW_HANDLE (sb), SB_CTL,
188 SCROLLBAR_MSW_SIZE (sb));
189 SCROLLBAR_MSW_INFO(sb).fMask |= SIF_DISABLENOSCROLL;
190 SetScrollInfo(SCROLLBAR_MSW_HANDLE (sb), SB_CTL, &SCROLLBAR_MSW_INFO (sb), TRUE);
195 mswindows_handle_scrollbar_event (HWND hwnd, int code, int pos)
198 Lisp_Object win, frame;
199 struct scrollbar_instance *sb;
200 long styles = GetWindowLong (hwnd, GWL_STYLE);
201 int vert = styles & SBS_VERT;
204 mswindows_output_last_error("GetWindowLong");
208 sb = (struct scrollbar_instance *)GetWindowLong (hwnd, GWL_USERDATA);
211 win = real_window (sb->mirror, 1);
212 /* "0 as the second parameter" refers to the call to real_window
213 above. This comment was taken from Ben's 21.5 code that differs
214 somewhat from this, I don't think the 21.4 code ever had a 0
215 there. #### we're still hitting an ABORT here with 0 as the
216 second parameter, although only occasionally. It seems that
217 sometimes we receive events for scrollbars that don't exist
218 anymore. I assume it must happen like this: The user does
219 something that causes a scrollbar to disappear (e.g. Alt-TAB,
220 causing recomputation of everything in the new frame) and then
221 immediately uses the mouse wheel, generating scrollbar events.
222 Both events get posted before we have a chance to process them,
223 and in processing the first, the scrollbar mentioned in the
224 second disappears. */
227 frame = XWINDOW (win)->frame;
232 /* I'm not sure if this is right, but its much better than
233 passing an HNWD to real_window() - which is what the previous
235 frame = mswindows_find_frame (GetFocus());
237 win = FRAME_SELECTED_WINDOW (f);
240 /* SB_LINEDOWN == SB_CHARLEFT etc. This is the way they will
241 always be - any Windows is binary compatible backward with
247 mswindows_enqueue_misc_user_event
248 (frame, vert ? Qscrollbar_line_down : Qscrollbar_char_right, win);
252 mswindows_enqueue_misc_user_event
253 (frame, vert ? Qscrollbar_line_up : Qscrollbar_char_left, win);
257 mswindows_enqueue_misc_user_event
258 (win, vert ? Qscrollbar_page_down : Qscrollbar_page_right,
259 vert ? Fcons (win, Qnil) : win);
263 mswindows_enqueue_misc_user_event
265 vert ? Qscrollbar_page_up : Qscrollbar_page_left,
266 vert ? Fcons (win, Qnil) : win);
270 mswindows_enqueue_misc_user_event
271 (frame, vert ? Qscrollbar_to_bottom : Qscrollbar_to_right, win);
275 mswindows_enqueue_misc_user_event
276 (frame, vert ? Qscrollbar_to_top : Qscrollbar_to_left, win);
280 case SB_THUMBPOSITION:
283 SCROLLINFO scrollinfo;
284 scrollinfo.cbSize = sizeof(SCROLLINFO);
285 scrollinfo.fMask = SIF_ALL;
286 GetScrollInfo (hwnd, SB_CTL, &scrollinfo);
287 vertical_drag_in_progress = vert;
288 #ifdef VERTICAL_SCROLLBAR_DRAG_HACK
289 if (vert && (scrollinfo.nTrackPos > scrollinfo.nPos))
290 /* new buffer position =
291 * buffer position at start of drag +
292 * ((text remaining in buffer at start of drag) *
293 * (amount that the thumb has been moved) /
294 * (space that remained past end of the thumb at start of drag)) */
298 (scrollinfo.nMax - scrollinfo.nPos)
299 * (scrollinfo.nTrackPos - scrollinfo.nPos))
300 / (scrollinfo.nMax - scrollinfo.nPage - scrollinfo.nPos)))
301 - 2; /* ensure that the last line doesn't disappear off screen */
304 pos = scrollinfo.nTrackPos;
305 mswindows_enqueue_misc_user_event
307 vert ? Qscrollbar_vertical_drag : Qscrollbar_horizontal_drag,
308 Fcons (win, make_int (pos)));
313 #ifdef VERTICAL_SCROLLBAR_DRAG_HACK
314 if (vertical_drag_in_progress && sb)
315 /* User has just dropped the thumb - finally update it */
316 SetScrollInfo (SCROLLBAR_MSW_HANDLE (sb), SB_CTL,
317 &SCROLLBAR_MSW_INFO (sb), TRUE);
319 vertical_drag_in_progress = 0;
325 can_scroll (struct scrollbar_instance* scrollbar)
327 return scrollbar != NULL
328 && IsWindowVisible (SCROLLBAR_MSW_HANDLE (scrollbar))
329 && IsWindowEnabled (SCROLLBAR_MSW_HANDLE (scrollbar));
333 mswindows_handle_mousewheel_event (Lisp_Object frame, int keys, int delta,
336 int hasVertBar, hasHorzBar; /* Indicates presence of scroll bars */
337 unsigned wheelScrollLines = 0; /* Number of lines per wheel notch */
338 Lisp_Object win, corpore, sano;
339 struct window_mirror *mirror;
340 int mene, _mene, tekel, upharsin;
343 struct window *needle_in_haystack = 0;
346 donde_esta.x = where.x;
347 donde_esta.y = where.y;
349 /* Find the window to scroll */
351 /* The mouse event could actually occur outside of the emacs
353 if (ScreenToClient (FRAME_MSWINDOWS_HANDLE (XFRAME (frame)),
356 /* stderr_out ("donde_esta: %d %d\n", donde_esta.x, donde_esta.y); */
357 pixel_to_glyph_translation (XFRAME (frame), donde_esta.x, donde_esta.y,
358 &mene, &_mene, &tekel, &upharsin,
360 &mens, &sana, &in, &corpore, &sano);
362 if (needle_in_haystack)
364 XSETWINDOW (win, needle_in_haystack);
365 /* stderr_out ("found needle\n");
366 debug_print (win); */
370 if (!needle_in_haystack)
372 win = FRAME_SELECTED_WINDOW (XFRAME (frame));
373 needle_in_haystack = XWINDOW (win);
376 mirror = find_window_mirror (needle_in_haystack);
378 /* Check that there is something to scroll */
379 hasVertBar = can_scroll (mirror->scrollbar_vertical_instance);
380 hasHorzBar = can_scroll (mirror->scrollbar_horizontal_instance);
381 if (!hasVertBar && !hasHorzBar)
384 /* No support for panning and zooming, so ignore */
385 if (keys & (MK_SHIFT | MK_CONTROL))
388 /* Get the number of lines per wheel delta */
389 SystemParametersInfo (SPI_GETWHEELSCROLLLINES, 0, &wheelScrollLines, 0);
391 /* Calculate the amount to scroll */
392 if (wheelScrollLines == WHEEL_PAGESCROLL)
394 /* Scroll by a page */
395 Lisp_Object function;
397 function = delta > 0 ? Qscrollbar_page_up : Qscrollbar_page_down;
399 function = delta > 0 ? Qscrollbar_page_left : Qscrollbar_page_right;
400 mswindows_enqueue_misc_user_event (frame, function, Fcons (win, Qnil));
402 else /* Scroll by a number of lines */
404 /* Calc the number of lines to scroll */
405 int toScroll = MulDiv (delta, wheelScrollLines, WHEEL_DELTA);
408 Lisp_Object function;
410 function = delta > 0 ? Qscrollbar_line_up : Qscrollbar_line_down;
412 function = delta > 0 ? Qscrollbar_char_left : Qscrollbar_char_right;
414 toScroll = -toScroll;
416 mswindows_enqueue_misc_user_event (frame, function, win);
422 #ifdef MEMORY_USAGE_STATS
425 mswindows_compute_scrollbar_instance_usage (struct device *d,
426 struct scrollbar_instance *inst,
427 struct overhead_stats *ovstats)
433 struct mswindows_scrollbar_data *data =
434 (struct mswindows_scrollbar_data *) inst->scrollbar_data;
436 total += malloced_storage_size (data, sizeof (*data), ovstats);
443 #endif /* MEMORY_USAGE_STATS */
445 /************************************************************************/
446 /* Device-specific ghost specifiers initialization */
447 /************************************************************************/
449 DEFUN ("mswindows-init-scrollbar-metrics", Fmswindows_init_scrollbar_metrics, 1, 1, 0, /*
453 if (DEVICEP (locale))
455 add_spec_to_ghost_specifier (Vscrollbar_width,
456 make_int (GetSystemMetrics (SM_CXVSCROLL)),
457 locale, Qmswindows, Qnil);
458 add_spec_to_ghost_specifier (Vscrollbar_height,
459 make_int (GetSystemMetrics (SM_CYHSCROLL)),
460 locale, Qmswindows, Qnil);
466 /************************************************************************/
468 /************************************************************************/
471 console_type_create_scrollbar_mswindows (void)
473 CONSOLE_HAS_METHOD (mswindows, create_scrollbar_instance);
474 CONSOLE_HAS_METHOD (mswindows, free_scrollbar_instance);
475 CONSOLE_HAS_METHOD (mswindows, release_scrollbar_instance);
476 CONSOLE_HAS_METHOD (mswindows, update_scrollbar_instance_values);
477 CONSOLE_HAS_METHOD (mswindows, update_scrollbar_instance_status);
478 /* CONSOLE_HAS_METHOD (mswindows, scrollbar_width_changed_in_frame); */
479 #ifdef MEMORY_USAGE_STATS
480 CONSOLE_HAS_METHOD (mswindows, compute_scrollbar_instance_usage);
485 syms_of_scrollbar_mswindows(void)
487 DEFSUBR (Fmswindows_init_scrollbar_metrics);
491 vars_of_scrollbar_mswindows(void)
493 Fprovide (intern ("mswindows-scrollbars"));