annotate src/scrollbar-x.c @ 165:5a88923fcbfe r20-3b9

Import from CVS: tag r20-3b9
author cvs
date Mon, 13 Aug 2007 09:44:42 +0200
parents 0132846995bd
children 3d6bfa290dbd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* scrollbar implementation -- X interface.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994 Amdhal Corporation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995 Darrell Kindred <dkindred+@cmu.edu>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "glyphs-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "EmacsFrame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "EmacsManager.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "gui-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "scrollbar-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 static void x_update_vertical_scrollbar_callback (Widget widget, LWLIB_ID id,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 XtPointer client_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 static void x_update_horizontal_scrollbar_callback (Widget widget, LWLIB_ID id,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 XtPointer client_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
44 /* Used to prevent changing the size of the slider while drag
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 scrolling, under Motif. This is necessary because the Motif
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
46 scrollbar is incredibly stupid about updating the slider and causes
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 lots of flicker if it is done too often. */
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
48 static int inhibit_slider_size_change;
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 84
diff changeset
49 int stupid_vertical_scrollbar_drag_hack;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
51 /* Doesn't work with athena */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #if defined (LWLIB_SCROLLBARS_MOTIF) || defined (LWLIB_SCROLLBARS_LUCID)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 static int vertical_drag_in_progress;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 static int
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
59 x_inhibit_scrollbar_slider_size_change (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 {
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
61 /* Doesn't work with Athena */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #if defined (LWLIB_SCROLLBARS_MOTIF) || defined (LWLIB_SCROLLBARS_LUCID)
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
63 return inhibit_slider_size_change;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 x_free_scrollbar_instance (struct scrollbar_instance *instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 if (SCROLLBAR_X_NAME (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 xfree (SCROLLBAR_X_NAME (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 if (SCROLLBAR_X_WIDGET (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 if (XtIsManaged (SCROLLBAR_X_WIDGET (instance)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 XtUnmanageChild (SCROLLBAR_X_WIDGET (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 lw_destroy_all_widgets (SCROLLBAR_X_ID (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 if (instance->scrollbar_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 xfree (instance->scrollbar_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 x_release_scrollbar_instance (struct scrollbar_instance *instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 if (XtIsManaged (SCROLLBAR_X_WIDGET (instance)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 XtUnmanageChild (SCROLLBAR_X_WIDGET (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 x_create_scrollbar_instance (struct frame *f, int vertical,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 struct scrollbar_instance *instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 char buffer[32];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 /* initialize the X specific data section. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 instance->scrollbar_data = malloc_type_and_zero (struct x_scrollbar_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 SCROLLBAR_X_ID (instance) = new_lwlib_id ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 sprintf (buffer, "scrollbar_%d", SCROLLBAR_X_ID (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 SCROLLBAR_X_NAME (instance) = xstrdup (buffer);
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
109 #if defined (LWLIB_SCROLLBARS_MOTIF) || defined (LWLIB_SCROLLBARS_LUCID) || \
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
110 defined (LWLIB_SCROLLBARS_ATHENA3D)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 SCROLLBAR_X_VDRAG_ORIG_VALUE (instance) = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 if (vertical)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 SCROLLBAR_X_WIDGET (instance) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 lw_create_widget ("vertical-scrollbar", SCROLLBAR_X_NAME (instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 SCROLLBAR_X_ID (instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 NULL, FRAME_X_CONTAINER_WIDGET (f), 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 x_update_vertical_scrollbar_callback, NULL, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 SCROLLBAR_X_WIDGET (instance) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 lw_create_widget ("horizontal-scrollbar", SCROLLBAR_X_NAME (instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 SCROLLBAR_X_ID (instance),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 NULL, FRAME_X_CONTAINER_WIDGET (f), 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 x_update_horizontal_scrollbar_callback, NULL, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
132 #define UPDATE_DATA_FIELD(field) \
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
133 if (new_##field >= 0 && \
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
134 SCROLLBAR_X_POS_DATA (inst).field != new_##field) { \
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
135 SCROLLBAR_X_POS_DATA (inst).field = new_##field; \
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
136 inst->scrollbar_instance_changed = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 /* #### The -1 check is such a hack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 x_update_scrollbar_instance_values (struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 struct scrollbar_instance *inst,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 int new_line_increment,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 int new_page_increment,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 int new_minimum, int new_maximum,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 int new_slider_size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 int new_slider_position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 int new_scrollbar_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 int new_scrollbar_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 int new_scrollbar_x, int new_scrollbar_y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 UPDATE_DATA_FIELD (line_increment);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 UPDATE_DATA_FIELD (page_increment);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 UPDATE_DATA_FIELD (minimum);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 UPDATE_DATA_FIELD (maximum);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 UPDATE_DATA_FIELD (slider_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 UPDATE_DATA_FIELD (slider_position);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 UPDATE_DATA_FIELD (scrollbar_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 UPDATE_DATA_FIELD (scrollbar_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 UPDATE_DATA_FIELD (scrollbar_x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 UPDATE_DATA_FIELD (scrollbar_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
164 /* This doesn't work with Athena, why? */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #if defined (LWLIB_SCROLLBARS_MOTIF) || defined (LWLIB_SCROLLBARS_LUCID)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 if (w && !vertical_drag_in_progress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 int new_vov = SCROLLBAR_X_POS_DATA (inst).slider_position;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 int new_vows = marker_position (w->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 if (SCROLLBAR_X_VDRAG_ORIG_VALUE (inst) != new_vov)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 SCROLLBAR_X_VDRAG_ORIG_VALUE (inst) = new_vov;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 inst->scrollbar_instance_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 if (SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (inst) != new_vows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (inst) = new_vows;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 inst->scrollbar_instance_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 /* Used by x_update_scrollbar_instance_status. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 update_one_scrollbar_bs (struct frame *f, Widget sb_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 Boolean use_backing_store;
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
190 Arg al [1];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
192 XtSetArg (al [0], XtNuseBackingStore, &use_backing_store);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
193 XtGetValues (FRAME_X_TEXT_WIDGET (f), al, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 if (use_backing_store && sb_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 unsigned long mask = CWBackingStore;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 XSetWindowAttributes attrs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 attrs.backing_store = Always;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 XChangeWindowAttributes (XtDisplay (sb_widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 XtWindow (sb_widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 mask,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 &attrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 /* Create a widget value structure for passing down to lwlib so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 it can update the scrollbar widgets. Used by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 x_update_scrollbar_instance_status. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 static widget_value *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 scrollbar_instance_to_widget_value (struct scrollbar_instance *instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 widget_value *wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 wv = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 /* #### maybe should add malloc_scrollbar_values to resource these? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 wv->scrollbar_data = (scrollbar_values *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 xmalloc (sizeof (scrollbar_values));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 wv->name = SCROLLBAR_X_NAME (instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 wv->value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 wv->key = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 wv->enabled = instance->scrollbar_is_active;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 wv->selected = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 wv->call_data = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 *wv->scrollbar_data = SCROLLBAR_X_POS_DATA (instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 wv->next = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 return wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 /* Used by x_update_scrollbar_instance_status. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 update_one_widget_scrollbar_pointer (struct window *w, Widget wid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 if (POINTER_IMAGE_INSTANCEP (w->scrollbar_pointer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 XDefineCursor (XtDisplay (wid), XtWindow (wid),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 XIMAGE_INSTANCE_X_CURSOR (w->scrollbar_pointer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 XSync (XtDisplay (wid), False);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 x_update_scrollbar_instance_status (struct window *w, int active, int size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 struct scrollbar_instance *instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 struct frame *f = XFRAME (w->frame);
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
253 Boolean managed = XtIsManaged (SCROLLBAR_X_WIDGET (instance));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 if (active && size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 widget_value *wv = scrollbar_instance_to_widget_value (instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 if (instance->scrollbar_instance_changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 lw_modify_all_widgets (SCROLLBAR_X_ID (instance), wv, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 instance->scrollbar_instance_changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 if (!managed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 XtManageChild (SCROLLBAR_X_WIDGET (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 if (XtWindow (SCROLLBAR_X_WIDGET (instance)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 /* Raise this window so that it's visible on top of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 text window below it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 XRaiseWindow (XtDisplay (SCROLLBAR_X_WIDGET (instance)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 XtWindow (SCROLLBAR_X_WIDGET (instance)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 update_one_widget_scrollbar_pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (w, SCROLLBAR_X_WIDGET (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 if (!SCROLLBAR_X_BACKING_STORE_INITIALIZED (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 update_one_scrollbar_bs (f, SCROLLBAR_X_WIDGET (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 SCROLLBAR_X_BACKING_STORE_INITIALIZED (instance) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 if (!wv->scrollbar_data) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 xfree (wv->scrollbar_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 wv->scrollbar_data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 free_widget_value (wv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 else if (managed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 XtUnmanageChild (SCROLLBAR_X_WIDGET (instance));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 x_scrollbar_width_changed_in_frame (Lisp_Object specifier, struct frame *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 Lisp_Object oldval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 XtWidgetGeometry req, repl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 Lisp_Object newval = f->scrollbar_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 in_specifier_change_function++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 /* We want the text area to stay the same size. So, we query the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 current size and then adjust it for the change in the scrollbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 width. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 /* mirror the value in the frame resources, unless it was already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 done. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 if (!in_resource_setting)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
312 {
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
313 Arg al [1];
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
314 XtSetArg (al [0], XtNscrollBarWidth, XINT (newval));
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
315 XtSetValues (FRAME_X_TEXT_WIDGET (f), al, 1);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
316 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 if (XtIsRealized (FRAME_X_CONTAINER_WIDGET (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 req.request_mode = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 /* the query-geometry method looks at the current value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 f->scrollbar_width, so temporarily set it back to the old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 f->scrollbar_width = oldval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 XtQueryGeometry (FRAME_X_CONTAINER_WIDGET (f), &req, &repl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 f->scrollbar_width = newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 repl.width += XINT (newval) - XINT (oldval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 EmacsManagerChangeSize (FRAME_X_CONTAINER_WIDGET (f), repl.width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 repl.height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 in_specifier_change_function--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /* A device method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 x_scrollbar_height_changed_in_frame (Lisp_Object specifier, struct frame *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 Lisp_Object oldval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 XtWidgetGeometry req, repl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 Lisp_Object newval = f->scrollbar_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 in_specifier_change_function++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 /* We want the text area to stay the same size. So, we query the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 current size and then adjust it for the change in the scrollbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 height. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 /* mirror the value in the frame resources, unless it was already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 done. Also don't do it if this is the when the frame is being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 created -- the widgets don't even exist yet, and even if they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 did, we wouldn't want to overwrite the resource information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (which might specify a user preference). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 if (!in_resource_setting)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
357 {
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
358 Arg al [1];
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
359 XtSetArg (al [0], XtNscrollBarHeight, XINT (newval));
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
360 XtSetValues (FRAME_X_TEXT_WIDGET (f), al, 1);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
361 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 if (XtIsRealized (FRAME_X_CONTAINER_WIDGET (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 req.request_mode = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 /* the query-geometry method looks at the current value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 f->scrollbar_height, so temporarily set it back to the old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 f->scrollbar_height = oldval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 XtQueryGeometry (FRAME_X_CONTAINER_WIDGET (f), &req, &repl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 f->scrollbar_height = newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 repl.height += XINT (newval) - XINT (oldval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 EmacsManagerChangeSize (FRAME_X_CONTAINER_WIDGET (f), repl.width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 repl.height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 in_specifier_change_function--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 enum x_scrollbar_loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 X_FIND_SCROLLBAR_WINDOW_MIRROR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 X_SET_SCROLLBAR_POINTER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 X_WINDOW_IS_SCROLLBAR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 X_UPDATE_FRAME_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 static struct window_mirror *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 x_scrollbar_loop (enum x_scrollbar_loop type, Lisp_Object window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 struct window_mirror *mir,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 LWLIB_ID id, Window x_win)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 struct window_mirror *retval = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 while (mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 struct scrollbar_instance *vinstance = mir->scrollbar_vertical_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 struct scrollbar_instance *hinstance =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 mir->scrollbar_horizontal_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 assert (!NILP (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 f = XFRAME (XWINDOW (window)->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 if (mir->vchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 retval = x_scrollbar_loop (type, XWINDOW (window)->vchild,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 mir->vchild, id, x_win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 else if (mir->hchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 retval = x_scrollbar_loop (type, XWINDOW (window)->hchild,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 mir->hchild, id, x_win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 if (retval != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 if (hinstance || vinstance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 case X_FIND_SCROLLBAR_WINDOW_MIRROR:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 if ((vinstance && SCROLLBAR_X_ID (vinstance) == id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 || (hinstance && SCROLLBAR_X_ID (hinstance) == id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 return mir;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 case X_UPDATE_FRAME_SCROLLBARS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 if (!mir->vchild && !mir->hchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 update_window_scrollbars (XWINDOW (window), mir, 1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 case X_SET_SCROLLBAR_POINTER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 if (!mir->vchild && !mir->hchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 int loop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 for (loop = 0; loop < 2; loop++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 Widget widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 if (loop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 widget = SCROLLBAR_X_WIDGET (vinstance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 widget = SCROLLBAR_X_WIDGET (hinstance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 if (widget && XtIsManaged (widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 update_one_widget_scrollbar_pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (XWINDOW (window), widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 case X_WINDOW_IS_SCROLLBAR:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 if (!mir->vchild && !mir->hchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 int loop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 for (loop = 0; loop < 2; loop++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 Widget widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 if (loop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 widget = SCROLLBAR_X_WIDGET (vinstance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 widget = SCROLLBAR_X_WIDGET (hinstance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 if (widget && XtIsManaged (widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 if (XtWindow (widget) == x_win)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 return (struct window_mirror *) 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 mir = mir->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 window = XWINDOW (window)->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 /* Used by callbacks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 static struct window_mirror *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 find_scrollbar_window_mirror (struct frame *f, LWLIB_ID id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 if (f->mirror_dirty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 update_frame_window_mirror (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 return x_scrollbar_loop (X_FIND_SCROLLBAR_WINDOW_MIRROR, f->root_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 f->root_mirror, id, (Window) NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 * This is the only callback provided for vertical scrollbars. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 * should be able to handle all of the scrollbar events in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 * scroll_action (see lwlib.h). The client data will be of type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 * scroll_event (see lwlib.h). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 x_update_vertical_scrollbar_callback (Widget widget, LWLIB_ID id,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 scroll_event *data = (scroll_event *) client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 struct device *d = get_device_from_display (XtDisplay (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 struct frame *f = x_any_window_to_frame (d, XtWindow (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 Lisp_Object win;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 struct scrollbar_instance *instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 struct window_mirror *mirror;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 if (!f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 mirror = find_scrollbar_window_mirror (f, id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 win = real_window (mirror, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 if (NILP (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 instance = mirror->scrollbar_vertical_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 /* It seems that this is necessary whenever signal_special_Xt_user_event()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 is called. #### Why??? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 DEVICE_X_MOUSE_TIMESTAMP (d) = DEVICE_X_GLOBAL_MOUSE_TIMESTAMP (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 switch (data->action)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 case SCROLLBAR_LINE_UP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 signal_special_Xt_user_event (win, Qscrollbar_line_up, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 case SCROLLBAR_LINE_DOWN:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 signal_special_Xt_user_event (win, Qscrollbar_line_down, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 /* The Athena scrollbar paging behavior is that of xterms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 Depending on where you click the size of the page varies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 Motif always does a standard Emacs page. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 case SCROLLBAR_PAGE_UP:
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
547 #if !defined (LWLIB_SCROLLBARS_MOTIF) && !defined (LWLIB_SCROLLBARS_LUCID) && \
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
548 !defined (LWLIB_SCROLLBARS_ATHENA3D)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 double tmp = ((double) data->slider_value /
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (double) SCROLLBAR_X_POS_DATA(instance).scrollbar_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 double line = tmp *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (double) window_displayed_height (XWINDOW (win));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 if (line > -1.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 line = -1.0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 signal_special_Xt_user_event (win, Qscrollbar_page_up,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 Fcons (win, make_int ((int) line)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 signal_special_Xt_user_event (win, Qscrollbar_page_up,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 Fcons (win, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 case SCROLLBAR_PAGE_DOWN:
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
567 #if !defined (LWLIB_SCROLLBARS_MOTIF) && !defined (LWLIB_SCROLLBARS_LUCID) && \
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
568 !defined (LWLIB_SCROLLBARS_ATHENA3D)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 double tmp = ((double) data->slider_value /
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 (double) SCROLLBAR_X_POS_DATA(instance).scrollbar_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 double line = tmp *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (double) window_displayed_height (XWINDOW (win));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 if (SCROLLBAR_X_POS_DATA(instance).maximum >
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (SCROLLBAR_X_POS_DATA(instance).slider_size + SCROLLBAR_X_POS_DATA(instance).slider_position))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 if (line < 1.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 line = 1.0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 signal_special_Xt_user_event (win, Qscrollbar_page_down,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 Fcons (win,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 make_int ((int) line)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 signal_special_Xt_user_event (win, Qscrollbar_page_down,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 Fcons (win, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 case SCROLLBAR_TOP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 signal_special_Xt_user_event (win, Qscrollbar_to_top, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 case SCROLLBAR_BOTTOM:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 signal_special_Xt_user_event (win, Qscrollbar_to_bottom, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 case SCROLLBAR_CHANGE:
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
601 inhibit_slider_size_change = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 #if defined (LWLIB_SCROLLBARS_MOTIF) || defined (LWLIB_SCROLLBARS_LUCID)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 vertical_drag_in_progress = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 SCROLLBAR_X_VDRAG_ORIG_VALUE (instance) = data->slider_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (instance) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 XINT (Fwindow_start (win));
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
607 #else
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
608 stupid_vertical_scrollbar_drag_hack = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 case SCROLLBAR_DRAG:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 int value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
616 inhibit_slider_size_change = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 #if defined (LWLIB_SCROLLBARS_MOTIF) || defined (LWLIB_SCROLLBARS_LUCID)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 /* Doing drags with Motif-like scrollbars is a mess, since we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 want to avoid having the window position jump when you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 first grab the scrollbar, but we also want to ensure that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 you can scroll all the way to the top or bottom of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 buffer. This can all be replaced with something sane when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 we get line-based scrolling. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 vertical_drag_in_progress = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 if (SCROLLBAR_X_VDRAG_ORIG_VALUE (instance) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 SCROLLBAR_X_VDRAG_ORIG_VALUE (instance) = data->slider_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (instance) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 XINT (Fwindow_start (win));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 /* Could replace this piecewise linear scrolling with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 quadratic through the three points, but I'm not sure that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 would feel any nicer in practice. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 if (data->slider_value < SCROLLBAR_X_VDRAG_ORIG_VALUE (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 /* We've dragged up; slide linearly from original position to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 window-start=data.minimum, slider-value=data.minimum. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 if (SCROLLBAR_X_VDRAG_ORIG_VALUE (instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 <= SCROLLBAR_X_POS_DATA (instance).minimum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 /* shouldn't get here, but just in case */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 value = SCROLLBAR_X_POS_DATA (instance).minimum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 value = (SCROLLBAR_X_POS_DATA (instance).minimum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 + (((double)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 - SCROLLBAR_X_POS_DATA (instance).minimum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 * (data->slider_value -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 SCROLLBAR_X_POS_DATA (instance).minimum))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 / (SCROLLBAR_X_VDRAG_ORIG_VALUE (instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 - SCROLLBAR_X_POS_DATA (instance).minimum)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 /* We've dragged down; slide linearly from original position to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 window-start=data.maximum, slider-value=data.maximum. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 if (SCROLLBAR_X_VDRAG_ORIG_VALUE (instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 >= (SCROLLBAR_X_POS_DATA (instance).maximum -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 SCROLLBAR_X_POS_DATA (instance).slider_size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 /* avoid divide by zero */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 value = SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 value = (SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (instance)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 + (((double) (SCROLLBAR_X_POS_DATA (instance).maximum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 - SCROLLBAR_X_VDRAG_ORIG_WINDOW_START (instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 * (data->slider_value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 - SCROLLBAR_X_VDRAG_ORIG_VALUE (instance)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 / (SCROLLBAR_X_POS_DATA (instance).maximum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 - SCROLLBAR_X_POS_DATA (instance).slider_size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 - SCROLLBAR_X_VDRAG_ORIG_VALUE (instance))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 #else
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
686 stupid_vertical_scrollbar_drag_hack = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 value = data->slider_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 if (value >= SCROLLBAR_X_POS_DATA (instance).maximum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 value = SCROLLBAR_X_POS_DATA (instance).maximum - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 if (value < SCROLLBAR_X_POS_DATA (instance).minimum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 value = SCROLLBAR_X_POS_DATA (instance).minimum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 signal_special_Xt_user_event (win, Qscrollbar_vertical_drag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 Fcons (win, make_int (value)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 * This is the only callback provided for horizontal scrollbars. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 * should be able to handle all of the scrollbar events in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 * scroll_action (see lwlib.h). The client data will be of type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 * scroll_event (see lwlib.h). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 x_update_horizontal_scrollbar_callback (Widget widget, LWLIB_ID id,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 scroll_event *data = (scroll_event *) client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 struct device *d = get_device_from_display (XtDisplay (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 struct frame *f = x_any_window_to_frame (d, XtWindow (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 Lisp_Object win;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 struct window_mirror *mirror;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 if (!f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 mirror = find_scrollbar_window_mirror (f, id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 win = real_window (mirror, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 if (NILP (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 /* It seems that this is necessary whenever signal_special_Xt_user_event()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 is called. #### Why??? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 DEVICE_X_MOUSE_TIMESTAMP (d) = DEVICE_X_GLOBAL_MOUSE_TIMESTAMP (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 switch (data->action)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 case SCROLLBAR_LINE_UP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 signal_special_Xt_user_event (win, Qscrollbar_char_left, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 case SCROLLBAR_LINE_DOWN:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 signal_special_Xt_user_event (win, Qscrollbar_char_right, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 case SCROLLBAR_PAGE_UP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 signal_special_Xt_user_event (win, Qscrollbar_page_left, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 case SCROLLBAR_PAGE_DOWN:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 signal_special_Xt_user_event (win, Qscrollbar_page_right, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 case SCROLLBAR_TOP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 signal_special_Xt_user_event (win, Qscrollbar_to_left, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 case SCROLLBAR_BOTTOM:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 signal_special_Xt_user_event (win, Qscrollbar_to_right, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 case SCROLLBAR_CHANGE:
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
752 inhibit_slider_size_change = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 case SCROLLBAR_DRAG:
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
755 inhibit_slider_size_change = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 /* #### Fix the damn toolkit code so they all work the same way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 Lucid is the one mostly wrong.*/
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
758 #if defined (LWLIB_SCROLLBARS_LUCID) || defined (LWLIB_SCROLLBARS_ATHENA3D)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 signal_special_Xt_user_event (win, Qscrollbar_horizontal_drag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (Fcons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (win, make_int (data->slider_value))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 signal_special_Xt_user_event (win, Qscrollbar_horizontal_drag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (Fcons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (win,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 make_int (data->slider_value - 1))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 x_scrollbar_pointer_changed_in_window (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 Lisp_Object window = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 x_scrollbar_loop (X_SET_SCROLLBAR_POINTER, window, find_window_mirror (w),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 0, (Window) NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 /* Called directly from x_any_window_to_frame in frame-x.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 EMACS_INT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 x_window_is_scrollbar (struct frame *f, Window win)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 if (!FRAME_X_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 if (f->mirror_dirty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 update_frame_window_mirror (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 return (EMACS_INT) x_scrollbar_loop (X_WINDOW_IS_SCROLLBAR, f->root_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 f->root_mirror, 0, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 /* Make sure that all scrollbars on frame are up-to-date. Called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 directly from x_set_frame_properties in frame-x.c*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 x_update_frame_scrollbars (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 /* Consider this code to be "in_display" so that we abort() if Fsignal()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 gets called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 in_display++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 x_scrollbar_loop (X_UPDATE_FRAME_SCROLLBARS, f->root_window, f->root_mirror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 0, (Window) NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 in_display--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 if (in_display < 0) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 x_compute_scrollbar_instance_usage (struct device *d,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 struct scrollbar_instance *inst,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 struct overhead_stats *ovstats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 int total = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 while (inst)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 struct x_scrollbar_data *data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (struct x_scrollbar_data *) inst->scrollbar_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 total += malloced_storage_size (data, sizeof (*data), ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 total += malloced_storage_size (data->name, 1 + strlen (data->name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 inst = inst->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 return total;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 console_type_create_scrollbar_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 86
diff changeset
844 CONSOLE_HAS_METHOD (x, inhibit_scrollbar_slider_size_change);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 CONSOLE_HAS_METHOD (x, free_scrollbar_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 CONSOLE_HAS_METHOD (x, release_scrollbar_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 CONSOLE_HAS_METHOD (x, create_scrollbar_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 CONSOLE_HAS_METHOD (x, update_scrollbar_instance_values);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 CONSOLE_HAS_METHOD (x, update_scrollbar_instance_status);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 CONSOLE_HAS_METHOD (x, scrollbar_width_changed_in_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 CONSOLE_HAS_METHOD (x, scrollbar_height_changed_in_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 CONSOLE_HAS_METHOD (x, scrollbar_pointer_changed_in_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 CONSOLE_HAS_METHOD (x, compute_scrollbar_instance_usage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 vars_of_scrollbar_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 #if defined (LWLIB_SCROLLBARS_LUCID)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 Fprovide (intern ("lucid-scrollbars"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 #elif defined (LWLIB_SCROLLBARS_MOTIF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 Fprovide (intern ("motif-scrollbars"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 #elif defined (LWLIB_SCROLLBARS_ATHENA)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 Fprovide (intern ("athena-scrollbars"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 #endif
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 84
diff changeset
868 stupid_vertical_scrollbar_drag_hack = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 }