mirror of https://github.com/FreeRDP/FreeRDP
473 lines
11 KiB
C
473 lines
11 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* X11 Graphical Objects
|
|
*
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xutil.h>
|
|
|
|
#ifdef WITH_XCURSOR
|
|
#include <X11/Xcursor/Xcursor.h>
|
|
#endif
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <freerdp/codec/bitmap.h>
|
|
#include <freerdp/codec/rfx.h>
|
|
#include <freerdp/codec/jpeg.h>
|
|
|
|
#include "xf_graphics.h"
|
|
|
|
#include <freerdp/log.h>
|
|
#define TAG CLIENT_TAG("x11")
|
|
|
|
/* Bitmap Class */
|
|
|
|
void xf_Bitmap_New(rdpContext* context, rdpBitmap* bitmap)
|
|
{
|
|
int depth;
|
|
BYTE* data;
|
|
Pixmap pixmap;
|
|
XImage* image;
|
|
UINT32 SrcFormat;
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
data = bitmap->data;
|
|
depth = (bitmap->bpp >= 24) ? 24 : bitmap->bpp;
|
|
|
|
pixmap = XCreatePixmap(xfc->display, xfc->drawable, bitmap->width, bitmap->height, xfc->depth);
|
|
|
|
if (bitmap->data)
|
|
{
|
|
XSetFunction(xfc->display, xfc->gc, GXcopy);
|
|
|
|
if (depth != xfc->depth)
|
|
{
|
|
data = _aligned_malloc(bitmap->width * bitmap->height * 4, 16);
|
|
|
|
if (!data)
|
|
return;
|
|
|
|
SrcFormat = gdi_get_pixel_format(bitmap->bpp, TRUE);
|
|
|
|
freerdp_image_copy(data, xfc->format, -1, 0, 0,
|
|
bitmap->width, bitmap->height, bitmap->data, SrcFormat, -1, 0, 0, xfc->palette);
|
|
|
|
_aligned_free(bitmap->data);
|
|
bitmap->data = data;
|
|
|
|
bitmap->bpp = (xfc->depth >= 24) ? 32 : xfc->depth;
|
|
}
|
|
|
|
image = XCreateImage(xfc->display, xfc->visual, xfc->depth,
|
|
ZPixmap, 0, (char*) bitmap->data, bitmap->width, bitmap->height, xfc->scanline_pad, 0);
|
|
|
|
XPutImage(xfc->display, pixmap, xfc->gc, image, 0, 0, 0, 0, bitmap->width, bitmap->height);
|
|
|
|
XFree(image);
|
|
}
|
|
|
|
((xfBitmap*) bitmap)->pixmap = pixmap;
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
void xf_Bitmap_Free(rdpContext* context, rdpBitmap* bitmap)
|
|
{
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
if (((xfBitmap*) bitmap)->pixmap != 0)
|
|
XFreePixmap(xfc->display, ((xfBitmap*) bitmap)->pixmap);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
void xf_Bitmap_Paint(rdpContext* context, rdpBitmap* bitmap)
|
|
{
|
|
XImage* image;
|
|
int width, height;
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
width = bitmap->right - bitmap->left + 1;
|
|
height = bitmap->bottom - bitmap->top + 1;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
XSetFunction(xfc->display, xfc->gc, GXcopy);
|
|
|
|
image = XCreateImage(xfc->display, xfc->visual, xfc->depth,
|
|
ZPixmap, 0, (char*) bitmap->data, bitmap->width, bitmap->height, xfc->scanline_pad, 0);
|
|
|
|
XPutImage(xfc->display, xfc->primary, xfc->gc,
|
|
image, 0, 0, bitmap->left, bitmap->top, width, height);
|
|
|
|
XFree(image);
|
|
|
|
gdi_InvalidateRegion(xfc->hdc, bitmap->left, bitmap->top, width, height);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
void xf_Bitmap_Decompress(rdpContext* context, rdpBitmap* bitmap,
|
|
BYTE* data, int width, int height, int bpp, int length,
|
|
BOOL compressed, int codecId)
|
|
{
|
|
int status;
|
|
UINT16 size;
|
|
BYTE* pSrcData;
|
|
BYTE* pDstData;
|
|
UINT32 SrcSize;
|
|
UINT32 SrcFormat;
|
|
UINT32 bytesPerPixel;
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
bytesPerPixel = (bpp + 7) / 8;
|
|
size = width * height * 4;
|
|
|
|
bitmap->data = (BYTE*) _aligned_malloc(size, 16);
|
|
|
|
pSrcData = data;
|
|
SrcSize = (UINT32) length;
|
|
pDstData = bitmap->data;
|
|
|
|
if (compressed)
|
|
{
|
|
if (bpp < 32)
|
|
{
|
|
freerdp_client_codecs_prepare(xfc->codecs, FREERDP_CODEC_INTERLEAVED);
|
|
|
|
status = interleaved_decompress(xfc->codecs->interleaved, pSrcData, SrcSize, bpp,
|
|
&pDstData, xfc->format, -1, 0, 0, width, height, xfc->palette);
|
|
}
|
|
else
|
|
{
|
|
freerdp_client_codecs_prepare(xfc->codecs, FREERDP_CODEC_PLANAR);
|
|
|
|
status = planar_decompress(xfc->codecs->planar, pSrcData, SrcSize,
|
|
&pDstData, xfc->format, -1, 0, 0, width, height, TRUE);
|
|
}
|
|
|
|
if (status < 0)
|
|
{
|
|
WLog_ERR(TAG, "Bitmap Decompression Failed");
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
SrcFormat = gdi_get_pixel_format(bpp, TRUE);
|
|
|
|
status = freerdp_image_copy(pDstData, xfc->format, -1, 0, 0,
|
|
width, height, pSrcData, SrcFormat, -1, 0, 0, xfc->palette);
|
|
}
|
|
|
|
bitmap->compressed = FALSE;
|
|
bitmap->length = size;
|
|
bitmap->bpp = (xfc->depth >= 24) ? 32 : xfc->depth;
|
|
}
|
|
|
|
void xf_Bitmap_SetSurface(rdpContext* context, rdpBitmap* bitmap, BOOL primary)
|
|
{
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
if (primary)
|
|
xfc->drawing = xfc->primary;
|
|
else
|
|
xfc->drawing = ((xfBitmap*) bitmap)->pixmap;
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
/* Pointer Class */
|
|
|
|
void xf_Pointer_New(rdpContext* context, rdpPointer* pointer)
|
|
{
|
|
#ifdef WITH_XCURSOR
|
|
XcursorImage ci;
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
ZeroMemory(&ci, sizeof(ci));
|
|
ci.version = XCURSOR_IMAGE_VERSION;
|
|
ci.size = sizeof(ci);
|
|
ci.width = pointer->width;
|
|
ci.height = pointer->height;
|
|
ci.xhot = pointer->xPos;
|
|
ci.yhot = pointer->yPos;
|
|
|
|
ci.pixels = (XcursorPixel*) calloc(1, ci.width * ci.height * 4);
|
|
|
|
if (!ci.pixels)
|
|
return;
|
|
|
|
if ((pointer->andMaskData != 0) && (pointer->xorMaskData != 0))
|
|
{
|
|
freerdp_alpha_cursor_convert((BYTE*) (ci.pixels), pointer->xorMaskData, pointer->andMaskData,
|
|
pointer->width, pointer->height, pointer->xorBpp, xfc->clrconv);
|
|
}
|
|
|
|
((xfPointer*) pointer)->cursor = XcursorImageLoadCursor(xfc->display, &ci);
|
|
|
|
free(ci.pixels);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
#endif
|
|
}
|
|
|
|
void xf_Pointer_Free(rdpContext* context, rdpPointer* pointer)
|
|
{
|
|
#ifdef WITH_XCURSOR
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
if (((xfPointer*) pointer)->cursor)
|
|
XFreeCursor(xfc->display, ((xfPointer*) pointer)->cursor);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
#endif
|
|
}
|
|
|
|
void xf_Pointer_Set(rdpContext* context, rdpPointer* pointer)
|
|
{
|
|
#ifdef WITH_XCURSOR
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
xfc->pointer = (xfPointer*) pointer;
|
|
|
|
/* in RemoteApp mode, window can be null if none has had focus */
|
|
|
|
if (xfc->window)
|
|
XDefineCursor(xfc->display, xfc->window->handle, xfc->pointer->cursor);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
#endif
|
|
}
|
|
|
|
void xf_Pointer_SetNull(rdpContext* context)
|
|
{
|
|
#ifdef WITH_XCURSOR
|
|
xfContext* xfc = (xfContext*) context;
|
|
static Cursor nullcursor = None;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
if (nullcursor == None)
|
|
{
|
|
XcursorImage ci;
|
|
XcursorPixel xp = 0;
|
|
ZeroMemory(&ci, sizeof(ci));
|
|
ci.version = XCURSOR_IMAGE_VERSION;
|
|
ci.size = sizeof(ci);
|
|
ci.width = ci.height = 1;
|
|
ci.xhot = ci.yhot = 0;
|
|
ci.pixels = &xp;
|
|
nullcursor = XcursorImageLoadCursor(xfc->display, &ci);
|
|
}
|
|
|
|
xfc->pointer = NULL;
|
|
|
|
if ((xfc->window) && (nullcursor != None))
|
|
XDefineCursor(xfc->display, xfc->window->handle, nullcursor);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
#endif
|
|
}
|
|
|
|
void xf_Pointer_SetDefault(rdpContext* context)
|
|
{
|
|
#ifdef WITH_XCURSOR
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
xfc->pointer = NULL;
|
|
|
|
if (xfc->window)
|
|
XUndefineCursor(xfc->display, xfc->window->handle);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
#endif
|
|
}
|
|
|
|
/* Glyph Class */
|
|
|
|
void xf_Glyph_New(rdpContext* context, rdpGlyph* glyph)
|
|
{
|
|
int scanline;
|
|
XImage* image;
|
|
xfGlyph* xf_glyph;
|
|
|
|
xf_glyph = (xfGlyph*) glyph;
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
scanline = (glyph->cx + 7) / 8;
|
|
|
|
xf_glyph->pixmap = XCreatePixmap(xfc->display, xfc->drawing, glyph->cx, glyph->cy, 1);
|
|
|
|
image = XCreateImage(xfc->display, xfc->visual, 1,
|
|
ZPixmap, 0, (char*) glyph->aj, glyph->cx, glyph->cy, 8, scanline);
|
|
|
|
image->byte_order = MSBFirst;
|
|
image->bitmap_bit_order = MSBFirst;
|
|
|
|
XInitImage(image);
|
|
XPutImage(xfc->display, xf_glyph->pixmap, xfc->gc_mono, image, 0, 0, 0, 0, glyph->cx, glyph->cy);
|
|
XFree(image);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
void xf_Glyph_Free(rdpContext* context, rdpGlyph* glyph)
|
|
{
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
if (((xfGlyph*) glyph)->pixmap != 0)
|
|
XFreePixmap(xfc->display, ((xfGlyph*) glyph)->pixmap);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
void xf_Glyph_Draw(rdpContext* context, rdpGlyph* glyph, int x, int y)
|
|
{
|
|
xfGlyph* xf_glyph;
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_glyph = (xfGlyph*) glyph;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
XSetStipple(xfc->display, xfc->gc, xf_glyph->pixmap);
|
|
XSetTSOrigin(xfc->display, xfc->gc, x, y);
|
|
XFillRectangle(xfc->display, xfc->drawing, xfc->gc, x, y, glyph->cx, glyph->cy);
|
|
XSetStipple(xfc->display, xfc->gc, xfc->bitmap_mono);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
void xf_Glyph_BeginDraw(rdpContext* context, int x, int y, int width, int height, UINT32 bgcolor, UINT32 fgcolor)
|
|
{
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
bgcolor = freerdp_convert_gdi_order_color(bgcolor, context->settings->ColorDepth, xfc->format, xfc->palette);
|
|
fgcolor = freerdp_convert_gdi_order_color(fgcolor, context->settings->ColorDepth, xfc->format, xfc->palette);
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
fgcolor = xf_gdi_get_color(xfc, fgcolor);
|
|
bgcolor = xf_gdi_get_color(xfc, bgcolor);
|
|
|
|
XSetFunction(xfc->display, xfc->gc, GXcopy);
|
|
XSetFillStyle(xfc->display, xfc->gc, FillSolid);
|
|
XSetForeground(xfc->display, xfc->gc, fgcolor);
|
|
XFillRectangle(xfc->display, xfc->drawing, xfc->gc, x, y, width, height);
|
|
|
|
XSetForeground(xfc->display, xfc->gc, bgcolor);
|
|
XSetBackground(xfc->display, xfc->gc, fgcolor);
|
|
XSetFillStyle(xfc->display, xfc->gc, FillStippled);
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
void xf_Glyph_EndDraw(rdpContext* context, int x, int y, int width, int height, UINT32 bgcolor, UINT32 fgcolor)
|
|
{
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_lock_x11(xfc, FALSE);
|
|
|
|
if (xfc->drawing == xfc->primary)
|
|
{
|
|
gdi_InvalidateRegion(xfc->hdc, x, y, width, height);
|
|
}
|
|
|
|
xf_unlock_x11(xfc, FALSE);
|
|
}
|
|
|
|
/* Graphics Module */
|
|
|
|
void xf_register_graphics(rdpGraphics* graphics)
|
|
{
|
|
rdpBitmap* bitmap;
|
|
rdpPointer* pointer;
|
|
rdpGlyph* glyph;
|
|
|
|
bitmap = (rdpBitmap*) calloc(1, sizeof(rdpBitmap));
|
|
|
|
if (!bitmap)
|
|
return;
|
|
|
|
bitmap->size = sizeof(xfBitmap);
|
|
|
|
bitmap->New = xf_Bitmap_New;
|
|
bitmap->Free = xf_Bitmap_Free;
|
|
bitmap->Paint = xf_Bitmap_Paint;
|
|
bitmap->Decompress = xf_Bitmap_Decompress;
|
|
bitmap->SetSurface = xf_Bitmap_SetSurface;
|
|
|
|
graphics_register_bitmap(graphics, bitmap);
|
|
free(bitmap);
|
|
|
|
pointer = (rdpPointer*) calloc(1, sizeof(rdpPointer));
|
|
|
|
if (!pointer)
|
|
return;
|
|
|
|
pointer->size = sizeof(xfPointer);
|
|
|
|
pointer->New = xf_Pointer_New;
|
|
pointer->Free = xf_Pointer_Free;
|
|
pointer->Set = xf_Pointer_Set;
|
|
pointer->SetNull = xf_Pointer_SetNull;
|
|
pointer->SetDefault = xf_Pointer_SetDefault;
|
|
|
|
graphics_register_pointer(graphics, pointer);
|
|
free(pointer);
|
|
|
|
glyph = (rdpGlyph*) calloc(1, sizeof(rdpGlyph));
|
|
|
|
if (!glyph)
|
|
return;
|
|
|
|
glyph->size = sizeof(xfGlyph);
|
|
|
|
glyph->New = xf_Glyph_New;
|
|
glyph->Free = xf_Glyph_Free;
|
|
glyph->Draw = xf_Glyph_Draw;
|
|
glyph->BeginDraw = xf_Glyph_BeginDraw;
|
|
glyph->EndDraw = xf_Glyph_EndDraw;
|
|
|
|
graphics_register_glyph(graphics, glyph);
|
|
free(glyph);
|
|
}
|