2011-08-16 07:37:43 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-16 07:37:43 +04:00
|
|
|
* Remote Applications Integrated Locally (RAIL)
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-12-14 09:25:48 +04:00
|
|
|
#ifndef FREERDP_RAIL_H
|
|
|
|
#define FREERDP_RAIL_H
|
2011-08-16 07:37:43 +04:00
|
|
|
|
2011-08-17 07:54:42 +04:00
|
|
|
#include <freerdp/api.h>
|
2011-08-16 07:37:43 +04:00
|
|
|
#include <freerdp/rail.h>
|
|
|
|
#include <freerdp/types.h>
|
|
|
|
#include <freerdp/update.h>
|
2011-10-16 08:50:10 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
2011-10-03 04:28:20 +04:00
|
|
|
#include <freerdp/codec/color.h>
|
2011-08-16 07:37:43 +04:00
|
|
|
|
2013-03-22 00:45:25 +04:00
|
|
|
#include <winpr/stream.h>
|
|
|
|
|
2011-08-22 01:32:18 +04:00
|
|
|
#include <freerdp/rail/icon.h>
|
2011-08-16 07:37:43 +04:00
|
|
|
#include <freerdp/rail/window.h>
|
|
|
|
#include <freerdp/rail/window_list.h>
|
|
|
|
|
2011-08-17 10:14:02 +04:00
|
|
|
typedef void (*railCreateWindow)(rdpRail* rail, rdpWindow* window);
|
2011-08-18 06:31:27 +04:00
|
|
|
typedef void (*railDestroyWindow)(rdpRail* rail, rdpWindow* window);
|
2011-08-18 06:50:49 +04:00
|
|
|
typedef void (*railMoveWindow)(rdpRail* rail, rdpWindow* window);
|
2012-10-09 11:01:37 +04:00
|
|
|
typedef void (*railShowWindow)(rdpRail* rail, rdpWindow* window, BYTE state);
|
2011-08-20 06:21:09 +04:00
|
|
|
typedef void (*railSetWindowText)(rdpRail* rail, rdpWindow* window);
|
2011-08-22 01:32:18 +04:00
|
|
|
typedef void (*railSetWindowIcon)(rdpRail* rail, rdpWindow* window, rdpIcon* icon);
|
2011-08-25 22:11:45 +04:00
|
|
|
typedef void (*railSetWindowRects)(rdpRail* rail, rdpWindow* window);
|
2011-08-30 22:21:16 +04:00
|
|
|
typedef void (*railSetWindowVisibilityRects)(rdpRail* rail, rdpWindow* window);
|
2012-08-04 02:35:17 +04:00
|
|
|
typedef void (*railDesktopNonMonitored) (rdpRail* rail, rdpWindow* window);
|
2011-08-17 10:14:02 +04:00
|
|
|
|
2011-08-16 07:37:43 +04:00
|
|
|
struct rdp_rail
|
|
|
|
{
|
2011-08-17 10:14:02 +04:00
|
|
|
void* extra;
|
2011-08-22 06:30:49 +04:00
|
|
|
CLRCONV* clrconv;
|
2011-08-22 01:32:18 +04:00
|
|
|
rdpIconCache* cache;
|
2011-08-16 07:37:43 +04:00
|
|
|
rdpWindowList* list;
|
2011-08-22 01:32:18 +04:00
|
|
|
rdpSettings* settings;
|
2011-08-31 12:35:50 +04:00
|
|
|
railCreateWindow rail_CreateWindow;
|
|
|
|
railDestroyWindow rail_DestroyWindow;
|
|
|
|
railMoveWindow rail_MoveWindow;
|
|
|
|
railShowWindow rail_ShowWindow;
|
|
|
|
railSetWindowText rail_SetWindowText;
|
|
|
|
railSetWindowIcon rail_SetWindowIcon;
|
|
|
|
railSetWindowRects rail_SetWindowRects;
|
|
|
|
railSetWindowVisibilityRects rail_SetWindowVisibilityRects;
|
2012-08-04 02:35:17 +04:00
|
|
|
railDesktopNonMonitored rail_DesktopNonMonitored;
|
2011-08-16 07:37:43 +04:00
|
|
|
};
|
|
|
|
|
2011-08-17 07:54:42 +04:00
|
|
|
FREERDP_API void rail_register_update_callbacks(rdpRail* rail, rdpUpdate* update);
|
2011-08-16 08:22:00 +04:00
|
|
|
|
2011-08-22 01:32:18 +04:00
|
|
|
FREERDP_API rdpRail* rail_new(rdpSettings* settings);
|
2011-08-17 07:54:42 +04:00
|
|
|
FREERDP_API void rail_free(rdpRail* rail);
|
2011-08-16 07:37:43 +04:00
|
|
|
|
2012-12-14 09:25:48 +04:00
|
|
|
#endif /* FREERDP_RAIL_H */
|