mirror of
https://github.com/brl/mutter.git
synced 2025-02-16 21:34:09 +00:00
wayland: split headers and distribute structure definitions
Instead of having all structures in one huge headers, move them in the appropriate place, and create one header for surface state. https://bugzilla.gnome.org/show_bug.cgi?id=707128
This commit is contained in:
parent
0f0c23fbab
commit
806d5939e3
@ -196,6 +196,8 @@ libmutter_wayland_la_SOURCES += \
|
|||||||
wayland/meta-wayland-seat.h \
|
wayland/meta-wayland-seat.h \
|
||||||
wayland/meta-wayland-stage.h \
|
wayland/meta-wayland-stage.h \
|
||||||
wayland/meta-wayland-stage.c \
|
wayland/meta-wayland-stage.c \
|
||||||
|
wayland/meta-wayland-surface.h \
|
||||||
|
wayland/meta-wayland-types.h \
|
||||||
wayland/meta-weston-launch.c \
|
wayland/meta-weston-launch.c \
|
||||||
wayland/meta-weston-launch.h
|
wayland/meta-weston-launch.h
|
||||||
|
|
||||||
|
@ -44,15 +44,7 @@
|
|||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
#include <cairo.h>
|
#include <cairo.h>
|
||||||
#include <gdk-pixbuf/gdk-pixbuf.h>
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
||||||
#include "meta-wayland-private.h"
|
#include "meta-wayland-types.h"
|
||||||
|
|
||||||
/* XXX: We should find a nicer approach to deal with the
|
|
||||||
* circular dependency we have with the current headers
|
|
||||||
* (meta-wayland-private.h which typedefs MetaWaylandSurface
|
|
||||||
* also includes window-private.h) */
|
|
||||||
#ifndef HAVE_META_WAYLAND_SURFACE_TYPE
|
|
||||||
typedef struct _MetaWaylandSurface MetaWaylandSurface;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct _MetaWindowQueue MetaWindowQueue;
|
typedef struct _MetaWindowQueue MetaWindowQueue;
|
||||||
|
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
#include "meta-wayland-data-device.h"
|
#include "meta-wayland-data-device.h"
|
||||||
#include "meta-wayland-seat.h"
|
#include "meta-wayland-seat.h"
|
||||||
#include "meta-wayland-pointer.h"
|
#include "meta-wayland-pointer.h"
|
||||||
|
#include "meta-wayland-private.h"
|
||||||
|
|
||||||
static void
|
static void
|
||||||
data_offer_accept (struct wl_client *client,
|
data_offer_accept (struct wl_client *client,
|
||||||
|
@ -58,7 +58,7 @@
|
|||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include <clutter/evdev/clutter-evdev.h>
|
#include <clutter/evdev/clutter-evdev.h>
|
||||||
|
|
||||||
#include "meta-wayland-keyboard.h"
|
#include "meta-wayland-private.h"
|
||||||
|
|
||||||
static MetaWaylandSeat *
|
static MetaWaylandSeat *
|
||||||
meta_wayland_keyboard_get_seat (MetaWaylandKeyboard *keyboard)
|
meta_wayland_keyboard_get_seat (MetaWaylandKeyboard *keyboard)
|
||||||
|
@ -48,7 +48,78 @@
|
|||||||
#include <clutter/clutter.h>
|
#include <clutter/clutter.h>
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
|
|
||||||
#include "meta-wayland-seat.h"
|
struct _MetaWaylandKeyboardGrabInterface
|
||||||
|
{
|
||||||
|
void (*key) (MetaWaylandKeyboardGrab * grab, uint32_t time,
|
||||||
|
uint32_t key, uint32_t state);
|
||||||
|
void (*modifiers) (MetaWaylandKeyboardGrab * grab, uint32_t serial,
|
||||||
|
uint32_t mods_depressed, uint32_t mods_latched,
|
||||||
|
uint32_t mods_locked, uint32_t group);
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _MetaWaylandKeyboardGrab
|
||||||
|
{
|
||||||
|
const MetaWaylandKeyboardGrabInterface *interface;
|
||||||
|
MetaWaylandKeyboard *keyboard;
|
||||||
|
MetaWaylandSurface *focus;
|
||||||
|
uint32_t key;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
struct xkb_keymap *keymap;
|
||||||
|
int keymap_fd;
|
||||||
|
size_t keymap_size;
|
||||||
|
char *keymap_area;
|
||||||
|
xkb_mod_index_t shift_mod;
|
||||||
|
xkb_mod_index_t caps_mod;
|
||||||
|
xkb_mod_index_t ctrl_mod;
|
||||||
|
xkb_mod_index_t alt_mod;
|
||||||
|
xkb_mod_index_t mod2_mod;
|
||||||
|
xkb_mod_index_t mod3_mod;
|
||||||
|
xkb_mod_index_t super_mod;
|
||||||
|
xkb_mod_index_t mod5_mod;
|
||||||
|
} MetaWaylandXkbInfo;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
uint32_t mods_depressed;
|
||||||
|
uint32_t mods_latched;
|
||||||
|
uint32_t mods_locked;
|
||||||
|
uint32_t group;
|
||||||
|
} MetaWaylandXkbState;
|
||||||
|
|
||||||
|
struct _MetaWaylandKeyboard
|
||||||
|
{
|
||||||
|
struct wl_list resource_list;
|
||||||
|
MetaWaylandSurface *focus;
|
||||||
|
struct wl_resource *focus_resource;
|
||||||
|
struct wl_listener focus_listener;
|
||||||
|
uint32_t focus_serial;
|
||||||
|
struct wl_signal focus_signal;
|
||||||
|
|
||||||
|
MetaWaylandKeyboardGrab *grab;
|
||||||
|
MetaWaylandKeyboardGrab default_grab;
|
||||||
|
uint32_t grab_key;
|
||||||
|
uint32_t grab_serial;
|
||||||
|
uint32_t grab_time;
|
||||||
|
|
||||||
|
struct wl_array keys;
|
||||||
|
|
||||||
|
MetaWaylandXkbState modifier_state;
|
||||||
|
|
||||||
|
struct wl_display *display;
|
||||||
|
|
||||||
|
struct xkb_context *xkb_context;
|
||||||
|
struct xkb_state *xkb_state;
|
||||||
|
gboolean is_evdev;
|
||||||
|
|
||||||
|
MetaWaylandXkbInfo xkb_info;
|
||||||
|
struct xkb_rule_names xkb_names;
|
||||||
|
|
||||||
|
MetaWaylandKeyboardGrab input_method_grab;
|
||||||
|
struct wl_resource *input_method_resource;
|
||||||
|
};
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
meta_wayland_keyboard_init (MetaWaylandKeyboard *keyboard,
|
meta_wayland_keyboard_init (MetaWaylandKeyboard *keyboard,
|
||||||
|
@ -44,6 +44,7 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include "meta-wayland-pointer.h"
|
#include "meta-wayland-pointer.h"
|
||||||
|
#include "meta-wayland-private.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -22,7 +22,51 @@
|
|||||||
|
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
|
|
||||||
#include "meta-wayland-seat.h"
|
#include <glib.h>
|
||||||
|
|
||||||
|
#include "meta-wayland-types.h"
|
||||||
|
|
||||||
|
struct _MetaWaylandPointerGrabInterface
|
||||||
|
{
|
||||||
|
void (*focus) (MetaWaylandPointerGrab * grab,
|
||||||
|
MetaWaylandSurface * surface, wl_fixed_t x, wl_fixed_t y);
|
||||||
|
void (*motion) (MetaWaylandPointerGrab * grab,
|
||||||
|
uint32_t time, wl_fixed_t x, wl_fixed_t y);
|
||||||
|
void (*button) (MetaWaylandPointerGrab * grab,
|
||||||
|
uint32_t time, uint32_t button, uint32_t state);
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _MetaWaylandPointerGrab
|
||||||
|
{
|
||||||
|
const MetaWaylandPointerGrabInterface *interface;
|
||||||
|
MetaWaylandPointer *pointer;
|
||||||
|
MetaWaylandSurface *focus;
|
||||||
|
wl_fixed_t x, y;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _MetaWaylandPointer
|
||||||
|
{
|
||||||
|
struct wl_list resource_list;
|
||||||
|
MetaWaylandSurface *focus;
|
||||||
|
struct wl_resource *focus_resource;
|
||||||
|
struct wl_listener focus_listener;
|
||||||
|
guint32 focus_serial;
|
||||||
|
struct wl_signal focus_signal;
|
||||||
|
|
||||||
|
MetaWaylandPointerGrab *grab;
|
||||||
|
MetaWaylandPointerGrab default_grab;
|
||||||
|
wl_fixed_t grab_x, grab_y;
|
||||||
|
guint32 grab_button;
|
||||||
|
guint32 grab_serial;
|
||||||
|
guint32 grab_time;
|
||||||
|
|
||||||
|
wl_fixed_t x, y;
|
||||||
|
MetaWaylandSurface *current;
|
||||||
|
struct wl_listener current_listener;
|
||||||
|
wl_fixed_t current_x, current_y;
|
||||||
|
|
||||||
|
guint32 button_count;
|
||||||
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
meta_wayland_pointer_init (MetaWaylandPointer *pointer);
|
meta_wayland_pointer_init (MetaWaylandPointer *pointer);
|
||||||
|
@ -31,33 +31,9 @@
|
|||||||
#include "meta-weston-launch.h"
|
#include "meta-weston-launch.h"
|
||||||
#include <meta/meta-cursor-tracker.h>
|
#include <meta/meta-cursor-tracker.h>
|
||||||
|
|
||||||
typedef struct _MetaWaylandCompositor MetaWaylandCompositor;
|
#include "meta-wayland-types.h"
|
||||||
|
#include "meta-wayland-surface.h"
|
||||||
typedef struct _MetaWaylandSeat MetaWaylandSeat;
|
#include "meta-wayland-seat.h"
|
||||||
typedef struct _MetaWaylandPointer MetaWaylandPointer;
|
|
||||||
typedef struct _MetaWaylandPointerGrab MetaWaylandPointerGrab;
|
|
||||||
typedef struct _MetaWaylandPointerGrabInterface MetaWaylandPointerGrabInterface;
|
|
||||||
typedef struct _MetaWaylandKeyboard MetaWaylandKeyboard;
|
|
||||||
typedef struct _MetaWaylandKeyboardGrab MetaWaylandKeyboardGrab;
|
|
||||||
typedef struct _MetaWaylandKeyboardGrabInterface MetaWaylandKeyboardGrabInterface;
|
|
||||||
typedef struct _MetaWaylandDataOffer MetaWaylandDataOffer;
|
|
||||||
typedef struct _MetaWaylandDataSource MetaWaylandDataSource;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
struct wl_resource *resource;
|
|
||||||
struct wl_signal destroy_signal;
|
|
||||||
struct wl_listener destroy_listener;
|
|
||||||
|
|
||||||
int32_t width, height;
|
|
||||||
uint32_t busy_count;
|
|
||||||
} MetaWaylandBuffer;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
MetaWaylandBuffer *buffer;
|
|
||||||
struct wl_listener destroy_listener;
|
|
||||||
} MetaWaylandBufferReference;
|
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
@ -65,49 +41,6 @@ typedef struct
|
|||||||
cairo_region_t *region;
|
cairo_region_t *region;
|
||||||
} MetaWaylandRegion;
|
} MetaWaylandRegion;
|
||||||
|
|
||||||
struct _MetaWaylandSurface
|
|
||||||
{
|
|
||||||
struct wl_resource *resource;
|
|
||||||
MetaWaylandCompositor *compositor;
|
|
||||||
guint32 xid;
|
|
||||||
int x;
|
|
||||||
int y;
|
|
||||||
MetaWaylandBufferReference buffer_ref;
|
|
||||||
MetaWindow *window;
|
|
||||||
gboolean has_shell_surface;
|
|
||||||
|
|
||||||
/* All the pending state, that wl_surface.commit will apply. */
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
/* wl_surface.attach */
|
|
||||||
gboolean newly_attached;
|
|
||||||
MetaWaylandBuffer *buffer;
|
|
||||||
struct wl_listener buffer_destroy_listener;
|
|
||||||
int32_t sx;
|
|
||||||
int32_t sy;
|
|
||||||
|
|
||||||
/* wl_surface.damage */
|
|
||||||
cairo_region_t *damage;
|
|
||||||
|
|
||||||
cairo_region_t *input_region;
|
|
||||||
cairo_region_t *opaque_region;
|
|
||||||
|
|
||||||
/* wl_surface.frame */
|
|
||||||
struct wl_list frame_callback_list;
|
|
||||||
} pending;
|
|
||||||
};
|
|
||||||
|
|
||||||
#ifndef HAVE_META_WAYLAND_SURFACE_TYPE
|
|
||||||
typedef struct _MetaWaylandSurface MetaWaylandSurface;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
MetaWaylandSurface *surface;
|
|
||||||
struct wl_resource *resource;
|
|
||||||
struct wl_listener surface_destroy_listener;
|
|
||||||
} MetaWaylandSurfaceExtension;
|
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
GSource source;
|
GSource source;
|
||||||
@ -158,175 +91,6 @@ struct _MetaWaylandCompositor
|
|||||||
guint32 implicit_grab_button;
|
guint32 implicit_grab_button;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _MetaWaylandPointerGrabInterface
|
|
||||||
{
|
|
||||||
void (*focus) (MetaWaylandPointerGrab * grab,
|
|
||||||
MetaWaylandSurface * surface, wl_fixed_t x, wl_fixed_t y);
|
|
||||||
void (*motion) (MetaWaylandPointerGrab * grab,
|
|
||||||
uint32_t time, wl_fixed_t x, wl_fixed_t y);
|
|
||||||
void (*button) (MetaWaylandPointerGrab * grab,
|
|
||||||
uint32_t time, uint32_t button, uint32_t state);
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _MetaWaylandPointerGrab
|
|
||||||
{
|
|
||||||
const MetaWaylandPointerGrabInterface *interface;
|
|
||||||
MetaWaylandPointer *pointer;
|
|
||||||
MetaWaylandSurface *focus;
|
|
||||||
wl_fixed_t x, y;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _MetaWaylandPointer
|
|
||||||
{
|
|
||||||
struct wl_list resource_list;
|
|
||||||
MetaWaylandSurface *focus;
|
|
||||||
struct wl_resource *focus_resource;
|
|
||||||
struct wl_listener focus_listener;
|
|
||||||
guint32 focus_serial;
|
|
||||||
struct wl_signal focus_signal;
|
|
||||||
|
|
||||||
MetaWaylandPointerGrab *grab;
|
|
||||||
MetaWaylandPointerGrab default_grab;
|
|
||||||
wl_fixed_t grab_x, grab_y;
|
|
||||||
guint32 grab_button;
|
|
||||||
guint32 grab_serial;
|
|
||||||
guint32 grab_time;
|
|
||||||
|
|
||||||
wl_fixed_t x, y;
|
|
||||||
MetaWaylandSurface *current;
|
|
||||||
struct wl_listener current_listener;
|
|
||||||
wl_fixed_t current_x, current_y;
|
|
||||||
|
|
||||||
guint32 button_count;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _MetaWaylandKeyboardGrabInterface
|
|
||||||
{
|
|
||||||
void (*key) (MetaWaylandKeyboardGrab * grab, uint32_t time,
|
|
||||||
uint32_t key, uint32_t state);
|
|
||||||
void (*modifiers) (MetaWaylandKeyboardGrab * grab, uint32_t serial,
|
|
||||||
uint32_t mods_depressed, uint32_t mods_latched,
|
|
||||||
uint32_t mods_locked, uint32_t group);
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _MetaWaylandKeyboardGrab
|
|
||||||
{
|
|
||||||
const MetaWaylandKeyboardGrabInterface *interface;
|
|
||||||
MetaWaylandKeyboard *keyboard;
|
|
||||||
MetaWaylandSurface *focus;
|
|
||||||
uint32_t key;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
struct xkb_keymap *keymap;
|
|
||||||
int keymap_fd;
|
|
||||||
size_t keymap_size;
|
|
||||||
char *keymap_area;
|
|
||||||
xkb_mod_index_t shift_mod;
|
|
||||||
xkb_mod_index_t caps_mod;
|
|
||||||
xkb_mod_index_t ctrl_mod;
|
|
||||||
xkb_mod_index_t alt_mod;
|
|
||||||
xkb_mod_index_t mod2_mod;
|
|
||||||
xkb_mod_index_t mod3_mod;
|
|
||||||
xkb_mod_index_t super_mod;
|
|
||||||
xkb_mod_index_t mod5_mod;
|
|
||||||
} MetaWaylandXkbInfo;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
uint32_t mods_depressed;
|
|
||||||
uint32_t mods_latched;
|
|
||||||
uint32_t mods_locked;
|
|
||||||
uint32_t group;
|
|
||||||
} MetaWaylandXkbState;
|
|
||||||
|
|
||||||
struct _MetaWaylandKeyboard
|
|
||||||
{
|
|
||||||
struct wl_list resource_list;
|
|
||||||
MetaWaylandSurface *focus;
|
|
||||||
struct wl_resource *focus_resource;
|
|
||||||
struct wl_listener focus_listener;
|
|
||||||
uint32_t focus_serial;
|
|
||||||
struct wl_signal focus_signal;
|
|
||||||
|
|
||||||
MetaWaylandKeyboardGrab *grab;
|
|
||||||
MetaWaylandKeyboardGrab default_grab;
|
|
||||||
uint32_t grab_key;
|
|
||||||
uint32_t grab_serial;
|
|
||||||
uint32_t grab_time;
|
|
||||||
|
|
||||||
struct wl_array keys;
|
|
||||||
|
|
||||||
MetaWaylandXkbState modifier_state;
|
|
||||||
|
|
||||||
struct wl_display *display;
|
|
||||||
|
|
||||||
struct xkb_context *xkb_context;
|
|
||||||
struct xkb_state *xkb_state;
|
|
||||||
gboolean is_evdev;
|
|
||||||
|
|
||||||
MetaWaylandXkbInfo xkb_info;
|
|
||||||
struct xkb_rule_names xkb_names;
|
|
||||||
|
|
||||||
MetaWaylandKeyboardGrab input_method_grab;
|
|
||||||
struct wl_resource *input_method_resource;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _MetaWaylandDataOffer
|
|
||||||
{
|
|
||||||
struct wl_resource *resource;
|
|
||||||
MetaWaylandDataSource *source;
|
|
||||||
struct wl_listener source_destroy_listener;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _MetaWaylandDataSource
|
|
||||||
{
|
|
||||||
struct wl_resource *resource;
|
|
||||||
struct wl_array mime_types;
|
|
||||||
|
|
||||||
void (*accept) (MetaWaylandDataSource * source,
|
|
||||||
uint32_t serial, const char *mime_type);
|
|
||||||
void (*send) (MetaWaylandDataSource * source,
|
|
||||||
const char *mime_type, int32_t fd);
|
|
||||||
void (*cancel) (MetaWaylandDataSource * source);
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _MetaWaylandSeat
|
|
||||||
{
|
|
||||||
struct wl_list base_resource_list;
|
|
||||||
struct wl_signal destroy_signal;
|
|
||||||
|
|
||||||
uint32_t selection_serial;
|
|
||||||
MetaWaylandDataSource *selection_data_source;
|
|
||||||
struct wl_listener selection_data_source_listener;
|
|
||||||
struct wl_signal selection_signal;
|
|
||||||
|
|
||||||
struct wl_list drag_resource_list;
|
|
||||||
struct wl_client *drag_client;
|
|
||||||
MetaWaylandDataSource *drag_data_source;
|
|
||||||
struct wl_listener drag_data_source_listener;
|
|
||||||
MetaWaylandSurface *drag_focus;
|
|
||||||
struct wl_resource *drag_focus_resource;
|
|
||||||
struct wl_listener drag_focus_listener;
|
|
||||||
MetaWaylandPointerGrab drag_grab;
|
|
||||||
MetaWaylandSurface *drag_surface;
|
|
||||||
struct wl_listener drag_icon_listener;
|
|
||||||
struct wl_signal drag_icon_signal;
|
|
||||||
|
|
||||||
MetaWaylandPointer pointer;
|
|
||||||
MetaWaylandKeyboard keyboard;
|
|
||||||
|
|
||||||
struct wl_display *display;
|
|
||||||
|
|
||||||
MetaCursorTracker *cursor_tracker;
|
|
||||||
MetaWaylandSurface *sprite;
|
|
||||||
int hotspot_x, hotspot_y;
|
|
||||||
struct wl_listener sprite_destroy_listener;
|
|
||||||
|
|
||||||
ClutterActor *current_stage;
|
|
||||||
};
|
|
||||||
|
|
||||||
void meta_wayland_init (void);
|
void meta_wayland_init (void);
|
||||||
void meta_wayland_finalize (void);
|
void meta_wayland_finalize (void);
|
||||||
|
|
||||||
|
@ -27,7 +27,64 @@
|
|||||||
#include <clutter/clutter.h>
|
#include <clutter/clutter.h>
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#include "meta-wayland-private.h"
|
#include <meta/meta-cursor-tracker.h>
|
||||||
|
#include "meta-wayland-types.h"
|
||||||
|
#include "meta-wayland-keyboard.h"
|
||||||
|
#include "meta-wayland-pointer.h"
|
||||||
|
|
||||||
|
struct _MetaWaylandDataOffer
|
||||||
|
{
|
||||||
|
struct wl_resource *resource;
|
||||||
|
MetaWaylandDataSource *source;
|
||||||
|
struct wl_listener source_destroy_listener;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _MetaWaylandDataSource
|
||||||
|
{
|
||||||
|
struct wl_resource *resource;
|
||||||
|
struct wl_array mime_types;
|
||||||
|
|
||||||
|
void (*accept) (MetaWaylandDataSource * source,
|
||||||
|
uint32_t serial, const char *mime_type);
|
||||||
|
void (*send) (MetaWaylandDataSource * source,
|
||||||
|
const char *mime_type, int32_t fd);
|
||||||
|
void (*cancel) (MetaWaylandDataSource * source);
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _MetaWaylandSeat
|
||||||
|
{
|
||||||
|
struct wl_list base_resource_list;
|
||||||
|
struct wl_signal destroy_signal;
|
||||||
|
|
||||||
|
uint32_t selection_serial;
|
||||||
|
MetaWaylandDataSource *selection_data_source;
|
||||||
|
struct wl_listener selection_data_source_listener;
|
||||||
|
struct wl_signal selection_signal;
|
||||||
|
|
||||||
|
struct wl_list drag_resource_list;
|
||||||
|
struct wl_client *drag_client;
|
||||||
|
MetaWaylandDataSource *drag_data_source;
|
||||||
|
struct wl_listener drag_data_source_listener;
|
||||||
|
MetaWaylandSurface *drag_focus;
|
||||||
|
struct wl_resource *drag_focus_resource;
|
||||||
|
struct wl_listener drag_focus_listener;
|
||||||
|
MetaWaylandPointerGrab drag_grab;
|
||||||
|
MetaWaylandSurface *drag_surface;
|
||||||
|
struct wl_listener drag_icon_listener;
|
||||||
|
struct wl_signal drag_icon_signal;
|
||||||
|
|
||||||
|
MetaWaylandPointer pointer;
|
||||||
|
MetaWaylandKeyboard keyboard;
|
||||||
|
|
||||||
|
struct wl_display *display;
|
||||||
|
|
||||||
|
MetaCursorTracker *cursor_tracker;
|
||||||
|
MetaWaylandSurface *sprite;
|
||||||
|
int hotspot_x, hotspot_y;
|
||||||
|
struct wl_listener sprite_destroy_listener;
|
||||||
|
|
||||||
|
ClutterActor *current_stage;
|
||||||
|
};
|
||||||
|
|
||||||
MetaWaylandSeat *
|
MetaWaylandSeat *
|
||||||
meta_wayland_seat_new (struct wl_display *display,
|
meta_wayland_seat_new (struct wl_display *display,
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include <cogl/cogl-wayland-server.h>
|
#include <cogl/cogl-wayland-server.h>
|
||||||
|
|
||||||
#include "meta-wayland-stage.h"
|
#include "meta-wayland-stage.h"
|
||||||
|
#include "meta-wayland-private.h"
|
||||||
#include "meta/meta-window-actor.h"
|
#include "meta/meta-window-actor.h"
|
||||||
#include "meta/meta-shaped-texture.h"
|
#include "meta/meta-shaped-texture.h"
|
||||||
#include "meta-cursor-tracker-private.h"
|
#include "meta-cursor-tracker-private.h"
|
||||||
|
90
src/wayland/meta-wayland-surface.h
Normal file
90
src/wayland/meta-wayland-surface.h
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 Red Hat, Inc.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License as
|
||||||
|
* published by the Free Software Foundation; either version 2 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
|
* 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef META_WAYLAND_SURFACE_H
|
||||||
|
#define META_WAYLAND_SURFACE_H
|
||||||
|
|
||||||
|
#include <wayland-server.h>
|
||||||
|
#include <xkbcommon/xkbcommon.h>
|
||||||
|
#include <clutter/clutter.h>
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
#include <cairo.h>
|
||||||
|
|
||||||
|
#include <meta/meta-cursor-tracker.h>
|
||||||
|
#include "meta-wayland-types.h"
|
||||||
|
|
||||||
|
struct _MetaWaylandBuffer
|
||||||
|
{
|
||||||
|
struct wl_resource *resource;
|
||||||
|
struct wl_signal destroy_signal;
|
||||||
|
struct wl_listener destroy_listener;
|
||||||
|
|
||||||
|
int32_t width, height;
|
||||||
|
uint32_t busy_count;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _MetaWaylandBufferReference
|
||||||
|
{
|
||||||
|
MetaWaylandBuffer *buffer;
|
||||||
|
struct wl_listener destroy_listener;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
/* wl_surface.attach */
|
||||||
|
gboolean newly_attached;
|
||||||
|
MetaWaylandBuffer *buffer;
|
||||||
|
struct wl_listener buffer_destroy_listener;
|
||||||
|
int32_t sx;
|
||||||
|
int32_t sy;
|
||||||
|
|
||||||
|
/* wl_surface.damage */
|
||||||
|
cairo_region_t *damage;
|
||||||
|
|
||||||
|
cairo_region_t *input_region;
|
||||||
|
cairo_region_t *opaque_region;
|
||||||
|
|
||||||
|
/* wl_surface.frame */
|
||||||
|
struct wl_list frame_callback_list;
|
||||||
|
} MetaWaylandDoubleBufferedState;
|
||||||
|
|
||||||
|
struct _MetaWaylandSurface
|
||||||
|
{
|
||||||
|
struct wl_resource *resource;
|
||||||
|
MetaWaylandCompositor *compositor;
|
||||||
|
guint32 xid;
|
||||||
|
int x;
|
||||||
|
int y;
|
||||||
|
MetaWaylandBufferReference buffer_ref;
|
||||||
|
MetaWindow *window;
|
||||||
|
gboolean has_shell_surface;
|
||||||
|
|
||||||
|
/* All the pending state, that wl_surface.commit will apply. */
|
||||||
|
MetaWaylandDoubleBufferedState pending;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
MetaWaylandSurface *surface;
|
||||||
|
struct wl_resource *resource;
|
||||||
|
struct wl_listener surface_destroy_listener;
|
||||||
|
} MetaWaylandSurfaceExtension;
|
||||||
|
|
||||||
|
#endif
|
40
src/wayland/meta-wayland-types.h
Normal file
40
src/wayland/meta-wayland-types.h
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 Red Hat, Inc.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License as
|
||||||
|
* published by the Free Software Foundation; either version 2 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
|
* 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef META_WAYLAND_TYPES_H
|
||||||
|
#define META_WAYLAND_TYPES_H
|
||||||
|
|
||||||
|
typedef struct _MetaWaylandCompositor MetaWaylandCompositor;
|
||||||
|
|
||||||
|
typedef struct _MetaWaylandSeat MetaWaylandSeat;
|
||||||
|
typedef struct _MetaWaylandPointer MetaWaylandPointer;
|
||||||
|
typedef struct _MetaWaylandPointerGrab MetaWaylandPointerGrab;
|
||||||
|
typedef struct _MetaWaylandPointerGrabInterface MetaWaylandPointerGrabInterface;
|
||||||
|
typedef struct _MetaWaylandKeyboard MetaWaylandKeyboard;
|
||||||
|
typedef struct _MetaWaylandKeyboardGrab MetaWaylandKeyboardGrab;
|
||||||
|
typedef struct _MetaWaylandKeyboardGrabInterface MetaWaylandKeyboardGrabInterface;
|
||||||
|
typedef struct _MetaWaylandDataOffer MetaWaylandDataOffer;
|
||||||
|
typedef struct _MetaWaylandDataSource MetaWaylandDataSource;
|
||||||
|
|
||||||
|
typedef struct _MetaWaylandBuffer MetaWaylandBuffer;
|
||||||
|
typedef struct _MetaWaylandBufferReference MetaWaylandBufferReference;
|
||||||
|
|
||||||
|
typedef struct _MetaWaylandSurface MetaWaylandSurface;
|
||||||
|
|
||||||
|
#endif
|
Loading…
x
Reference in New Issue
Block a user