[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: More enhancements to fringe bitmaps.
From: |
YAMAMOTO Mitsuharu |
Subject: |
Re: More enhancements to fringe bitmaps. |
Date: |
Tue, 17 Feb 2004 12:13:16 +0900 |
User-agent: |
Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3.50 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) |
>>>>> On 16 Feb 2004 14:22:28 +0100, address@hidden (Kim F. Storm) said:
> Maybe the event/command loop does a select-window at some point
> which isn't restored before redisplay, and so it gets confused.
Hmm, if that is the case, I think the cursor at non-fringe area would
also be affected.
> Is this somehow related to where the mouse is on the screen; it
> could be some mouse related events which confuses the Carbon event
> loop.
I could not observe any difference by the mouse position.
> What happens if you set cursor-in-non-selected-windows to nil?
It just erases the hollow cursors in non-selected windows, and the
selected window still displays the hollow one.
Inspecting by a debugger, I found that glyph->type is 2 (IMAGE_GLYPH)
at the fringe position in question. So the function
get_window_cursor_type determines the cursor type as
HOLLOW_BOX_CURSOR.
/* Use normal cursor if not blinked off. */
if (!w->cursor_off_p)
{
if (glyph->type == IMAGE_GLYPH) {
if (cursor_type == FILLED_BOX_CURSOR)
cursor_type = HOLLOW_BOX_CURSOR;
}
return cursor_type;
}
I guess glyph->type at the fringe position is not properly initialized
in Carbon Emacs. But this does not explain why all the cursors
disappear when a window is split.
YAMAMOTO Mitsuharu
address@hidden
- Re: More enhancements to fringe bitmaps., (continued)
- Re: More enhancements to fringe bitmaps., Kim F. Storm, 2004/02/13
- Re: More enhancements to fringe bitmaps., Harald Maier, 2004/02/14
- Re: More enhancements to fringe bitmaps., YAMAMOTO Mitsuharu, 2004/02/14
- Re: More enhancements to fringe bitmaps., Kim F. Storm, 2004/02/15
- Re: More enhancements to fringe bitmaps., YAMAMOTO Mitsuharu, 2004/02/16
- Re: More enhancements to fringe bitmaps., Kim F. Storm, 2004/02/16
- Re: More enhancements to fringe bitmaps.,
YAMAMOTO Mitsuharu <=
- Re: More enhancements to fringe bitmaps., Kim F. Storm, 2004/02/17
- Re: More enhancements to fringe bitmaps., YAMAMOTO Mitsuharu, 2004/02/17
- Re: More enhancements to fringe bitmaps., Kim F. Storm, 2004/02/18
- Re: More enhancements to fringe bitmaps., YAMAMOTO Mitsuharu, 2004/02/18
- Re: More enhancements to fringe bitmaps., Jason Rumney, 2004/02/19
- Re: More enhancements to fringe bitmaps., Kim F. Storm, 2004/02/19
Re: More enhancements to fringe bitmaps., Masatake YAMATO, 2004/02/09