mirror of https://github.com/FreeRDP/FreeRDP
123 lines
4.3 KiB
C
123 lines
4.3 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* X11 Windows
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __XF_WINDOW_H
|
|
#define __XF_WINDOW_H
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
typedef struct xf_localmove xfLocalMove;
|
|
typedef struct xf_window xfWindow;
|
|
|
|
#include "xf_client.h"
|
|
#include "xfreerdp.h"
|
|
|
|
// Extended ICCM flags http://standards.freedesktop.org/wm-spec/wm-spec-latest.html
|
|
#define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
|
|
#define _NET_WM_MOVERESIZE_SIZE_TOP 1
|
|
#define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT 2
|
|
#define _NET_WM_MOVERESIZE_SIZE_RIGHT 3
|
|
#define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT 4
|
|
#define _NET_WM_MOVERESIZE_SIZE_BOTTOM 5
|
|
#define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT 6
|
|
#define _NET_WM_MOVERESIZE_SIZE_LEFT 7
|
|
#define _NET_WM_MOVERESIZE_MOVE 8 /* movement only */
|
|
#define _NET_WM_MOVERESIZE_SIZE_KEYBOARD 9 /* size via keyboard */
|
|
#define _NET_WM_MOVERESIZE_MOVE_KEYBOARD 10 /* move via keyboard */
|
|
#define _NET_WM_MOVERESIZE_CANCEL 11 /* cancel operation */
|
|
|
|
enum xf_localmove_state
|
|
{
|
|
LMS_NOT_ACTIVE,
|
|
LMS_STARTING,
|
|
LMS_ACTIVE,
|
|
LMS_TERMINATING
|
|
};
|
|
|
|
struct xf_localmove
|
|
{
|
|
int root_x; // relative to root
|
|
int root_y;
|
|
int window_x; // relative to window
|
|
int window_y;
|
|
enum xf_localmove_state state;
|
|
int direction;
|
|
};
|
|
|
|
struct xf_window
|
|
{
|
|
GC gc;
|
|
int left;
|
|
int top;
|
|
int right;
|
|
int bottom;
|
|
int width;
|
|
int height;
|
|
int shmid;
|
|
Window handle;
|
|
Window *xfwin;
|
|
BOOL fullscreen;
|
|
BOOL decorations;
|
|
rdpWindow *window;
|
|
BOOL is_mapped;
|
|
BOOL is_transient;
|
|
xfLocalMove local_move;
|
|
BYTE rail_state;
|
|
BOOL rail_ignore_configure;
|
|
};
|
|
|
|
void xf_ewmhints_init(xfContext *xfc);
|
|
|
|
BOOL xf_GetCurrentDesktop(xfContext *xfc);
|
|
BOOL xf_GetWorkArea(xfContext *xfc);
|
|
|
|
void xf_SetWindowFullscreen(xfContext *xfc, xfWindow *window, BOOL fullscreen);
|
|
void xf_SetWindowDecorations(xfContext *xfc, xfWindow *window, BOOL show);
|
|
void xf_SetWindowUnlisted(xfContext *xfc, xfWindow *window);
|
|
|
|
xfWindow *xf_CreateDesktopWindow(xfContext *xfc, char *name, int width, int height, BOOL decorations);
|
|
void xf_ResizeDesktopWindow(xfContext *xfc, xfWindow *window, int width, int height);
|
|
|
|
xfWindow *xf_CreateWindow(xfContext *xfc, rdpWindow *wnd, int x, int y, int width, int height, UINT32 id);
|
|
void xf_SetWindowText(xfContext *xfc, xfWindow *window, char *name);
|
|
void xf_MoveWindow(xfContext *xfc, xfWindow *window, int x, int y, int width, int height);
|
|
void xf_ShowWindow(xfContext *xfc, xfWindow *window, BYTE state);
|
|
void xf_SetWindowIcon(xfContext *xfc, xfWindow *window, rdpIcon *icon);
|
|
void xf_SetWindowRects(xfContext *xfc, xfWindow *window, RECTANGLE_16 *rects, int nrects);
|
|
void xf_SetWindowVisibilityRects(xfContext *xfc, xfWindow *window, RECTANGLE_16 *rects, int nrects);
|
|
void xf_SetWindowStyle(xfContext *xfc, xfWindow *window, UINT32 style, UINT32 ex_style);
|
|
void xf_UpdateWindowArea(xfContext *xfc, xfWindow *window, int x, int y, int width, int height);
|
|
BOOL xf_IsWindowBorder(xfContext *xfc, xfWindow *xfw, int x, int y);
|
|
void xf_DestroyWindow(xfContext *xfc, xfWindow *window);
|
|
rdpWindow *xf_rdpWindowFromWindow(xfContext *xfc, Window wnd);
|
|
|
|
BOOL xf_GetWindowProperty(xfContext *xfc, Window window, Atom property, int length,
|
|
unsigned long *nitems, unsigned long *bytes, BYTE **prop);
|
|
|
|
void xf_SetWindowMinMaxInfo(xfContext *xfc, xfWindow *window, int maxWidth, int maxHeight,
|
|
int maxPosX, int maxPosY, int minTrackWidth, int minTrackHeight, int maxTrackWidth, int maxTrackHeight);
|
|
|
|
void xf_StartLocalMoveSize(xfContext *xfc, xfWindow *window, int direction, int x, int y);
|
|
void xf_EndLocalMoveSize(xfContext *xfc, xfWindow *window);
|
|
void xf_SendClientEvent(xfContext *xfc, xfWindow *window, Atom atom, unsigned int numArgs, ...);
|
|
|
|
#endif /* __XF_WINDOW_H */
|