diff options
| author | Karl Heuer | 1994-10-27 21:09:39 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-27 21:09:39 +0000 |
| commit | f2afbef624dfc3762be4cc8cd6cead4521efb165 (patch) | |
| tree | 208aaf425d59366edd04e9b3678f9eec89634971 /src | |
| parent | 3cd6928989765466504ce97f1179191b78d54ca9 (diff) | |
| download | emacs-f2afbef624dfc3762be4cc8cd6cead4521efb165.tar.gz emacs-f2afbef624dfc3762be4cc8cd6cead4521efb165.zip | |
(iconify_event, deiconify_event): New events.
Diffstat (limited to 'src')
| -rw-r--r-- | src/termhooks.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index 3c1afc0bc2a..9de8401341e 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -248,10 +248,12 @@ enum event_kind | |||
| 248 | selection_clear_event, /* Another X client cleared our selection. */ | 248 | selection_clear_event, /* Another X client cleared our selection. */ |
| 249 | buffer_switch_event, /* A process filter has switched buffers. */ | 249 | buffer_switch_event, /* A process filter has switched buffers. */ |
| 250 | delete_window_event, /* An X client said "delete this window". */ | 250 | delete_window_event, /* An X client said "delete this window". */ |
| 251 | menu_bar_event /* An event generated by the menu bar. | 251 | menu_bar_event, /* An event generated by the menu bar. |
| 252 | The frame_or_window field holds the | 252 | The frame_or_window field holds the |
| 253 | Lisp-level event value. | 253 | Lisp-level event value. |
| 254 | (Only the toolkit version uses these.) */ | 254 | (Only the toolkit version uses these.) */ |
| 255 | iconify_event, /* An X client iconified this window. */ | ||
| 256 | deiconify_event /* An X client deiconified this window. */ | ||
| 255 | }; | 257 | }; |
| 256 | 258 | ||
| 257 | /* If a struct input_event has a kind which is selection_request_event | 259 | /* If a struct input_event has a kind which is selection_request_event |