[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/w32term.h
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/src/w32term.h |
Date: |
Thu, 29 Aug 2002 10:37:51 -0400 |
Index: emacs/src/w32term.h
diff -c emacs/src/w32term.h:1.46 emacs/src/w32term.h:1.47
*** emacs/src/w32term.h:1.46 Wed May 22 15:36:13 2002
--- emacs/src/w32term.h Thu Aug 29 10:37:51 2002
***************
*** 380,385 ****
--- 380,392 ----
/* Width of bar cursor (if we are using that). */
int cursor_width;
+ /* What kind of text cursor should we draw when the cursor blinks off?
+ This can be filled_box_cursor or bar_cursor or no_cursor. */
+ enum text_cursor_kinds blink_off_cursor;
+
+ /* Width of bar cursor (if we are using that) for blink-off state. */
+ int blink_off_cursor_width;
+
DWORD dwStyle;
/* The size of the extra width currently allotted for vertical
***************
*** 482,487 ****
--- 489,497 ----
#define PIXEL_HEIGHT(f) ((f)->output_data.w32->pixel_height)
#define FRAME_DESIRED_CURSOR(f) ((f)->output_data.w32->desired_cursor)
+ #define FRAME_BLINK_OFF_CURSOR(f) ((f)->output_data.w32->blink_off_cursor)
+ #define FRAME_CURSOR_WIDTH(f) ((f)->output_data.w32->cursor_width)
+ #define FRAME_BLINK_OFF_CURSOR_WIDTH(f)
((f)->output_data.w32->blink_off_cursor_width)
/* Value is the smallest width of any character in any font on frame F. */
- [Emacs-diffs] Changes to emacs/src/w32term.h,
Richard M. Stallman <=