SharedClipboard.h revision 3226d4d605c81794a1e11ee873dfbe83e1033c05
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync/** @file
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync *
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * Shared Clipboard
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync/*
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * Copyright (C) 2006-2007 Sun Microsystems, Inc.
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync *
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * available from http://www.virtualbox.org. This file is free software;
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * you can redistribute it and/or modify it under the terms of the GNU
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * General Public License (GPL) as published by the Free Software
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync *
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * Clara, CA 95054 USA or visit http://www.sun.com if you need
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * additional information or have any questions.
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync#ifndef ___GUESTHOST_VBOXCLIPBOARD__H
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync#define ___GUESTHOST_VBOXCLIPBOARD__H
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync#include <iprt/cdefs.h>
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync#include <iprt/types.h>
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsyncenum {
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync /** The number of milliseconds before the clipboard times out. */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync CLIPBOARDTIMEOUT = 5000
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync};
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync/** Opaque data structure for the X11/VBox frontend/glue code. */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsyncstruct _VBOXCLIPBOARDCONTEXT;
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsynctypedef struct _VBOXCLIPBOARDCONTEXT VBOXCLIPBOARDCONTEXT;
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync/** Opaque data structure for the X11/VBox backend code. */
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncstruct _VBOXCLIPBOARDCONTEXTX11;
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsynctypedef struct _VBOXCLIPBOARDCONTEXTX11 VBOXCLIPBOARDCONTEXTX11;
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync/** Does X11 or VBox currently own the clipboard? */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsyncenum g_eOwner { NONE = 0, X11, VB };
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync/** A structure containing information about where to store a request
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * for the X11 clipboard contents. */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsyncstruct _VBOXCLIPBOARDREQUEST
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync{
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync /** The buffer to write X11 clipboard data to (valid during a request
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * for the clipboard contents) */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync void *pv;
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync /** The size of the buffer to write X11 clipboard data to (valid during
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * a request for the clipboard contents) */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync unsigned cb;
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync /** The size of the X11 clipboard data written to the buffer (valid
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync * during a request for the clipboard contents) */
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync uint32_t *pcbActual;
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync};
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsynctypedef struct _VBOXCLIPBOARDREQUEST VBOXCLIPBOARDREQUEST;
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync/* APIs exported by the X11 backend */
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern void VBoxX11ClipboardAnnounceVBoxFormat(uint32_t u32Formats);
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern int VBoxX11ClipboardInitX11(VBOXCLIPBOARDCONTEXT *pFrontend,
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync VBOXCLIPBOARDCONTEXTX11 **ppBackend);
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern int VBoxX11ClipboardTermX11(VBOXCLIPBOARDCONTEXTX11 *pBackend);
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern int VBoxX11ClipboardStartX11(VBOXCLIPBOARDCONTEXTX11 *pBackend,
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync enum g_eOwner owner);
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern void VBoxX11ClipboardRequestSyncX11(VBOXCLIPBOARDCONTEXTX11 *pBackend);
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern void VBoxX11ClipboardStopX11(VBOXCLIPBOARDCONTEXTX11 *pBackend);
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern void VBoxX11ClipboardAnnounceVBoxFormat(VBOXCLIPBOARDCONTEXTX11
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync *pBackend, uint32_t u32Formats);
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern int VBoxX11ClipboardReadX11Data(VBOXCLIPBOARDCONTEXTX11 *pBackend,
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync uint32_t u32Format,
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync VBOXCLIPBOARDREQUEST *pRequest);
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync/* APIs exported by the X11/VBox frontend */
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsyncextern int VBoxX11ClipboardReadVBoxData(VBOXCLIPBOARDCONTEXT *pCtx,
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync uint32_t u32Format, void **ppv,
3226d4d605c81794a1e11ee873dfbe83e1033c05vboxsync uint32_t *pcb);
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsyncextern void VBoxX11ClipboardReportX11Formats(VBOXCLIPBOARDCONTEXT *pCtx,
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync uint32_t u32Formats);
b26977a29bd8af11e3059ef8fb47a92a1241f20dvboxsync#endif /* ___GUESTHOST_VBOXCLIPBOARD__H */