2016-02-27 07:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Glyptodon, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUACENC_LAYER_H
|
|
|
|
#define GUACENC_LAYER_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The value assigned to the parent_index property of a guacenc_layer if it has
|
|
|
|
* no parent.
|
|
|
|
*/
|
|
|
|
#define GUACENC_LAYER_NO_PARENT -1
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A visible Guacamole layer.
|
|
|
|
*/
|
|
|
|
typedef struct guacenc_layer {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The actual image contents of this layer, as well as this layer's size
|
|
|
|
* (width and height).
|
|
|
|
*/
|
2016-02-27 08:17:05 +00:00
|
|
|
guacenc_buffer* buffer;
|
2016-02-27 07:26:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The index of the layer that contains this layer. If this layer is the
|
|
|
|
* default layer (and thus has no parent), this will be
|
|
|
|
* GUACENC_LAYER_NO_PARENT.
|
|
|
|
*/
|
|
|
|
int parent_index;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The X coordinate of the upper-left corner of this layer within the
|
|
|
|
* Guacamole display.
|
|
|
|
*/
|
|
|
|
int x;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Y coordinate of the upper-left corner of this layer within the
|
|
|
|
* Guacamole display.
|
|
|
|
*/
|
|
|
|
int y;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The relative stacking order of this layer with respect to other sibling
|
|
|
|
* layers.
|
|
|
|
*/
|
|
|
|
int z;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The opacity of this layer, where 0 is completely transparent and 255 is
|
|
|
|
* completely opaque.
|
|
|
|
*/
|
|
|
|
int opacity;
|
|
|
|
|
2016-02-28 22:55:29 +00:00
|
|
|
/**
|
|
|
|
* The internal buffer used by to record the state of this layer in the
|
|
|
|
* previous frame and to render additional frames.
|
|
|
|
*/
|
|
|
|
guacenc_buffer* frame;
|
|
|
|
|
2016-02-27 07:26:00 +00:00
|
|
|
} guacenc_layer;
|
|
|
|
|
2016-02-27 08:17:05 +00:00
|
|
|
/**
|
|
|
|
* Allocates and initializes a new layer object. This allocation is independent
|
|
|
|
* of the Guacamole video encoder display; the allocated guacenc_layer will not
|
|
|
|
* automatically be associated with the active display.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* A newly-allocated and initialized guacenc_layer, or NULL if allocation
|
|
|
|
* fails.
|
|
|
|
*/
|
|
|
|
guacenc_layer* guacenc_layer_alloc();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees all memory associated with the given layer object. If the layer
|
|
|
|
* provided is NULL, this function has no effect.
|
|
|
|
*
|
|
|
|
* @param layer
|
|
|
|
* The layer to free, which may be NULL.
|
|
|
|
*/
|
|
|
|
void guacenc_layer_free(guacenc_layer* layer);
|
|
|
|
|
2016-02-27 07:26:00 +00:00
|
|
|
#endif
|
|
|
|
|