Mercurial > emacs
diff src/termhooks.h @ 1821:04fb1d3d6992
JimB's changes since January 18th
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Tue, 26 Jan 1993 01:58:16 +0000 |
| parents | 5d58b9f1ff22 |
| children | 73ce9dd21093 |
line wrap: on
line diff
--- a/src/termhooks.h Tue Jan 26 01:56:29 1993 +0000 +++ b/src/termhooks.h Tue Jan 26 01:58:16 1993 +0000 @@ -96,6 +96,17 @@ X, this means that Emacs lies about where the focus is. */ extern void (*frame_rehighlight_hook) ( /* void */ ); +/* If we're displaying frames using a window system that can stack + frames on top of each other, this hook allows you to bring a frame + to the front, or bury it behind all the other windows. If this + hook is zero, that means the device we're displaying on doesn't + support overlapping frames, so there's no need to raise or lower + anything. + + If RAISE is non-zero, F is brought to the front, before all other + windows. If RAISE is zero, F is sent to the back, behind all other + windows. */ +extern void (*frame_raise_lower_hook) ( /* FRAME_PTR f, int raise */ ); /* Scrollbar hooks. */
