Fixes: debbugs:17865
[bpt/emacs.git] / src / w32term.h
CommitLineData
b46a6a83 1/* Definitions and headers for communication on the Microsoft Windows API.
ba318903 2 Copyright (C) 1995, 2001-2014 Free Software Foundation, Inc.
c3b8ccce
GV
3
4This file is part of GNU Emacs.
5
b9b1cc14 6GNU Emacs is free software: you can redistribute it and/or modify
c3b8ccce 7it under the terms of the GNU General Public License as published by
b9b1cc14
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
c3b8ccce
GV
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
b9b1cc14 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
c3b8ccce
GV
18
19/* Added by Kevin Gallo */
20
51dcffad 21#include "w32gui.h"
0fda9b75
DC
22#include "frame.h"
23#include "atimer.h"
c3b8ccce 24
c3b8ccce 25\f
3fed86ff
GV
26#define BLACK_PIX_DEFAULT(f) PALETTERGB(0,0,0)
27#define WHITE_PIX_DEFAULT(f) PALETTERGB(255,255,255)
c3b8ccce 28
ad23de76
JR
29#define CP_DEFAULT 1004
30
c3b8ccce
GV
31/* Indicates whether we are in the readsocket call and the message we
32 are processing in the current loop */
33
34extern MSG CurMsg;
35extern BOOL bUseDflt;
36
c3b8ccce
GV
37/* Structure recording bitmaps and reference count.
38 If REFCOUNT is 0 then this record is free to be reused. */
39
177c0ea7 40struct w32_bitmap_record
c3b8ccce
GV
41{
42 Pixmap pixmap;
43 char *file;
44 HINSTANCE hinst; /* Used to load the file */
45 int refcount;
46 /* Record some info about this pixmap. */
47 int height, width, depth;
48};
aba66c88 49
fbd6baed
GV
50struct w32_palette_entry {
51 struct w32_palette_entry * next;
aba66c88
GV
52 PALETTEENTRY entry;
53#if 0
54 unsigned refcount;
55#endif
56};
57
5e617bc2 58extern void w32_regenerate_palette (struct frame *f);
1f635a07
EC
59extern void w32_fullscreen_rect (HWND hwnd, int fsmode, RECT normal,
60 RECT *rect);
aba66c88 61
c3b8ccce 62\f
fbd6baed 63/* For each display (currently only one on w32), we have a structure that
c3b8ccce
GV
64 records information about it. */
65
fbd6baed 66struct w32_display_info
c3b8ccce 67{
fbd6baed
GV
68 /* Chain of all w32_display_info structures. */
69 struct w32_display_info *next;
51dcffad 70
a032a9a8
JR
71 /* The generic display parameters corresponding to this w32 display. */
72 struct terminal *terminal;
73
d141d701 74 /* This is a cons cell of the form (NAME . FONT-LIST-CACHE). */
c3b8ccce 75 Lisp_Object name_list_element;
51dcffad 76
c3b8ccce
GV
77 /* Number of frames that are on this display. */
78 int reference_count;
51dcffad
JR
79
80 /* Dots per inch of the screen. */
81 double resx, resy;
82
c3b8ccce
GV
83 /* Number of planes on this screen. */
84 int n_planes;
51dcffad 85
c3b8ccce
GV
86 /* Number of bits per pixel on this screen. */
87 int n_cbits;
51dcffad 88
c3b8ccce
GV
89 /* Mask of things that cause the mouse to be grabbed. */
90 int grabbed;
51dcffad
JR
91
92 /* Emacs bitmap-id of the default icon bitmap for this frame.
93 Or -1 if none has been allocated yet. */
0766b489 94 ptrdiff_t icon_bitmap_id;
51dcffad 95
c3b8ccce
GV
96 /* The root window of this screen. */
97 Window root_window;
51dcffad 98
c3b8ccce
GV
99 /* The cursor to use for vertical scroll bars. */
100 Cursor vertical_scroll_bar_cursor;
101
71147653 102 /* Resource data base */
abdb2fa0 103 XrmDatabase xrdb;
71147653 104
bb355434 105 /* color palette information. */
aba66c88 106 int has_palette;
fbd6baed 107 struct w32_palette_entry * color_list;
aba66c88
GV
108 unsigned num_colors;
109 HPALETTE palette;
110
bb355434 111 /* deferred action flags checked when starting frame update. */
aba66c88
GV
112 int regen_palette;
113
bb355434
GV
114 /* Keystroke that has been faked by Emacs and will be ignored when
115 received; value is reset after key is received. */
116 int faked_key;
117
51dcffad
JR
118 /* Minimum width over all characters in all fonts in font_table. */
119 int smallest_char_width;
120
121 /* Minimum font height over all fonts in font_table. */
122 int smallest_font_height;
123
124 /* Reusable Graphics Context for drawing a cursor in a non-default face. */
125 XGCValues *scratch_cursor_gc;
126
7ea692f6
EZ
127 /* Information about the range of text currently shown in
128 mouse-face. */
129 Mouse_HLInfo mouse_highlight;
51dcffad 130
fbd6baed 131 char *w32_id_name;
c3b8ccce 132
fbd6baed 133 /* The number of fonts actually stored in w32_font_table.
e0f24100 134 font_table[n] is used and valid if 0 <= n < n_fonts. 0 <=
51dcffad 135 n_fonts <= font_table_size. and font_table[i].name != 0. */
c3b8ccce
GV
136 int n_fonts;
137
138 /* Pointer to bitmap records. */
fbd6baed 139 struct w32_bitmap_record *bitmaps;
c3b8ccce
GV
140
141 /* Allocated size of bitmaps field. */
0766b489 142 ptrdiff_t bitmaps_size;
c3b8ccce
GV
143
144 /* Last used bitmap index. */
0766b489 145 ptrdiff_t bitmaps_last;
c3b8ccce
GV
146
147 /* The frame (if any) which has the window that has keyboard focus.
148 Zero if none. This is examined by Ffocus_frame in w32fns.c. Note
149 that a mere EnterNotify event can set this; if you need to know the
150 last frame specified in a FocusIn or FocusOut event, use
fbd6baed
GV
151 w32_focus_event_frame. */
152 struct frame *w32_focus_frame;
c3b8ccce
GV
153
154 /* The last frame mentioned in a FocusIn or FocusOut event. This is
fbd6baed 155 separate from w32_focus_frame, because whether or not LeaveNotify
c3b8ccce
GV
156 events cause us to lose focus depends on whether or not we have
157 received a FocusIn event for it. */
fbd6baed 158 struct frame *w32_focus_event_frame;
c3b8ccce
GV
159
160 /* The frame which currently has the visual highlight, and should get
161 keyboard input (other sorts of input have the frame encoded in the
162 event). It points to the focus frame's selected window's
fbd6baed 163 frame. It differs from w32_focus_frame when we're using a global
c3b8ccce 164 minibuffer. */
6b3acc48 165 struct frame *x_highlight_frame;
baed3603
DA
166
167 /* The frame waiting to be auto-raised in w32_read_socket. */
168 struct frame *w32_pending_autoraise_frame;
7a0c745a
DA
169
170 /* The frame where the mouse was last time we reported a mouse event. */
171 struct frame *last_mouse_frame;
18da0d8a
DA
172
173 /* The frame where the mouse was last time we reported a mouse motion. */
174 struct frame *last_mouse_motion_frame;
175
ced135eb
DA
176 /* The frame where the mouse was last time we reported a mouse position. */
177 struct frame *last_mouse_glyph_frame;
178
18da0d8a
DA
179 /* Position where the mouse was last time we reported a motion.
180 This is a position on last_mouse_motion_frame. */
181 int last_mouse_motion_x;
182 int last_mouse_motion_y;
ced135eb
DA
183
184 /* Where the mouse was last time we reported a mouse position.
185 This is a rectangle on last_mouse_glyph_frame. */
186 RECT last_mouse_glyph;
187
188 /* The scroll bar in which the last motion event occurred. */
189 struct scroll_bar *last_mouse_scroll_bar;
190
191 /* Mouse position on the scroll bar above.
192 FIXME: shouldn't it be a member of struct scroll_bar? */
193 int last_mouse_scroll_bar_pos;
194
195 /* Time of last mouse movement. */
196 Time last_mouse_movement_time;
c3b8ccce
GV
197};
198
199/* This is a chain of structures for all the displays currently in use. */
8911aff3 200extern struct w32_display_info *x_display_list;
fbd6baed 201extern struct w32_display_info one_w32_display_info;
c3b8ccce 202
361358ea
JB
203extern struct frame *x_window_to_frame (struct w32_display_info *, HWND);
204
205struct w32_display_info *x_display_info_for_name (Lisp_Object);
c3b8ccce 206
383e0970
J
207Lisp_Object display_x_get_resource (struct w32_display_info *,
208 Lisp_Object, Lisp_Object,
209 Lisp_Object, Lisp_Object);
f3c4ec74 210
0fda9b75
DC
211/* also defined in xterm.h XXX: factor out to common header */
212
361358ea
JB
213extern struct w32_display_info *w32_term_init (Lisp_Object,
214 char *, char *);
a10c8269 215extern int w32_defined_color (struct frame *f, const char *color,
0fda9b75 216 XColor *color_def, int alloc);
0fda9b75 217extern void x_set_window_size (struct frame *f, int change_grav,
880e6158 218 int width, int height, bool pixelwise);
383e0970
J
219extern int x_display_pixel_height (struct w32_display_info *);
220extern int x_display_pixel_width (struct w32_display_info *);
0fda9b75
DC
221extern Lisp_Object x_get_focus_frame (struct frame *);
222extern void x_set_mouse_position (struct frame *f, int h, int v);
223extern void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
224extern void x_make_frame_visible (struct frame *f);
225extern void x_make_frame_invisible (struct frame *f);
226extern void x_iconify_frame (struct frame *f);
0fda9b75
DC
227extern void x_set_frame_alpha (struct frame *f);
228extern void x_set_menu_bar_lines (struct frame *, Lisp_Object, Lisp_Object);
229extern void x_set_tool_bar_lines (struct frame *f,
230 Lisp_Object value,
231 Lisp_Object oldval);
232extern void x_activate_menubar (struct frame *);
233extern int x_bitmap_icon (struct frame *, Lisp_Object);
234extern void initialize_frame_menubar (struct frame *);
235extern void x_free_frame_resources (struct frame *);
0fda9b75
DC
236extern void x_real_positions (struct frame *, int *, int *);
237
238/* w32inevt.c */
239extern int w32_kbd_patch_key (KEY_EVENT_RECORD *event, int cpId);
240extern int w32_kbd_mods_to_emacs (DWORD mods, WORD key);
241
a53400f3 242
5e4daaf3
FP
243extern Lisp_Object x_get_focus_frame (struct frame *);
244
28a16449
EZ
245/* w32console.c */
246extern void w32con_hide_cursor (void);
247extern void w32con_show_cursor (void);
248
c3b8ccce 249\f
51dcffad
JR
250#define PIX_TYPE COLORREF
251
fbd6baed
GV
252/* Each W32 frame object points to its own struct w32_display object
253 in the output_data.w32 field. The w32_display structure contains all
254 the information that is specific to W32 windows. */
c3b8ccce 255
51dcffad 256/* Put some things in x_output for compatibility.
ee7683eb 257 NTEMACS_TODO: Move all common things here to eliminate unnecessary
51dcffad
JR
258 diffs between X and w32 code. */
259struct x_output
260{
bc2223e6
JR
261 /* Keep track of focus. May be EXPLICIT if we received a FocusIn for this
262 frame, or IMPLICIT if we received an EnterNotify.
263 FocusOut and LeaveNotify clears EXPLICIT/IMPLICIT. */
264 int focus_state;
51dcffad
JR
265};
266
bc2223e6
JR
267enum
268{
269 /* Values for focus_state, used as bit mask.
270 EXPLICIT means we received a FocusIn for the frame and know it has
c80e3b4a 271 the focus. IMPLICIT means we received an EnterNotify and the frame
bc2223e6
JR
272 may have the focus if no window manager is running.
273 FocusOut and LeaveNotify clears EXPLICIT/IMPLICIT. */
274 FOCUS_NONE = 0,
275 FOCUS_IMPLICIT = 1,
276 FOCUS_EXPLICIT = 2
277};
51dcffad 278
fbd6baed 279struct w32_output
c3b8ccce 280{
51dcffad 281 /* Placeholder for things accessed through output_data.x. */
42bde733 282 struct x_output x_compatible;
51dcffad 283
8694f11b
GV
284 /* Menubar "widget" handle. */
285 HMENU menubar_widget;
286
aba66c88
GV
287 /* Original palette (used to deselect real palette after drawing) */
288 HPALETTE old_palette;
289
51dcffad
JR
290 /* Here are the Graphics Contexts for the default font. */
291 XGCValues *cursor_gc; /* cursor drawing */
292
c3b8ccce
GV
293 /* The window used for this frame.
294 May be zero while the frame object is being created
295 and the window has not yet been created. */
296 Window window_desc;
297
298 /* The window that is the parent of this window.
299 Usually this is a window that was made by the window manager,
300 but it can be the root window, and it can be explicitly specified
301 (see the explicit_parent field, below). */
302 Window parent_desc;
303
d82f9149 304 /* Default ASCII font of this frame. */
3af8ab1d 305 struct font *font;
47e420b5 306
51dcffad
JR
307 /* The baseline offset of the default ASCII font. */
308 int baseline_offset;
d82f9149
GV
309
310 /* If a fontset is specified for this frame instead of font, this
311 value contains an ID of the fontset, else -1. */
312 int fontset;
313
c3b8ccce
GV
314 /* Pixel values used for various purposes.
315 border_pixel may be -1 meaning use a gray tile. */
51dcffad
JR
316 COLORREF cursor_pixel;
317 COLORREF border_pixel;
318 COLORREF mouse_pixel;
319 COLORREF cursor_foreground_pixel;
320
321 /* Foreground color for scroll bars. A value of -1 means use the
322 default (black for non-toolkit scroll bars). */
323 COLORREF scroll_bar_foreground_pixel;
177c0ea7 324
51dcffad
JR
325 /* Background color for scroll bars. A value of -1 means use the
326 default (background color of the frame for non-toolkit scroll
327 bars). */
328 COLORREF scroll_bar_background_pixel;
c3b8ccce
GV
329
330 /* Descriptor for the cursor in use for this window. */
331 Cursor text_cursor;
332 Cursor nontext_cursor;
333 Cursor modeline_cursor;
b8a93676 334 Cursor hand_cursor;
5fa36066 335 Cursor hourglass_cursor;
f03fad22 336 Cursor horizontal_drag_cursor;
880e6158 337 Cursor vertical_drag_cursor;
51dcffad 338
5fa36066
GM
339 /* Non-zero means hourglass cursor is currently displayed. */
340 unsigned hourglass_p : 1;
c3b8ccce 341
d148e14d
JR
342 /* Non-hourglass cursor that is currently active. */
343 Cursor current_cursor;
344
c3b8ccce
GV
345 DWORD dwStyle;
346
c3b8ccce 347 /* This is the Emacs structure for the display this frame is on. */
fbd6baed 348 /* struct w32_display_info *display_info; */
c3b8ccce
GV
349
350 /* Nonzero means our parent is another application's window
351 and was explicitly specified. */
f418b22e 352 unsigned explicit_parent : 1;
c3b8ccce
GV
353
354 /* Nonzero means tried already to make this frame visible. */
f418b22e 355 unsigned asked_for_visible : 1;
8694f11b
GV
356
357 /* Nonzero means menubar is currently active. */
f418b22e 358 unsigned menubar_active : 1;
51dcffad
JR
359
360 /* Relief GCs, colors etc. */
361 struct relief
362 {
363 XGCValues *gc;
364 unsigned long pixel;
51dcffad
JR
365 }
366 black_relief, white_relief;
367
368 /* The background for which the above relief GCs were set up.
369 They are changed only when a different background is involved. */
370 unsigned long relief_background;
cdc0d0bd
EZ
371
372 /* Frame geometry and full-screen mode before it was resized by
373 specifying the 'fullscreen' frame parameter. Used to restore the
374 geometry when 'fullscreen' is reset to nil. */
1f635a07 375 WINDOWPLACEMENT normal_placement;
cdc0d0bd 376 int prev_fsmode;
c3b8ccce
GV
377};
378
2d764c78
EZ
379extern struct w32_output w32term_display;
380
8e025dd5
KS
381/* Return the X output data for frame F. */
382#define FRAME_X_OUTPUT(f) ((f)->output_data.w32)
383
c3b8ccce 384/* Return the window associated with the frame F. */
fbd6baed 385#define FRAME_W32_WINDOW(f) ((f)->output_data.w32->window_desc)
17a2cbbd 386#define FRAME_X_WINDOW(f) FRAME_W32_WINDOW (f)
c3b8ccce 387
fbd6baed 388#define FRAME_FONT(f) ((f)->output_data.w32->font)
d82f9149 389#define FRAME_FONTSET(f) ((f)->output_data.w32->fontset)
51dcffad 390#define FRAME_BASELINE_OFFSET(f) ((f)->output_data.w32->baseline_offset)
c3b8ccce 391
fbd6baed 392/* This gives the w32_display_info structure for the display F is on. */
aad3612f 393#define FRAME_DISPLAY_INFO(f) (&one_w32_display_info)
c3b8ccce 394
8e025dd5
KS
395/* This is the `Display *' which frame F is on. */
396#define FRAME_X_DISPLAY(f) (0)
397
1f635a07
EC
398#define FRAME_NORMAL_PLACEMENT(F) ((F)->output_data.w32->normal_placement)
399#define FRAME_PREV_FSMODE(F) ((F)->output_data.w32->prev_fsmode)
cdc0d0bd 400
51dcffad 401\f
fbd6baed 402/* W32-specific scroll bar stuff. */
c3b8ccce
GV
403
404/* We represent scroll bars as lisp vectors. This allows us to place
405 references to them in windows without worrying about whether we'll
406 end up with windows referring to dead scroll bars; the garbage
407 collector will free it when its time comes.
408
409 We use struct scroll_bar as a template for accessing fields of the
410 vector. */
411
412struct scroll_bar {
413
535cc8e9
DA
414 /* This field is shared by all vectors. */
415 struct vectorlike_header header;
c3b8ccce
GV
416
417 /* The window we're a scroll bar for. */
418 Lisp_Object window;
419
420 /* The next and previous in the chain of scroll bars in this frame. */
421 Lisp_Object next, prev;
422
423 /* The window representing this scroll bar. Since this is a full
424 32-bit quantity, we store it split into two 32-bit values. */
fbd6baed 425 Lisp_Object w32_window_low, w32_window_high;
c3b8ccce 426
51dcffad
JR
427 /* Same as above for the widget. */
428 Lisp_Object w32_widget_low, w32_widget_high;
429
c3b8ccce
GV
430 /* The position and size of the scroll bar in pixels, relative to the
431 frame. */
c44de18d 432 int top, left, width, height;
c3b8ccce
GV
433
434 /* The starting and ending positions of the handle, relative to the
435 handle area (i.e. zero is the top position, not
436 SCROLL_BAR_TOP_BORDER). If they're equal, that means the handle
437 hasn't been drawn yet.
438
439 These are not actually the locations where the beginning and end
440 are drawn; in order to keep handles from becoming invisible when
441 editing large files, we establish a minimum height by always
442 drawing handle bottoms VERTICAL_SCROLL_BAR_MIN_HANDLE pixels below
443 where they would be normally; the bottom and top are in a
444 different co-ordinate system. */
c44de18d 445 int start, end;
c3b8ccce
GV
446
447 /* If the scroll bar handle is currently being dragged by the user,
448 this is the number of pixels from the top of the handle to the
449 place where the user grabbed it. If the handle isn't currently
450 being dragged, this is Qnil. */
c44de18d 451 int dragging;
c3b8ccce
GV
452};
453
c3b8ccce
GV
454/* Turning a lisp vector value into a pointer to a struct scroll_bar. */
455#define XSCROLL_BAR(vec) ((struct scroll_bar *) XVECTOR (vec))
456
62aba0d4
FP
457#ifdef _WIN64
458/* Building a 64-bit C integer from two 32-bit lisp integers. */
459#define SCROLL_BAR_PACK(low, high) (XINT (high) << 32 | XINT (low))
460
461/* Setting two lisp integers to the low and high words of a 64-bit C int. */
462#define SCROLL_BAR_UNPACK(low, high, int64) \
463 (XSETINT ((low), ((DWORDLONG)(int64)) & 0xffffffff), \
464 XSETINT ((high), ((DWORDLONG)(int64) >> 32) & 0xffffffff))
465#else /* not _WIN64 */
c3b8ccce
GV
466/* Building a 32-bit C integer from two 16-bit lisp integers. */
467#define SCROLL_BAR_PACK(low, high) (XINT (high) << 16 | XINT (low))
468
469/* Setting two lisp integers to the low and high words of a 32-bit C int. */
470#define SCROLL_BAR_UNPACK(low, high, int32) \
471 (XSETINT ((low), (int32) & 0xffff), \
472 XSETINT ((high), ((int32) >> 16) & 0xffff))
62aba0d4 473#endif /* not _WIN64 */
c3b8ccce
GV
474
475/* Extract the window id of the scroll bar from a struct scroll_bar. */
fbd6baed
GV
476#define SCROLL_BAR_W32_WINDOW(ptr) \
477 ((Window) SCROLL_BAR_PACK ((ptr)->w32_window_low, (ptr)->w32_window_high))
c3b8ccce
GV
478
479/* Store a window id in a struct scroll_bar. */
fbd6baed 480#define SET_SCROLL_BAR_W32_WINDOW(ptr, id) \
62aba0d4 481 (SCROLL_BAR_UNPACK ((ptr)->w32_window_low, (ptr)->w32_window_high, (intptr_t) id))
c3b8ccce 482
c3b8ccce
GV
483/* Return the inside width of a vertical scroll bar, given the outside
484 width. */
51dcffad
JR
485#define VERTICAL_SCROLL_BAR_INSIDE_WIDTH(f,width) \
486 ((width) \
487 - VERTICAL_SCROLL_BAR_LEFT_BORDER \
0eed0355 488 - VERTICAL_SCROLL_BAR_RIGHT_BORDER)
c3b8ccce
GV
489
490/* Return the length of the rectangle within which the top of the
491 handle must stay. This isn't equivalent to the inside height,
177c0ea7 492 because the scroll bar handle has a minimum height.
c3b8ccce
GV
493
494 This is the real range of motion for the scroll bar, so when we're
495 scaling buffer positions to scroll bar positions, we use this, not
496 VERTICAL_SCROLL_BAR_INSIDE_HEIGHT. */
51dcffad
JR
497#define VERTICAL_SCROLL_BAR_TOP_RANGE(f,height) \
498 (VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, height) - VERTICAL_SCROLL_BAR_MIN_HANDLE)
c3b8ccce
GV
499
500/* Return the inside height of vertical scroll bar, given the outside
501 height. See VERTICAL_SCROLL_BAR_TOP_RANGE too. */
51dcffad 502#define VERTICAL_SCROLL_BAR_INSIDE_HEIGHT(f,height) \
c3b8ccce
GV
503 ((height) - VERTICAL_SCROLL_BAR_TOP_BORDER - VERTICAL_SCROLL_BAR_BOTTOM_BORDER)
504
505
506/* Border widths for scroll bars.
507
508 Scroll bar windows don't have any borders; their border width is
509 set to zero, and we redraw borders ourselves. This makes the code
510 a bit cleaner, since we don't have to convert between outside width
511 (used when relating to the rest of the screen) and inside width
512 (used when sizing and drawing the scroll bar window itself).
513
514 The handle moves up and down/back and forth in a rectangle inset
515 from the edges of the scroll bar. These are widths by which we
516 inset the handle boundaries from the scroll bar edges. */
517#define VERTICAL_SCROLL_BAR_LEFT_BORDER (0)
518#define VERTICAL_SCROLL_BAR_RIGHT_BORDER (0)
8694f11b
GV
519#define VERTICAL_SCROLL_BAR_TOP_BORDER (vertical_scroll_bar_top_border)
520#define VERTICAL_SCROLL_BAR_BOTTOM_BORDER (vertical_scroll_bar_bottom_border)
c3b8ccce
GV
521
522/* Minimum lengths for scroll bar handles, in pixels. */
8694f11b
GV
523#define VERTICAL_SCROLL_BAR_MIN_HANDLE (vertical_scroll_bar_min_handle)
524
361358ea
JB
525struct frame; /* from frame.h */
526
527extern void w32_fill_rect (struct frame *, HDC, COLORREF, RECT *);
528extern void w32_clear_window (struct frame *);
c3b8ccce 529
fbd6baed 530#define w32_fill_area(f,hdc,pix,x,y,nx,ny) \
680e49c3 531do { \
c3b8ccce
GV
532 RECT rect; \
533 rect.left = x; \
534 rect.top = y; \
535 rect.right = x + nx; \
536 rect.bottom = y + ny; \
fbd6baed 537 w32_fill_rect (f,hdc,pix,&rect); \
680e49c3 538} while (0)
c3b8ccce 539
764ec9e5
MR
540#define w32_fill_area_abs(f,hdc,pix,x0,y0,x1,y1) \
541do { \
542 RECT rect; \
543 rect.left = x0; \
544 rect.top = y0; \
545 rect.right = x1; \
546 rect.bottom = y1; \
547 w32_fill_rect (f,hdc,pix,&rect); \
548} while (0)
549
fbd6baed 550#define w32_clear_rect(f,hdc,lprect) \
9e75e167 551 w32_fill_rect (f, hdc, FRAME_BACKGROUND_PIXEL (f), lprect)
c3b8ccce 552
51dcffad 553#define w32_clear_area(f,hdc,px,py,nx,ny) \
9e75e167 554 w32_fill_area (f, hdc, FRAME_BACKGROUND_PIXEL (f), px, py, nx, ny)
c3b8ccce 555
8694f11b
GV
556/* Define for earlier versions of Visual C */
557#ifndef WM_MOUSEWHEEL
f11f6cce 558#define WM_MOUSEWHEEL (WM_MOUSELAST + 1)
8694f11b 559#endif /* WM_MOUSEWHEEL */
f11f6cce
GV
560#ifndef MSH_MOUSEWHEEL
561#define MSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
562#endif /* MSH_MOUSEWHEEL */
76e4fd8c
JR
563#ifndef WM_XBUTTONDOWN
564#define WM_XBUTTONDOWN (WM_MOUSEWHEEL + 1)
565#define WM_XBUTTONUP (WM_MOUSEWHEEL + 2)
566#endif /* WM_XBUTTONDOWN */
c3659876
JR
567#ifndef WM_MOUSEHWHEEL
568#define WM_MOUSEHWHEEL (WM_MOUSEWHEEL + 4)
569#endif /* WM_MOUSEHWHEEL */
0fe216b2
JR
570#ifndef WM_APPCOMMAND
571#define WM_APPCOMMAND 0x319
572#define GET_APPCOMMAND_LPARAM(lParam) (HIWORD(lParam) & 0x7fff)
573#endif
7684e57b 574#ifndef WM_UNICHAR
499180d5
JR
575#define WM_UNICHAR 0x109
576#endif
577#ifndef UNICODE_NOCHAR
578#define UNICODE_NOCHAR 0xFFFF
579#endif
8694f11b 580
c3b8ccce 581#define WM_EMACS_START (WM_USER + 1)
bb355434
GV
582#define WM_EMACS_KILL (WM_EMACS_START + 0)
583#define WM_EMACS_CREATEWINDOW (WM_EMACS_START + 1)
584#define WM_EMACS_DONE (WM_EMACS_START + 2)
585#define WM_EMACS_CREATESCROLLBAR (WM_EMACS_START + 3)
586#define WM_EMACS_SHOWWINDOW (WM_EMACS_START + 4)
587#define WM_EMACS_SETWINDOWPOS (WM_EMACS_START + 5)
588#define WM_EMACS_DESTROYWINDOW (WM_EMACS_START + 6)
589#define WM_EMACS_TRACKPOPUPMENU (WM_EMACS_START + 7)
590#define WM_EMACS_SETFOCUS (WM_EMACS_START + 8)
591#define WM_EMACS_SETFOREGROUND (WM_EMACS_START + 9)
592#define WM_EMACS_SETLOCALE (WM_EMACS_START + 10)
593#define WM_EMACS_SETKEYBOARDLAYOUT (WM_EMACS_START + 11)
594#define WM_EMACS_REGISTER_HOT_KEY (WM_EMACS_START + 12)
595#define WM_EMACS_UNREGISTER_HOT_KEY (WM_EMACS_START + 13)
93066bc2 596#define WM_EMACS_TOGGLE_LOCK_KEY (WM_EMACS_START + 14)
64ade657
JR
597#define WM_EMACS_TRACK_CARET (WM_EMACS_START + 15)
598#define WM_EMACS_DESTROY_CARET (WM_EMACS_START + 16)
ab8b2d20
JR
599#define WM_EMACS_SHOW_CARET (WM_EMACS_START + 17)
600#define WM_EMACS_HIDE_CARET (WM_EMACS_START + 18)
f3358105 601#define WM_EMACS_SETCURSOR (WM_EMACS_START + 19)
f7b146dc 602#define WM_EMACS_PAINT (WM_EMACS_START + 20)
85d0efd1 603#define WM_EMACS_BRINGTOTOP (WM_EMACS_START + 21)
70147944
EZ
604#define WM_EMACS_INPUT_READY (WM_EMACS_START + 22)
605#define WM_EMACS_FILENOTIFY (WM_EMACS_START + 23)
0fda9b75 606#define WM_EMACS_END (WM_EMACS_START + 24)
c3b8ccce 607
177c0ea7
JB
608#define WND_FONTWIDTH_INDEX (0)
609#define WND_LINEHEIGHT_INDEX (4)
610#define WND_BORDER_INDEX (8)
611#define WND_SCROLLBAR_INDEX (12)
612#define WND_BACKGROUND_INDEX (16)
8694f11b 613#define WND_LAST_INDEX (20)
c3b8ccce 614
c3b8ccce
GV
615#define WND_EXTRA_BYTES (WND_LAST_INDEX)
616
de31b97a
GV
617extern DWORD dwWindowsThreadId;
618extern HANDLE hWindowsThread;
c3b8ccce
GV
619extern DWORD dwMainThreadId;
620extern HANDLE hMainThread;
621
fbd6baed 622typedef struct W32Msg {
c3b8ccce
GV
623 MSG msg;
624 DWORD dwModifiers;
625 RECT rect;
fbd6baed 626} W32Msg;
c3b8ccce 627
0fda9b75
DC
628extern BOOL prepend_msg (W32Msg *lpmsg);
629
8694f11b
GV
630/* Structure for recording message when input thread must return a
631 result that depends on lisp thread to compute. Lisp thread can
632 complete deferred messages out of order. */
633typedef struct deferred_msg
634{
635 struct deferred_msg * next;
636 W32Msg w32msg;
637 LRESULT result;
638 int completed;
639} deferred_msg;
640
aba66c88
GV
641extern CRITICAL_SECTION critsect;
642
361358ea
JB
643extern void init_crit (void);
644extern void delete_crit (void);
c3b8ccce 645
361358ea 646extern void signal_quit (void);
b44c3d59 647
aba66c88
GV
648#define enter_crit() EnterCriticalSection (&critsect)
649#define leave_crit() LeaveCriticalSection (&critsect)
650
651extern void select_palette (struct frame * f, HDC hdc);
652extern void deselect_palette (struct frame * f, HDC hdc);
653extern HDC get_frame_dc (struct frame * f);
654extern int release_frame_dc (struct frame * f, HDC hDC);
655
977c6479 656extern int drain_message_queue (void);
b37ac782 657
361358ea
JB
658extern BOOL get_next_msg (W32Msg *, BOOL);
659extern BOOL post_msg (W32Msg *);
8694f11b 660extern void complete_deferred_msg (HWND hwnd, UINT msg, LRESULT result);
c3b8ccce 661
361358ea 662extern BOOL parse_button (int, int, int *, int *);
c684f475 663
a032a9a8
JR
664extern void w32_sys_ring_bell (struct frame *f);
665extern void x_delete_display (struct w32_display_info *dpyinfo);
8cd879af 666
0b86d359 667extern volatile int notification_buffer_in_use;
477f1e50
EZ
668extern BYTE file_notifications[16384];
669extern DWORD notifications_size;
37a4dabe 670extern void *notifications_desc;
0b86d359 671extern Lisp_Object w32_get_watch_object (void *);
182b170f 672extern Lisp_Object lispy_file_action (DWORD);
9c099ca7 673extern int handle_file_notifications (struct input_event *);
a032a9a8 674
a68089e4 675extern void w32_initialize_display_info (Lisp_Object);
9337e206 676extern void initialize_w32_display (struct terminal *, int *, int *);
a68089e4 677
fbd6baed 678/* Keypad command key support. W32 doesn't have virtual keys defined
c684f475 679 for the function keys on the keypad (they are mapped to the standard
c5e87d10 680 function keys), so we define our own. */
c684f475
GV
681#define VK_NUMPAD_BEGIN 0x92
682#define VK_NUMPAD_CLEAR (VK_NUMPAD_BEGIN + 0)
683#define VK_NUMPAD_ENTER (VK_NUMPAD_BEGIN + 1)
684#define VK_NUMPAD_PRIOR (VK_NUMPAD_BEGIN + 2)
685#define VK_NUMPAD_NEXT (VK_NUMPAD_BEGIN + 3)
686#define VK_NUMPAD_END (VK_NUMPAD_BEGIN + 4)
687#define VK_NUMPAD_HOME (VK_NUMPAD_BEGIN + 5)
688#define VK_NUMPAD_LEFT (VK_NUMPAD_BEGIN + 6)
689#define VK_NUMPAD_UP (VK_NUMPAD_BEGIN + 7)
690#define VK_NUMPAD_RIGHT (VK_NUMPAD_BEGIN + 8)
691#define VK_NUMPAD_DOWN (VK_NUMPAD_BEGIN + 9)
692#define VK_NUMPAD_INSERT (VK_NUMPAD_BEGIN + 10)
693#define VK_NUMPAD_DELETE (VK_NUMPAD_BEGIN + 11)
694
695#ifndef VK_LWIN
696/* Older compiler environments don't have these defined. */
697#define VK_LWIN 0x5B
698#define VK_RWIN 0x5C
699#define VK_APPS 0x5D
700#endif
bb355434
GV
701
702/* Support for treating Windows and Apps keys as modifiers. These
703 constants must not overlap with any of the dwControlKeyState flags in
704 KEY_EVENT_RECORD. */
705#define LEFT_WIN_PRESSED 0x8000
706#define RIGHT_WIN_PRESSED 0x4000
707#define APPS_PRESSED 0x2000
51dcffad 708
302fc036
EZ
709/* The current ANSI input codepage for GUI sessions. */
710extern int w32_keyboard_codepage;
711
a81bf19b
JR
712/* When compiling on Windows 9x/ME and NT 3.x, the following are not defined
713 (even though they are supported on 98 and ME. */
714#ifndef WM_MOUSELEAVE
715#define WM_MOUSELEAVE 0x02A3
716#define TME_LEAVE 0x00000002;
717
177c0ea7 718typedef struct tagTRACKMOUSEEVENT
a81bf19b
JR
719{
720 DWORD cbSize;
721 DWORD dwFlags;
722 HWND hwndTrack;
723 DWORD dwHoverTime;
724} TRACKMOUSEEVENT;
725#endif
726
9f21c5a2
EZ
727struct image;
728struct face;
729
51dcffad 730XGCValues *XCreateGC (void *, Window, unsigned long, XGCValues *);
f3c4ec74 731
361358ea 732typedef DWORD (WINAPI * ClipboardSequence_Proc) (void);
ee8062ff
JR
733typedef BOOL (WINAPI * AppendMenuW_Proc) (
734 IN HMENU,
735 IN UINT,
736 IN UINT_PTR,
737 IN LPCWSTR);
6b61353c 738
7684e57b
JB
739extern HWND w32_system_caret_hwnd;
740extern int w32_system_caret_height;
741extern int w32_system_caret_x;
742extern int w32_system_caret_y;
b932cad7
EZ
743extern struct window *w32_system_caret_window;
744extern int w32_system_caret_hdr_height;
745extern int w32_system_caret_mode_height;
0fda9b75 746
d8715cdf
EZ
747#ifdef _MSC_VER
748#ifndef EnumSystemLocales
749/* MSVC headers define these only for _WIN32_WINNT >= 0x0500. */
750typedef BOOL (CALLBACK *LOCALE_ENUMPROCA)(LPSTR);
751typedef BOOL (CALLBACK *LOCALE_ENUMPROCW)(LPWSTR);
752BOOL WINAPI EnumSystemLocalesA(LOCALE_ENUMPROCA,DWORD);
88c4a13c 753BOOL WINAPI EnumSystemLocalesW(LOCALE_ENUMPROCW,DWORD);
d8715cdf
EZ
754#ifdef UNICODE
755#define EnumSystemLocales EnumSystemLocalesW
756#else
757#define EnumSystemLocales EnumSystemLocalesA
758#endif
759#endif
760#endif
761
0fda9b75
DC
762#if EMACSDEBUG
763extern const char*
764w32_name_of_message (UINT msg);
765#endif /* EMACSDEBUG */
766
819e2da9
DC
767#ifdef NTGUI_UNICODE
768extern Lisp_Object ntgui_encode_system (Lisp_Object str);
769#define GUISTR(x) (L ## x)
770#define GUI_ENCODE_FILE GUI_ENCODE_SYSTEM
771#define GUI_ENCODE_SYSTEM(x) ntgui_encode_system (x)
772#define GUI_FN(fn) fn ## W
773typedef wchar_t guichar_t;
774#else /* !NTGUI_UNICODE */
775#define GUISTR(x) x
776#define GUI_ENCODE_FILE ENCODE_FILE
777#define GUI_ENCODE_SYSTEM ENCODE_SYSTEM
778#define GUI_FN(fn) fn
779typedef char guichar_t;
780#endif /* NTGUI_UNICODE */
781
782#define GUI_SDATA(x) ((guichar_t*) SDATA (x))
783
0afa0aab 784extern Lisp_Object w32_popup_dialog (struct frame *, Lisp_Object, Lisp_Object);
0afa0aab 785
0fda9b75
DC
786extern void syms_of_w32term (void);
787extern void syms_of_w32menu (void);
788extern void syms_of_w32fns (void);
789
790extern void globals_of_w32menu (void);
791extern void globals_of_w32fns (void);
37a4dabe 792extern void globals_of_w32notify (void);
0fda9b75
DC
793
794#ifdef CYGWIN
795extern int w32_message_fd;
796#endif /* CYGWIN */