mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-02 09:01:39 -05:00
Add proof-of-concept selection support to terminal
Next will be to support mouse selections so we can copy and paste something more interesting than just 'selection data'.
This commit is contained in:
parent
67cac8a565
commit
58eec36f68
3 changed files with 216 additions and 0 deletions
|
|
@ -47,6 +47,9 @@ display_get_display(struct display *display);
|
|||
struct wl_compositor *
|
||||
display_get_compositor(struct display *display);
|
||||
|
||||
struct wl_shell *
|
||||
display_get_shell(struct display *display);
|
||||
|
||||
#ifdef EGL_NO_DISPLAY
|
||||
EGLDisplay
|
||||
display_get_egl_display(struct display *d);
|
||||
|
|
@ -243,4 +246,10 @@ input_get_modifiers(struct input *input);
|
|||
struct wl_input_device *
|
||||
input_get_input_device(struct input *input);
|
||||
|
||||
int
|
||||
input_offers_mime_type(struct input *input, const char *type);
|
||||
int
|
||||
input_receive_mime_type(struct input *input, const char *type);
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue