Mercurial > emacs
comparison 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 |
comparison
equal
deleted
inserted
replaced
1820:b95bdb97c3e8 | 1821:04fb1d3d6992 |
---|---|
94 /* When a frame's focus redirection is changed, this hook tells the | 94 /* When a frame's focus redirection is changed, this hook tells the |
95 window system code to re-decide where to put the highlight. Under | 95 window system code to re-decide where to put the highlight. Under |
96 X, this means that Emacs lies about where the focus is. */ | 96 X, this means that Emacs lies about where the focus is. */ |
97 extern void (*frame_rehighlight_hook) ( /* void */ ); | 97 extern void (*frame_rehighlight_hook) ( /* void */ ); |
98 | 98 |
99 /* If we're displaying frames using a window system that can stack | |
100 frames on top of each other, this hook allows you to bring a frame | |
101 to the front, or bury it behind all the other windows. If this | |
102 hook is zero, that means the device we're displaying on doesn't | |
103 support overlapping frames, so there's no need to raise or lower | |
104 anything. | |
105 | |
106 If RAISE is non-zero, F is brought to the front, before all other | |
107 windows. If RAISE is zero, F is sent to the back, behind all other | |
108 windows. */ | |
109 extern void (*frame_raise_lower_hook) ( /* FRAME_PTR f, int raise */ ); | |
99 | 110 |
100 | 111 |
101 /* Scrollbar hooks. */ | 112 /* Scrollbar hooks. */ |
102 | 113 |
103 /* The representation of scrollbars is determined by the code which | 114 /* The representation of scrollbars is determined by the code which |