unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: Changes to gdb-ui.el
  2005-03-20 23:03 Changes to gdb-ui.el Nick Roberts
@ 2005-03-20 22:39 ` Miles Bader
  2005-03-21 17:29 ` Richard Stallman
  2005-03-22  5:16 ` Miles Bader
  2 siblings, 0 replies; 7+ messages in thread
From: Miles Bader @ 2005-03-20 22:39 UTC (permalink / raw)
  Cc: emacs-devel

On Mon, 21 Mar 2005 11:03:10 +1200, Nick Roberts <nickrob@snap.net.nz> wrote:
> I don't think using breakpoint faces in text-mode quite works. On a basic
> xterm, an enabled breakpoint (letter 'B') stands out clearly in red, but
> as disabled breakpoint (letter 'b') disappears completely.

It works correclty on the linux console; it may be face definitions
need tweaking for "low-color" terminals (this can be done using the
conditional facility of the face definition language).

> the subtleties of faces but maybe grey60 gets 'rounded' to white on an xterm
> with 8/16 colours.

Yes, this is probably what's happening.

> Also the background of the face doesn't always match the
> background of the terminal (I have found particularly so for a gnome-terminal).

Ok; probably the `:inherit fringe' should be used only for bitmaps (is
it even useful for them?  I though fringe stuff would get merged with
the fringe face anyway).

> In X, enabled/disabled breakpoints are distinguished by colour alone, the
> icons having the same shape both in the margin and in the fringe. In text
> mode the breakpoint state is already distinguished by the case of the letter
> (B/b) so the same colour can be used. To help it stand out from the text,
> I guess this color could be red in both cases, a color which I presume is
> available on many terminals.

Note that I made this change because I was setting breakpoints on a
tty and couldn't see them very well; having them displayed in bold red
_really_ helps.

I'll give the faces a tweak to reflect the above points.

-Miles
-- 
Do not taunt Happy Fun Ball.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Changes to gdb-ui.el
@ 2005-03-20 23:03 Nick Roberts
  2005-03-20 22:39 ` Miles Bader
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Nick Roberts @ 2005-03-20 23:03 UTC (permalink / raw)



I don't think using breakpoint faces in text-mode quite works. On a basic
xterm, an enabled breakpoint (letter 'B') stands out clearly in red, but
as disabled breakpoint (letter 'b') disappears completely. I don't understand
the subtleties of faces but maybe grey60 gets 'rounded' to white on an xterm
with 8/16 colours. Also the background of the face doesn't always match the
background of the terminal (I have found particularly so for a gnome-terminal).

In X, enabled/disabled breakpoints are distinguished by colour alone, the
icons having the same shape both in the margin and in the fringe. In text
mode the breakpoint state is already distinguished by the case of the letter
(B/b) so the same colour can be used. To help it stand out from the text,
I guess this color could be red in both cases, a color which I presume is
available on many terminals.

Nick

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Changes to gdb-ui.el
  2005-03-20 23:03 Changes to gdb-ui.el Nick Roberts
  2005-03-20 22:39 ` Miles Bader
@ 2005-03-21 17:29 ` Richard Stallman
  2005-03-21 22:10   ` Nick Roberts
  2005-03-22  5:16 ` Miles Bader
  2 siblings, 1 reply; 7+ messages in thread
From: Richard Stallman @ 2005-03-21 17:29 UTC (permalink / raw)
  Cc: emacs-devel

    I don't think using breakpoint faces in text-mode quite works.

You're the main GUD hacker now.  If you don't like the change that was
installed in gdb-ui.el, please don't argue--please take it out.  If
you think it is ok but some details need tweaking, please do that.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Changes to gdb-ui.el
  2005-03-21 17:29 ` Richard Stallman
@ 2005-03-21 22:10   ` Nick Roberts
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Roberts @ 2005-03-21 22:10 UTC (permalink / raw)
  Cc: emacs-devel

 >     I don't think using breakpoint faces in text-mode quite works.
 > 
 > You're the main GUD hacker now.  If you don't like the change that was
 > installed in gdb-ui.el, please don't argue--please take it out.  If
 > you think it is ok but some details need tweaking, please do that.

I am just describing the shortcomings so that Miles can tweak the code. He
knows more about faces than I do.

Nick

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Changes to gdb-ui.el
  2005-03-20 23:03 Changes to gdb-ui.el Nick Roberts
  2005-03-20 22:39 ` Miles Bader
  2005-03-21 17:29 ` Richard Stallman
@ 2005-03-22  5:16 ` Miles Bader
  2005-03-22 20:45   ` Richard Stallman
  2 siblings, 1 reply; 7+ messages in thread
From: Miles Bader @ 2005-03-22  5:16 UTC (permalink / raw)
  Cc: emacs-devel

I've changed the faces, so I think they should now handle all the
various cases correctly.  I with both light and dark backgrounds, and
both a graphic display and gnome-terminal.

One thing I wonder about -- when displaying something in the fringe on
a graphic display you must :inherit `fringe' to get the background
correct (otherwise it uses the `default' background); shouldn't
redisplay merge any face used in the fringe withh the `fringe' face
during display?

-Miles
-- 
Do not taunt Happy Fun Ball.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Changes to gdb-ui.el
  2005-03-22  5:16 ` Miles Bader
@ 2005-03-22 20:45   ` Richard Stallman
  2005-03-22 23:31     ` Kim F. Storm
  0 siblings, 1 reply; 7+ messages in thread
From: Richard Stallman @ 2005-03-22 20:45 UTC (permalink / raw)
  Cc: nickrob, emacs-devel

    One thing I wonder about -- when displaying something in the fringe on
    a graphic display you must :inherit `fringe' to get the background
    correct (otherwise it uses the `default' background); shouldn't
    redisplay merge any face used in the fringe withh the `fringe' face
    during display?

I think that would be more correct.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Changes to gdb-ui.el
  2005-03-22 20:45   ` Richard Stallman
@ 2005-03-22 23:31     ` Kim F. Storm
  0 siblings, 0 replies; 7+ messages in thread
From: Kim F. Storm @ 2005-03-22 23:31 UTC (permalink / raw)
  Cc: nickrob, snogglethorpe, emacs-devel, miles

Richard Stallman <rms@gnu.org> writes:

>     One thing I wonder about -- when displaying something in the fringe on
>     a graphic display you must :inherit `fringe' to get the background
>     correct (otherwise it uses the `default' background); shouldn't
>     redisplay merge any face used in the fringe withh the `fringe' face
>     during display?
>
> I think that would be more correct.

Done.

-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2005-03-22 23:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-03-20 23:03 Changes to gdb-ui.el Nick Roberts
2005-03-20 22:39 ` Miles Bader
2005-03-21 17:29 ` Richard Stallman
2005-03-21 22:10   ` Nick Roberts
2005-03-22  5:16 ` Miles Bader
2005-03-22 20:45   ` Richard Stallman
2005-03-22 23:31     ` Kim F. Storm

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).