diff options
| author | Po Lu | 2022-03-25 13:41:30 +0000 |
|---|---|---|
| committer | Po Lu | 2022-03-25 13:41:30 +0000 |
| commit | 4dfd42014b50aadd82b425747fe65fa97df28caa (patch) | |
| tree | 083cd4a906024025b336b2c2c53323a7e764de67 /src/haiku_support.h | |
| parent | 8ba0f190642d20e8f9caa7472c12674c7ba65a69 (diff) | |
| download | emacs-4dfd42014b50aadd82b425747fe65fa97df28caa.tar.gz emacs-4dfd42014b50aadd82b425747fe65fa97df28caa.zip | |
Implement new drag and drop parameter on Haiku
* lisp/term/haiku-win.el (x-begin-drag): Implement
`allow-current-frame'.
* src/haiku_support.cc (be_drag_message): New argument
`allow_same_view'.
* src/haiku_support.h: Update prototypes.
* src/haikuselect.c (Fhaiku_drag_message): New parameter
`allow-same-frame'.
Diffstat (limited to 'src/haiku_support.h')
| -rw-r--r-- | src/haiku_support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/haiku_support.h b/src/haiku_support.h index c978926e735..ae3ad6a68a8 100644 --- a/src/haiku_support.h +++ b/src/haiku_support.h | |||
| @@ -944,7 +944,7 @@ extern "C" | |||
| 944 | BMessage_delete (void *message); | 944 | BMessage_delete (void *message); |
| 945 | 945 | ||
| 946 | extern bool | 946 | extern bool |
| 947 | be_drag_message (void *view, void *message, | 947 | be_drag_message (void *view, void *message, bool allow_same_view, |
| 948 | void (*block_input_function) (void), | 948 | void (*block_input_function) (void), |
| 949 | void (*unblock_input_function) (void), | 949 | void (*unblock_input_function) (void), |
| 950 | void (*process_pending_signals_function) (void), | 950 | void (*process_pending_signals_function) (void), |