Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b5a2e277
Commit
b5a2e277
authored
Nov 21, 2004
by
Kim F. Storm
Browse files
(w32_clip_to_row): Add area arg. Callers changed.
(x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
parent
e1dca367
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
src/w32term.c
src/w32term.c
+10
-9
No files found.
src/w32term.c
View file @
b5a2e277
...
...
@@ -260,7 +260,7 @@ static void x_frame_rehighlight P_ ((struct w32_display_info *));
static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
enum text_cursor_kinds));
static void w32_clip_to_row P_ ((struct window *, struct glyph_row *, HDC));
static void w32_clip_to_row P_ ((struct window *, struct glyph_row *,
int,
HDC));
static Lisp_Object Qvendor_specific_keysyms;
...
...
@@ -691,12 +691,12 @@ w32_draw_fringe_bitmap (w, row, p)
int oldVH = row->visible_height;
row->visible_height = p->h;
row->y -= rowY - p->y;
w32_clip_to_row (w, row, hdc);
w32_clip_to_row (w, row,
-1,
hdc);
row->y = oldY;
row->visible_height = oldVH;
}
else
w32_clip_to_row (w, row, hdc);
w32_clip_to_row (w, row,
-1,
hdc);
if (p->bx >= 0 && !p->overlay_p)
{
...
...
@@ -4912,18 +4912,19 @@ w32_read_socket (sd, expected, hold_quit)
mode lines must be clipped to the whole window. */
static void
w32_clip_to_row (w, row, hdc)
w32_clip_to_row (w, row,
area,
hdc)
struct window *w;
struct glyph_row *row;
int area;
HDC hdc;
{
struct frame *f = XFRAME (WINDOW_FRAME (w));
RECT clip_rect;
int window_y, window_width;
int
window_x,
window_y, window_width;
window_box (w,
-1, 0
, &window_y, &window_width, 0);
window_box (w,
area, &window_x
, &window_y, &window_width, 0);
clip_rect.left =
WINDOW_TO_FRAME_PIXEL_X (w, 0)
;
clip_rect.left =
window_x
;
clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
clip_rect.top = max (clip_rect.top, window_y);
clip_rect.right = clip_rect.left + window_width;
...
...
@@ -4983,7 +4984,7 @@ x_draw_hollow_cursor (w, row)
rect.right = rect.left + wd;
hdc = get_frame_dc (f);
/* Set clipping, draw the rectangle, and reset clipping again. */
w32_clip_to_row (w, row, hdc);
w32_clip_to_row (w, row,
TEXT_AREA,
hdc);
FrameRect (hdc, &rect, hb);
DeleteObject (hb);
w32_set_clip_rectangle (hdc, NULL);
...
...
@@ -5049,7 +5050,7 @@ x_draw_bar_cursor (w, row, width, kind)
hdc = get_frame_dc (f);
w32_clip_to_row (w, row, hdc);
w32_clip_to_row (w, row,
TEXT_AREA,
hdc);
if (kind == BAR_CURSOR)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment