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