2013-03-19 04:12:51 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Windows Client
|
|
|
|
*
|
|
|
|
* Copyright 2009-2011 Jay Sorg
|
|
|
|
* Copyright 2010-2011 Vic Lee
|
|
|
|
* Copyright 2010-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.
|
|
|
|
*/
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#ifndef FREERDP_CLIENT_WIN_INTERFACE_H
|
|
|
|
#define FREERDP_CLIENT_WIN_INTERFACE_H
|
2013-03-19 04:12:51 +04:00
|
|
|
|
|
|
|
#include <winpr/windows.h>
|
|
|
|
|
2014-10-25 02:30:04 +04:00
|
|
|
#include <winpr/collections.h>
|
|
|
|
|
2021-10-21 18:59:17 +03:00
|
|
|
#ifdef WITH_PROGRESS_BAR
|
|
|
|
#include <shobjidl.h>
|
|
|
|
#endif
|
|
|
|
|
2013-03-19 05:54:50 +04:00
|
|
|
#include <freerdp/api.h>
|
2013-03-19 04:12:51 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/gdi/gdi.h>
|
|
|
|
#include <freerdp/gdi/dc.h>
|
|
|
|
#include <freerdp/gdi/region.h>
|
|
|
|
#include <freerdp/codec/color.h>
|
2014-09-12 19:13:01 +04:00
|
|
|
|
2014-10-24 19:30:04 +04:00
|
|
|
#include <freerdp/client/rail.h>
|
2013-03-19 04:12:51 +04:00
|
|
|
#include <freerdp/channels/channels.h>
|
|
|
|
#include <freerdp/codec/rfx.h>
|
|
|
|
#include <freerdp/codec/nsc.h>
|
2013-04-23 00:08:47 +04:00
|
|
|
#include <freerdp/client/file.h>
|
2013-03-19 04:12:51 +04:00
|
|
|
|
2014-10-23 23:38:19 +04:00
|
|
|
#include "wf_channels.h"
|
2014-02-27 07:43:52 +04:00
|
|
|
#include "wf_floatbar.h"
|
2013-03-19 04:12:51 +04:00
|
|
|
#include "wf_event.h"
|
2014-10-25 02:30:04 +04:00
|
|
|
#include "wf_cliprdr.h"
|
2013-03-19 04:12:51 +04:00
|
|
|
|
2013-04-09 02:27:59 +04:00
|
|
|
#ifdef __cplusplus
|
2019-11-06 17:24:51 +03:00
|
|
|
extern "C"
|
|
|
|
{
|
2013-04-09 02:27:59 +04:00
|
|
|
#endif
|
|
|
|
|
2013-04-26 23:46:36 +04:00
|
|
|
// System menu constants
|
2013-04-30 19:15:04 +04:00
|
|
|
#define SYSCOMMAND_ID_SMARTSIZING 1000
|
2022-09-15 06:55:18 +03:00
|
|
|
#define SYSCOMMAND_ID_REQUEST_CONTROL 1001
|
2013-04-26 23:46:36 +04:00
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
typedef struct
|
2019-11-06 17:24:51 +03:00
|
|
|
{
|
|
|
|
rdpBitmap _bitmap;
|
|
|
|
HDC hdc;
|
|
|
|
HBITMAP bitmap;
|
|
|
|
HBITMAP org_bitmap;
|
|
|
|
BYTE* pdata;
|
2022-02-14 16:59:22 +03:00
|
|
|
} wfBitmap;
|
2019-11-06 17:24:51 +03:00
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
typedef struct
|
2019-11-06 17:24:51 +03:00
|
|
|
{
|
|
|
|
rdpPointer pointer;
|
|
|
|
HCURSOR cursor;
|
2022-02-14 16:59:22 +03:00
|
|
|
} wfPointer;
|
2019-11-06 17:24:51 +03:00
|
|
|
|
|
|
|
struct wf_context
|
|
|
|
{
|
2022-01-19 11:27:39 +03:00
|
|
|
rdpClientContext common;
|
2019-11-06 17:24:51 +03:00
|
|
|
|
|
|
|
int offset_x;
|
|
|
|
int offset_y;
|
|
|
|
int fullscreen_toggle;
|
|
|
|
int fullscreen;
|
|
|
|
int percentscreen;
|
|
|
|
WCHAR* window_title;
|
|
|
|
int client_x;
|
|
|
|
int client_y;
|
|
|
|
int client_width;
|
|
|
|
int client_height;
|
|
|
|
|
|
|
|
HANDLE keyboardThread;
|
|
|
|
|
|
|
|
HICON icon;
|
|
|
|
HWND hWndParent;
|
|
|
|
HINSTANCE hInstance;
|
|
|
|
WNDCLASSEX wndClass;
|
|
|
|
LPCTSTR wndClassName;
|
|
|
|
HCURSOR hDefaultCursor;
|
|
|
|
|
2022-09-15 06:55:18 +03:00
|
|
|
UINT systemMenuInsertPosition;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
HWND hwnd;
|
2021-10-21 01:29:00 +03:00
|
|
|
BOOL is_shown;
|
2021-10-21 18:59:17 +03:00
|
|
|
ITaskbarList3* taskBarList;
|
2019-11-06 17:24:51 +03:00
|
|
|
POINT diff;
|
|
|
|
|
|
|
|
wfBitmap* primary;
|
|
|
|
wfBitmap* drawing;
|
|
|
|
HCURSOR cursor;
|
|
|
|
HBRUSH brush;
|
|
|
|
HBRUSH org_brush;
|
|
|
|
RECT update_rect;
|
|
|
|
RECT scale_update_rect;
|
|
|
|
|
|
|
|
DWORD mainThreadId;
|
|
|
|
DWORD keyboardThreadId;
|
|
|
|
|
|
|
|
rdpFile* connectionRdpFile;
|
|
|
|
|
|
|
|
BOOL disablewindowtracking;
|
|
|
|
|
|
|
|
BOOL updating_scrollbars;
|
|
|
|
BOOL xScrollVisible;
|
|
|
|
int xMinScroll;
|
|
|
|
int xCurrentScroll;
|
|
|
|
int xMaxScroll;
|
|
|
|
|
|
|
|
BOOL yScrollVisible;
|
|
|
|
int yMinScroll;
|
|
|
|
int yCurrentScroll;
|
|
|
|
int yMaxScroll;
|
|
|
|
|
|
|
|
void* clipboard;
|
|
|
|
CliprdrClientContext* cliprdr;
|
2022-09-02 20:25:02 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
wfFloatBar* floatbar;
|
|
|
|
|
|
|
|
RailClientContext* rail;
|
|
|
|
wHashTable* railWindows;
|
|
|
|
BOOL isConsole;
|
2021-06-02 14:46:00 +03:00
|
|
|
|
|
|
|
DispClientContext* disp;
|
2021-06-02 14:50:23 +03:00
|
|
|
UINT64 lastSentDate;
|
|
|
|
BOOL wasMaximized;
|
2019-11-06 17:24:51 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Client Interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
FREERDP_API int RdpClientEntry(RDP_CLIENT_ENTRY_POINTS* pEntryPoints);
|
|
|
|
FREERDP_API int freerdp_client_set_window_size(wfContext* wfc, int width, int height);
|
|
|
|
FREERDP_API void wf_size_scrollbars(wfContext* wfc, UINT32 client_width, UINT32 client_height);
|
2013-04-15 23:58:56 +04:00
|
|
|
|
2013-04-09 02:27:59 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_CLIENT_WIN_INTERFACE_H */
|