aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-08-29 14:37:51 +0000
committerRichard M. Stallman2002-08-29 14:37:51 +0000
commit10136eddeac2eec737d25bb104a8f31c29b77557 (patch)
treee2737b4fec2553843f362a58a1edb2fae251635d /src
parentdcd8d1edfecf78b0b17a2e7afe29c8f73082c2e6 (diff)
downloademacs-10136eddeac2eec737d25bb104a8f31c29b77557.tar.gz
emacs-10136eddeac2eec737d25bb104a8f31c29b77557.zip
(FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH): New macros.
(struct w32_output): New fields blink_off_cursor, blink_off_cursor_width. (FRAME_CURSOR_WIDTH): New macro.
Diffstat (limited to 'src')
-rw-r--r--src/w32term.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/w32term.h b/src/w32term.h
index a5fa83c97f7..ae9ee098ecb 100644
--- a/src/w32term.h
+++ b/src/w32term.h
@@ -380,6 +380,13 @@ struct w32_output
380 /* Width of bar cursor (if we are using that). */ 380 /* Width of bar cursor (if we are using that). */
381 int cursor_width; 381 int cursor_width;
382 382
383 /* What kind of text cursor should we draw when the cursor blinks off?
384 This can be filled_box_cursor or bar_cursor or no_cursor. */
385 enum text_cursor_kinds blink_off_cursor;
386
387 /* Width of bar cursor (if we are using that) for blink-off state. */
388 int blink_off_cursor_width;
389
383 DWORD dwStyle; 390 DWORD dwStyle;
384 391
385 /* The size of the extra width currently allotted for vertical 392 /* The size of the extra width currently allotted for vertical
@@ -482,6 +489,9 @@ enum
482#define PIXEL_HEIGHT(f) ((f)->output_data.w32->pixel_height) 489#define PIXEL_HEIGHT(f) ((f)->output_data.w32->pixel_height)
483 490
484#define FRAME_DESIRED_CURSOR(f) ((f)->output_data.w32->desired_cursor) 491#define FRAME_DESIRED_CURSOR(f) ((f)->output_data.w32->desired_cursor)
492#define FRAME_BLINK_OFF_CURSOR(f) ((f)->output_data.w32->blink_off_cursor)
493#define FRAME_CURSOR_WIDTH(f) ((f)->output_data.w32->cursor_width)
494#define FRAME_BLINK_OFF_CURSOR_WIDTH(f) ((f)->output_data.w32->blink_off_cursor_width)
485 495
486/* Value is the smallest width of any character in any font on frame F. */ 496/* Value is the smallest width of any character in any font on frame F. */
487 497