seamless.cpp revision a54b8f61d5d9f7e6f13cc710f4d1906ee7778322
/** @file
*
* Guest client: seamless mode.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#include <unistd.h>
#include <X11/Xlib.h>
#include "VBoxClient.h"
#include "seamless.h"
class SeamlessService : public VBoxClient::Service
{
private:
VBoxGuestSeamless mSeamless;
public:
virtual const char *getPidFilePath()
{
return ".vboxclient-seamless.pid";
}
virtual int run()
{
/* Initialise threading in X11 and in Xt. */
if (!XInitThreads())
{
LogRel(("VBoxClient: error initialising threads in X11, exiting.\n"));
return VERR_NOT_SUPPORTED;
}
mSeamless.init();
pause();
return VERR_INTERRUPTED;
}
virtual void cleanup()
{
VbglR3SeamlessSetCap(false);
}
};
VBoxClient::Service *VBoxClient::GetSeamlessService()
{
return new SeamlessService;
}