Home | History | Annotate | Download | only in x11vnc

Lines Matching defs:from

30 so, delete this exception statement from your version.
63 static void buttonparse(int from, char **s);
85 static void buttonparse(int from, char **s) {
87 if (!from || !s) {}
119 rfbLog("remap button %d using \"%s\"\n", from, list);
143 from, n+1, i);
145 pointer_map[from][n].keysym = NoSymbol;
146 pointer_map[from][n].keycode = NoSymbol;
147 pointer_map[from][n].button = i;
148 pointer_map[from][n].end = 0;
149 pointer_map[from][n].down = 0;
150 pointer_map[from][n].up = 0;
168 pointer_map[from][n].keysym = ksym;
169 pointer_map[from][n].keycode = kcode;
170 pointer_map[from][n].button = 0;
171 pointer_map[from][n].end = 0;
174 pointer_map[from][n].down = 1;
175 pointer_map[from][n].up = 1;
178 pointer_map[from][n].down = 0;
179 pointer_map[from][n].up = 1;
182 pointer_map[from][n].down = 1;
183 pointer_map[from][n].up = 0;
191 pointer_map[from][n].down,
192 pointer_map[from][n].up);
208 pointer_map[from][n].keysym = NoSymbol;
209 pointer_map[from][n].keycode = kcode;
210 pointer_map[from][n].button = 0;
211 pointer_map[from][n].end = 0;
212 pointer_map[from][n].down = 0;
213 pointer_map[from][n].up = 1;
230 " %d from string \"%s\"\n",
231 to, from, str);
233 rfbLog("remap button %d using \"%s\"\n", from, str);
234 rfbLog(" button: %d -> %d\n", from, to);
235 pointer_map[from][0].keysym = NoSymbol;
236 pointer_map[from][0].keycode = NoSymbol;
237 pointer_map[from][0].button = to;
238 pointer_map[from][0].end = 0;
239 pointer_map[from][0].down = 0;
240 pointer_map[from][0].up = 0;
258 * from -buttonmap option.
305 "buttons from %d to %d\n", num_buttons, n);
311 * The '-' separates the 'from' and 'to' lists,
315 int from;
326 from = atoi(str);
327 buttonparse(from, &q);
658 * Actual callback from libvncserver when it gets a pointer event.
711 /* map from rfb size to X11 size: */
752 * mask = -1 is a special case call from scan_for_updates()
834 * mask = -1 is an all-clear signal from
1133 "# You basically remove the leading 'XK_' prefix from the macro name in\n"