aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-08-30 12:03:50 +0000
committerKim F. Storm2002-08-30 12:03:50 +0000
commitadce8b417fc856baa892e2abe3be2ff60b352fa6 (patch)
tree5311ed3fd1a9eb002ad5c1047c83a5735e843a65
parent50e363e6cbd1bc10ea7da5d7d1fdeda38b3d0dc8 (diff)
downloademacs-adce8b417fc856baa892e2abe3be2ff60b352fa6.tar.gz
emacs-adce8b417fc856baa892e2abe3be2ff60b352fa6.zip
(enum text_cursor_kinds): Removed.
(struct output_w32) <current_cursor, desired_cursor, cursor_width> <blink_off_cursor, blink_off_cursor_width>: Members removed. (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR) (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
-rw-r--r--src/w32term.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/w32term.h b/src/w32term.h
index ae9ee098ecb..a2620ecff5b 100644
--- a/src/w32term.h
+++ b/src/w32term.h
@@ -63,14 +63,6 @@ extern BOOL bUseDflt;
63 63
64extern struct frame *x_window_to_frame (); 64extern struct frame *x_window_to_frame ();
65 65
66enum text_cursor_kinds {
67 NO_CURSOR = -1,
68 FILLED_BOX_CURSOR,
69 HOLLOW_BOX_CURSOR,
70 BAR_CURSOR,
71 HBAR_CURSOR
72};
73
74/* Structure recording bitmaps and reference count. 66/* Structure recording bitmaps and reference count.
75 If REFCOUNT is 0 then this record is free to be reused. */ 67 If REFCOUNT is 0 then this record is free to be reused. */
76 68
@@ -369,24 +361,6 @@ struct w32_output
369 /* Flag to set when the window needs to be completely repainted. */ 361 /* Flag to set when the window needs to be completely repainted. */
370 int needs_exposure; 362 int needs_exposure;
371 363
372 /* What kind of text cursor is drawn in this window right now?
373 (If there is no cursor (phys_cursor_x < 0), then this means nothing.) */
374 enum text_cursor_kinds current_cursor;
375
376 /* What kind of text cursor should we draw in the future?
377 This should always be filled_box_cursor or bar_cursor. */
378 enum text_cursor_kinds desired_cursor;
379
380 /* Width of bar cursor (if we are using that). */
381 int cursor_width;
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
390 DWORD dwStyle; 364 DWORD dwStyle;
391 365
392 /* The size of the extra width currently allotted for vertical 366 /* The size of the extra width currently allotted for vertical
@@ -488,11 +462,6 @@ enum
488#define PIXEL_WIDTH(f) ((f)->output_data.w32->pixel_width) 462#define PIXEL_WIDTH(f) ((f)->output_data.w32->pixel_width)
489#define PIXEL_HEIGHT(f) ((f)->output_data.w32->pixel_height) 463#define PIXEL_HEIGHT(f) ((f)->output_data.w32->pixel_height)
490 464
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)
495
496/* Value is the smallest width of any character in any font on frame F. */ 465/* Value is the smallest width of any character in any font on frame F. */
497 466
498#define FRAME_SMALLEST_CHAR_WIDTH(F) \ 467#define FRAME_SMALLEST_CHAR_WIDTH(F) \