1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
Copyright (C) 2010 Red Hat, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SPICE_WIDGET_PRIV_H__
#define __SPICE_WIDGET_PRIV_H__
G_BEGIN_DECLS
#include "config.h"
#ifdef WITH_X11
#include <X11/Xlib.h>
#include <X11/extensions/XShm.h>
#include <gdk/gdkx.h>
#endif
#ifdef WIN32
#include <windows.h>
#endif
#include "spice-widget.h"
#include "spice-common.h"
#include "spice-gtk-session.h"
#define SPICE_DISPLAY_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE((obj), SPICE_TYPE_DISPLAY, SpiceDisplayPrivate))
struct _SpiceDisplayPrivate {
gint channel_id;
gint monitor_id;
/* options */
bool keyboard_grab_enable;
gboolean keyboard_grab_inhibit;
bool mouse_grab_enable;
bool resize_guest_enable;
/* state */
gboolean ready;
gboolean monitor_ready;
enum SpiceSurfaceFmt format;
gint width, height, stride;
gint shmid;
gpointer data_origin; /* the original display image data */
gpointer data; /* converted if necessary to 32 bits */
GdkRectangle area;
/* window border */
gint ww, wh, mx, my;
bool convert;
bool have_mitshm;
gboolean allow_scaling;
gboolean only_downscale;
gboolean disable_inputs;
/* TODO: make a display object instead? */
#ifdef WITH_X11
Display *dpy;
XVisualInfo *vi;
XImage *ximage;
XShmSegmentInfo *shminfo;
GC gc;
#else
cairo_surface_t *ximage;
#endif
SpiceSession *session;
SpiceGtkSession *gtk_session;
SpiceMainChannel *main;
SpiceChannel *display;
SpiceCursorChannel *cursor;
SpiceInputsChannel *inputs;
SpiceSmartcardChannel *smartcard;
enum SpiceMouseMode mouse_mode;
int mouse_grab_active;
bool mouse_have_pointer;
GdkCursor *mouse_cursor;
GdkPixbuf *mouse_pixbuf;
GdkPoint mouse_hotspot;
GdkCursor *show_cursor;
int mouse_last_x;
int mouse_last_y;
int mouse_guest_x;
int mouse_guest_y;
bool keyboard_grab_active;
bool keyboard_have_focus;
const guint16 *keycode_map;
size_t keycode_maplen;
uint32_t key_state[512 / 32];
int key_delayed_scancode;
guint key_delayed_id;
SpiceGrabSequence *grabseq; /* the configured key sequence */
gboolean *activeseq; /* the currently pressed keys */
gboolean seq_pressed;
gboolean keyboard_grab_released;
gint mark;
#ifdef WIN32
HHOOK keyboard_hook;
int win_mouse[3];
int win_mouse_speed;
#endif
guint keypress_delay;
gint zoom_level;
#ifdef GDK_WINDOWING_X11
int x11_accel_numerator;
int x11_accel_denominator;
int x11_threshold;
#endif
};
int spicex_image_create (SpiceDisplay *display);
void spicex_image_destroy (SpiceDisplay *display);
#if GTK_CHECK_VERSION (2, 91, 0)
void spicex_draw_event (SpiceDisplay *display, cairo_t *cr);
#else
void spicex_expose_event (SpiceDisplay *display, GdkEventExpose *ev);
#endif
gboolean spicex_is_scaled (SpiceDisplay *display);
void spice_display_get_scaling (SpiceDisplay *display, double *s, int *x, int *y, int *w, int *h);
G_END_DECLS
#endif
|