2013-12-29 04:53:12 +00:00
|
|
|
/*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you 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
|
2012-01-03 01:59:52 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-01-03 01:59:52 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* 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.
|
2013-12-29 04:53:12 +00:00
|
|
|
*/
|
|
|
|
|
2012-01-03 01:59:52 +00:00
|
|
|
|
|
|
|
#ifndef _GUAC_RDP_RDP_BITMAP_H
|
|
|
|
#define _GUAC_RDP_RDP_BITMAP_H
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
2016-03-01 05:50:00 +00:00
|
|
|
#include "guac_display.h"
|
2014-01-01 22:44:28 +00:00
|
|
|
|
2012-01-03 01:59:52 +00:00
|
|
|
#include <freerdp/freerdp.h>
|
2014-06-11 01:45:14 +00:00
|
|
|
#include <guacamole/layer.h>
|
2012-01-03 01:59:52 +00:00
|
|
|
|
2013-07-17 18:54:24 +00:00
|
|
|
#ifdef ENABLE_WINPR
|
|
|
|
#include <winpr/wtypes.h>
|
|
|
|
#else
|
|
|
|
#include "compat/winpr-wtypes.h"
|
|
|
|
#endif
|
|
|
|
|
2016-03-01 05:50:00 +00:00
|
|
|
/**
|
|
|
|
* Guacamole-specific rdpBitmap data.
|
|
|
|
*/
|
2012-01-03 02:25:04 +00:00
|
|
|
typedef struct guac_rdp_bitmap {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FreeRDP bitmap data - MUST GO FIRST.
|
|
|
|
*/
|
|
|
|
rdpBitmap bitmap;
|
|
|
|
|
|
|
|
/**
|
2016-03-01 05:50:00 +00:00
|
|
|
* Layer containing cached image data.
|
2014-04-30 18:44:06 +00:00
|
|
|
*/
|
2016-03-01 05:50:00 +00:00
|
|
|
guac_common_display_layer* layer;
|
2012-01-03 02:25:04 +00:00
|
|
|
|
2012-04-10 20:21:13 +00:00
|
|
|
/**
|
|
|
|
* The number of times a bitmap has been used.
|
|
|
|
*/
|
|
|
|
int used;
|
|
|
|
|
2012-01-03 02:25:04 +00:00
|
|
|
} guac_rdp_bitmap;
|
|
|
|
|
2016-03-01 05:50:00 +00:00
|
|
|
/**
|
|
|
|
* Caches the given bitmap immediately, storing its data in a remote Guacamole
|
|
|
|
* buffer. As RDP bitmaps are frequently created, used once, and immediately
|
|
|
|
* destroyed, we defer actual remote-side caching of RDP bitmaps until they are
|
|
|
|
* used at least once.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param context
|
|
|
|
* The rdpContext associated with the current RDP session.
|
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* The bitmap to cache.
|
2016-03-01 05:50:00 +00:00
|
|
|
*/
|
2012-04-10 21:23:37 +00:00
|
|
|
void guac_rdp_cache_bitmap(rdpContext* context, rdpBitmap* bitmap);
|
2016-03-01 05:50:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the given newly-created rdpBitmap.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param context
|
|
|
|
* The rdpContext associated with the current RDP session.
|
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* The bitmap to initialize.
|
2016-03-01 05:50:00 +00:00
|
|
|
*/
|
2012-01-03 01:59:52 +00:00
|
|
|
void guac_rdp_bitmap_new(rdpContext* context, rdpBitmap* bitmap);
|
2016-03-01 05:50:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Paints the given rdpBitmap on the primary display surface. Note that this
|
|
|
|
* operation does NOT draw to the "current" surface set by calls to
|
|
|
|
* guac_rdp_bitmap_setsurface().
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param context
|
|
|
|
* The rdpContext associated with the current RDP session.
|
2016-03-01 05:50:00 +00:00
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* The bitmap to paint. This structure will also contain the specifics of
|
|
|
|
* the paint operation to perform, including the destination X/Y
|
|
|
|
* coordinates.
|
|
|
|
*/
|
2012-01-03 21:04:50 +00:00
|
|
|
void guac_rdp_bitmap_paint(rdpContext* context, rdpBitmap* bitmap);
|
2016-03-01 05:50:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees any Guacamole-specific data associated with the given rdpBitmap.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param context
|
|
|
|
* The rdpContext associated with the current RDP session.
|
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* The bitmap whose Guacamole-specific data is to be freed.
|
2016-03-01 05:50:00 +00:00
|
|
|
*/
|
2012-01-03 21:04:50 +00:00
|
|
|
void guac_rdp_bitmap_free(rdpContext* context, rdpBitmap* bitmap);
|
2016-03-01 05:50:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the given rdpBitmap as the drawing surface for future operations or,
|
|
|
|
* if the primary flag is set, resets the current drawing surface to the
|
|
|
|
* primary drawing surface of the remote display.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param context
|
|
|
|
* The rdpContext associated with the current RDP session.
|
2016-03-01 05:50:00 +00:00
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* The rdpBitmap to set as the current drawing surface. This parameter is
|
|
|
|
* only valid if the primary flag is FALSE.
|
|
|
|
*
|
|
|
|
* @param primary
|
|
|
|
* TRUE if the bitmap parameter should be ignored, and the current drawing
|
|
|
|
* surface should be reset to the primary drawing surface of the remote
|
|
|
|
* display, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
void guac_rdp_bitmap_setsurface(rdpContext* context, rdpBitmap* bitmap,
|
|
|
|
BOOL primary);
|
2012-01-03 01:59:52 +00:00
|
|
|
|
2013-07-18 18:35:40 +00:00
|
|
|
#ifdef LEGACY_RDPBITMAP
|
2016-03-01 05:50:00 +00:00
|
|
|
/**
|
|
|
|
* Decompresses or copies the given image data, storing the result within the
|
|
|
|
* given bitmap, depending on the compressed flag. Note that even if the
|
|
|
|
* received data is not compressed, it is the duty of this function to also
|
|
|
|
* flip received data, if the row order is backwards.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param context
|
|
|
|
* The rdpContext associated with the current RDP session.
|
2016-03-01 05:50:00 +00:00
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* The bitmap in which the decompressed/copied data should be stored.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param data
|
|
|
|
* Possibly-compressed image data.
|
|
|
|
*
|
|
|
|
* @param width
|
|
|
|
* The width of the image data, in pixels.
|
|
|
|
*
|
|
|
|
* @param height
|
|
|
|
* The height of the image data, in pixels.
|
|
|
|
*
|
|
|
|
* @param bpp
|
|
|
|
* The number of bits per pixel in the image data.
|
|
|
|
*
|
|
|
|
* @param length
|
|
|
|
* The length of the image data, in bytes.
|
|
|
|
*
|
|
|
|
* @param compressed
|
|
|
|
* TRUE if the image data is compressed, FALSE otherwise.
|
2016-03-01 05:50:00 +00:00
|
|
|
*/
|
|
|
|
void guac_rdp_bitmap_decompress(rdpContext* context, rdpBitmap* bitmap,
|
|
|
|
UINT8* data, int width, int height, int bpp, int length,
|
|
|
|
BOOL compressed);
|
2013-07-18 18:35:40 +00:00
|
|
|
#else
|
2016-03-01 05:50:00 +00:00
|
|
|
/**
|
|
|
|
* Decompresses or copies the given image data, storing the result within the
|
|
|
|
* given bitmap, depending on the compressed flag. Note that even if the
|
|
|
|
* received data is not compressed, it is the duty of this function to also
|
|
|
|
* flip received data, if the row order is backwards.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param context
|
|
|
|
* The rdpContext associated with the current RDP session.
|
2016-03-01 05:50:00 +00:00
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* The bitmap in which the decompressed/copied data should be stored.
|
|
|
|
*
|
2016-03-07 23:05:31 +00:00
|
|
|
* @param data
|
|
|
|
* Possibly-compressed image data.
|
|
|
|
*
|
|
|
|
* @param width
|
|
|
|
* The width of the image data, in pixels.
|
|
|
|
*
|
|
|
|
* @param height
|
|
|
|
* The height of the image data, in pixels.
|
|
|
|
*
|
|
|
|
* @param bpp
|
|
|
|
* The number of bits per pixel in the image data.
|
|
|
|
*
|
|
|
|
* @param length
|
|
|
|
* The length of the image data, in bytes.
|
|
|
|
*
|
|
|
|
* @param compressed
|
|
|
|
* TRUE if the image data is compressed, FALSE otherwise.
|
2016-03-01 05:50:00 +00:00
|
|
|
*
|
|
|
|
* @param codec_id
|
|
|
|
* The ID of the codec used to compress the image data. This parameter is
|
|
|
|
* currently ignored.
|
|
|
|
*/
|
|
|
|
void guac_rdp_bitmap_decompress(rdpContext* context, rdpBitmap* bitmap,
|
|
|
|
UINT8* data, int width, int height, int bpp, int length,
|
|
|
|
BOOL compressed, int codec_id);
|
2013-07-18 18:35:40 +00:00
|
|
|
#endif
|
|
|
|
|
2012-01-03 01:59:52 +00:00
|
|
|
#endif
|