SDL  2.0
The wl_data_device interface

Data Structures

struct  wl_data_device_listener
 

Macros

#define WL_DATA_DEVICE_DATA_OFFER_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_ENTER_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_LEAVE_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_MOTION_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_DROP_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_SELECTION_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_START_DRAG_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_SET_SELECTION_SINCE_VERSION   1
 
#define WL_DATA_DEVICE_RELEASE_SINCE_VERSION   2
 

Functions

static int wl_data_device_add_listener (struct wl_data_device *wl_data_device, const struct wl_data_device_listener *listener, void *data)
 
static void wl_data_device_set_user_data (struct wl_data_device *wl_data_device, void *user_data)
 
static voidwl_data_device_get_user_data (struct wl_data_device *wl_data_device)
 
static void wl_data_device_destroy (struct wl_data_device *wl_data_device)
 
static void wl_data_device_start_drag (struct wl_data_device *wl_data_device, struct wl_data_source *source, struct wl_surface *origin, struct wl_surface *icon, uint32_t serial)
 
static void wl_data_device_set_selection (struct wl_data_device *wl_data_device, struct wl_data_source *source, uint32_t serial)
 
static void wl_data_device_release (struct wl_data_device *wl_data_device)
 

Detailed Description

There is one wl_data_device per seat which can be obtained from the global wl_data_device_manager singleton.

A wl_data_device provides access to inter-client data transfer mechanisms such as copy-and-paste and drag-and-drop.

Macro Definition Documentation

◆ WL_DATA_DEVICE_DATA_OFFER_SINCE_VERSION

#define WL_DATA_DEVICE_DATA_OFFER_SINCE_VERSION   1

Definition at line 2467 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_DROP_SINCE_VERSION

#define WL_DATA_DEVICE_DROP_SINCE_VERSION   1

Definition at line 2483 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_ENTER_SINCE_VERSION

#define WL_DATA_DEVICE_ENTER_SINCE_VERSION   1

Definition at line 2471 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_LEAVE_SINCE_VERSION

#define WL_DATA_DEVICE_LEAVE_SINCE_VERSION   1

Definition at line 2475 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_MOTION_SINCE_VERSION

#define WL_DATA_DEVICE_MOTION_SINCE_VERSION   1

Definition at line 2479 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_RELEASE_SINCE_VERSION

#define WL_DATA_DEVICE_RELEASE_SINCE_VERSION   2

Definition at line 2500 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_SELECTION_SINCE_VERSION

#define WL_DATA_DEVICE_SELECTION_SINCE_VERSION   1

Definition at line 2487 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_SET_SELECTION_SINCE_VERSION

#define WL_DATA_DEVICE_SET_SELECTION_SINCE_VERSION   1

Definition at line 2496 of file wayland-client-protocol.h.

◆ WL_DATA_DEVICE_START_DRAG_SINCE_VERSION

#define WL_DATA_DEVICE_START_DRAG_SINCE_VERSION   1

Definition at line 2492 of file wayland-client-protocol.h.

Function Documentation

◆ wl_data_device_add_listener()

static int wl_data_device_add_listener ( struct wl_data_device *  wl_data_device,
const struct wl_data_device_listener listener,
void data 
)
inlinestatic

Definition at line 2453 of file wayland-client-protocol.h.

2455 {
2456  return wl_proxy_add_listener((struct wl_proxy *) wl_data_device,
2457  (void (**)(void)) listener, data);
2458 }
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: SDL_opengl.h:1974

◆ wl_data_device_destroy()

static void wl_data_device_destroy ( struct wl_data_device *  wl_data_device)
inlinestatic

Definition at line 2524 of file wayland-client-protocol.h.

2525 {
2526  wl_proxy_destroy((struct wl_proxy *) wl_data_device);
2527 }

◆ wl_data_device_get_user_data()

static void* wl_data_device_get_user_data ( struct wl_data_device *  wl_data_device)
inlinestatic

Definition at line 2511 of file wayland-client-protocol.h.

2512 {
2513  return wl_proxy_get_user_data((struct wl_proxy *) wl_data_device);
2514 }

◆ wl_data_device_release()

static void wl_data_device_release ( struct wl_data_device *  wl_data_device)
inlinestatic

This request destroys the data device.

Definition at line 2588 of file wayland-client-protocol.h.

References WL_DATA_DEVICE_RELEASE.

2589 {
2590  wl_proxy_marshal((struct wl_proxy *) wl_data_device,
2592 
2593  wl_proxy_destroy((struct wl_proxy *) wl_data_device);
2594 }
#define WL_DATA_DEVICE_RELEASE

◆ wl_data_device_set_selection()

static void wl_data_device_set_selection ( struct wl_data_device *  wl_data_device,
struct wl_data_source *  source,
uint32_t  serial 
)
inlinestatic

This request asks the compositor to set the selection to the data from the source on behalf of the client.

To unset the selection, set the source to NULL.

Definition at line 2576 of file wayland-client-protocol.h.

References WL_DATA_DEVICE_SET_SELECTION.

2577 {
2578  wl_proxy_marshal((struct wl_proxy *) wl_data_device,
2580 }
#define WL_DATA_DEVICE_SET_SELECTION
GLsizei GLsizei GLchar * source

◆ wl_data_device_set_user_data()

static void wl_data_device_set_user_data ( struct wl_data_device *  wl_data_device,
void user_data 
)
inlinestatic

Definition at line 2504 of file wayland-client-protocol.h.

2505 {
2506  wl_proxy_set_user_data((struct wl_proxy *) wl_data_device, user_data);
2507 }

◆ wl_data_device_start_drag()

static void wl_data_device_start_drag ( struct wl_data_device *  wl_data_device,
struct wl_data_source *  source,
struct wl_surface *  origin,
struct wl_surface *  icon,
uint32_t  serial 
)
inlinestatic

This request asks the compositor to start a drag-and-drop operation on behalf of the client.

The source argument is the data source that provides the data for the eventual data transfer. If source is NULL, enter, leave and motion events are sent only to the client that initiated the drag and the client is expected to handle the data passing internally.

The origin surface is the surface where the drag originates and the client must have an active implicit grab that matches the serial.

The icon surface is an optional (can be NULL) surface that provides an icon to be moved around with the cursor. Initially, the top-left corner of the icon surface is placed at the cursor hotspot, but subsequent wl_surface.attach request can move the relative position. Attach requests must be confirmed with wl_surface.commit as usual. The icon surface is given the role of a drag-and-drop icon. If the icon surface already has another role, it raises a protocol error.

The current and pending input regions of the icon wl_surface are cleared, and wl_surface.set_input_region is ignored until the wl_surface is no longer used as the icon surface. When the use as an icon ends, the current and pending input regions become undefined, and the wl_surface is unmapped.

Definition at line 2561 of file wayland-client-protocol.h.

References WL_DATA_DEVICE_START_DRAG.

2562 {
2563  wl_proxy_marshal((struct wl_proxy *) wl_data_device,
2564  WL_DATA_DEVICE_START_DRAG, source, origin, icon, serial);
2565 }
#define WL_DATA_DEVICE_START_DRAG
GLsizei GLsizei GLchar * source