aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2002-08-30 12:02:32 +0000
committerKim F. Storm2002-08-30 12:02:32 +0000
commitbd59ac2c02356237441a2a9f1d668337a3964bc5 (patch)
treec5db34ce775a5a91e43b01b8a0a485452ac6ddc6 /src
parent668e2d326015e004cc1a7ca0698f6d381b6ff3e8 (diff)
downloademacs-bd59ac2c02356237441a2a9f1d668337a3964bc5.tar.gz
emacs-bd59ac2c02356237441a2a9f1d668337a3964bc5.zip
(enum text_cursor_kinds): Removed.
(struct output_mac) <current_cursor, desired_cursor, cursor_width> <blink_off_cursor, blink_off_cursor_width>: Members removed. (FRAME_DESIRED_CURSOR): Macro removed.
Diffstat (limited to 'src')
-rw-r--r--src/macterm.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/macterm.h b/src/macterm.h
index 578a6ec2a4f..c5d3e174120 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -42,13 +42,6 @@ Boston, MA 02111-1307, USA. */
42 42
43#define FONT_MAX_WIDTH(f) FONT_WIDTH(f) /* fix later */ 43#define FONT_MAX_WIDTH(f) FONT_WIDTH(f) /* fix later */
44 44
45enum text_cursor_kinds {
46 NO_CURSOR = -1,
47 FILLED_BOX_CURSOR,
48 HOLLOW_BOX_CURSOR,
49 BAR_CURSOR
50};
51
52/* Structure recording bitmaps and reference count. 45/* Structure recording bitmaps and reference count.
53 If REFCOUNT is 0 then this record is free to be reused. */ 46 If REFCOUNT is 0 then this record is free to be reused. */
54 47
@@ -353,17 +346,6 @@ struct mac_output {
353 346
354#endif 347#endif
355 348
356 /* What kind of text cursor is drawn in this window right now?
357 (If there is no cursor (phys_cursor_x < 0), then this means nothing.) */
358 enum text_cursor_kinds current_cursor;
359
360 /* What kind of text cursor should we draw in the future?
361 This should always be filled_box_cursor or bar_cursor. */
362 enum text_cursor_kinds desired_cursor;
363
364 /* Width of bar cursor (if we are using that). */
365 int cursor_width;
366
367#if 0 349#if 0
368 DWORD dwStyle; 350 DWORD dwStyle;
369#endif 351#endif
@@ -452,8 +434,6 @@ typedef struct mac_output mac_output;
452#define PIXEL_WIDTH(f) ((f)->output_data.mac->pixel_width) 434#define PIXEL_WIDTH(f) ((f)->output_data.mac->pixel_width)
453#define PIXEL_HEIGHT(f) ((f)->output_data.mac->pixel_height) 435#define PIXEL_HEIGHT(f) ((f)->output_data.mac->pixel_height)
454 436
455#define FRAME_DESIRED_CURSOR(f) ((f)->output_data.mac->desired_cursor)
456
457/* Value is the smallest width of any character in any font on frame F. */ 437/* Value is the smallest width of any character in any font on frame F. */
458 438
459#define FRAME_SMALLEST_CHAR_WIDTH(F) \ 439#define FRAME_SMALLEST_CHAR_WIDTH(F) \