Refactored, removed functionality. Fixed most errors on compile. Will likely not...
[libguac-client-rdp.git] / include / rdp_handlers.h
1
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is libguac-client-rdp.
16  *
17  * The Initial Developer of the Original Code is
18  * Michael Jumper.
19  * Portions created by the Initial Developer are Copyright (C) 2011
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 #ifndef _GUAC_RDP_RDP_HANDLERS_H
39 #define _GUAC_RDP_RDP_HANDLERS_H
40
41 #include <freerdp/freerdp.h>
42 #include <freerdp/codec/bitmap.h>
43
44 int guac_rdp_ui_select(freerdp* inst, int rdp_socket);
45
46 void guac_rdp_ui_resize_window(freerdp* inst);
47
48 void guac_rdp_ui_move_pointer(freerdp* inst, int x, int y);
49
50 void guac_rdp_ui_set_clip(freerdp* inst, int x, int y, int cx, int cy);
51 void guac_rdp_ui_reset_clip(freerdp* inst);
52
53 void guac_rdp_ui_rect(freerdp* inst, int x, int y, int cx, int cy, uint32 colour);
54
55 rdpBitmap* guac_rdp_ui_create_bitmap(freerdp* inst, int width, int height, uint8* data);
56 void guac_rdp_ui_paint_bitmap(freerdp* inst, int x, int y, int cx, int cy, int width, int height, uint8* data);
57 void guac_rdp_ui_destroy_bitmap(freerdp* inst, rdpBitmap* bmp);
58
59 void guac_rdp_ui_destblt(freerdp* inst, uint8 opcode, int x, int y, int cx, int cy);
60 void guac_rdp_ui_patblt(freerdp* inst, uint8 opcode, int x, int y, int cx, int cy, rdpBrush* brush, uint32 bgcolor, uint32 fgcolor);
61 void guac_rdp_ui_screenblt(freerdp* inst, uint8 opcode, int x, int y, int cx, int cy, int srcx, int srcy);
62 void guac_rdp_ui_memblt(freerdp* inst, uint8 opcode, int x, int y, int width, int height, rdpBitmap* src, int srcx, int srcy);
63 void guac_rdp_ui_triblt(freerdp* inst, uint8 opcode, int x, int y, int cx, int cy, rdpBitmap* src, int srcx, int srcy, rdpBrush* brush, uint32 bgcolor,  uint32 fgcolor);
64
65 void guac_rdp_ui_start_draw_glyphs(freerdp* inst, uint32 bgcolor, uint32 fgcolor);
66 void guac_rdp_ui_draw_glyph(freerdp* inst, int x, int y, int cx, int cy, rdpGlyph* glyph);
67 void guac_rdp_ui_end_draw_glyphs(freerdp* inst, int x, int y, int cx, int cy);
68 rdpGlyph* guac_rdp_ui_create_glyph(freerdp* inst, int width, int height, uint8* data);
69 void guac_rdp_ui_destroy_glyph(freerdp* inst, rdpGlyph* glyph);
70
71 void guac_rdp_ui_set_pointer(freerdp* inst, rdpPointer pointer);
72 void guac_rdp_ui_destroy_pointer(freerdp* inst, rdpPointer pointer);
73 rdpPointer guac_rdp_ui_create_pointer(freerdp* inst, unsigned int x, unsigned int y, int width, int height, uint8* andmask, uint8* xormask, int bpp);
74 void guac_rdp_ui_set_null_pointer(freerdp* inst);
75 void guac_rdp_ui_set_default_pointer(freerdp* inst);
76
77 rdpBitmap* guac_rdp_ui_create_surface(freerdp* inst, int width, int height, rdpBitmap* old);
78 void guac_rdp_ui_set_surface(freerdp* inst, rdpBitmap* surface);
79 void guac_rdp_ui_destroy_surface(freerdp* inst, rdpBitmap* surface);
80
81 #endif
82