/** @file * * Guest client: seamless mode * Abstract class for interacting with the guest system */ /* * 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. */ #ifndef __Additions_client_seamless_guest_h # define __Additions_client_seamless_guest_h #include /* for auto_ptr */ #include /* for vector */ #include /* for RTRECT */ #include "seamless-glue.h" /** * Observable to monitor the state of the guest windows. This abstract class definition * serves as a template (in the linguistic sense, not the C++ sense) for creating * platform-specific child classes. */ class VBoxGuestSeamlessGuest { public: /** Events which can be reported by this class */ enum meEvent { /** Empty event */ NONE, /** Seamless mode is now supported */ CAPABLE, /** Seamless mode is no longer supported */ INCAPABLE }; /** * Initialise the guest and ensure that it is capable of handling seamless mode * * @param pObserver An observer object to which to report changes in state and events * by calling its notify() method. A state change to CAPABLE also * signals new seamless data. * @returns iprt status code */ int init(VBoxGuestSeamlessObserver *pObserver); /** * Shutdown seamless event monitoring. */ void uninit(void); /** * Initialise seamless event reporting in the guest. * * @returns IPRT status code */ int start(void); /** Stop reporting seamless events. */ void stop(void); /** Get the current state of the guest (capable or incapable of seamless mode). */ // meEvent getState(void); /** Get the current list of visible rectangles. */ std::auto_ptr > getRects(void); /** Process next event in the guest event queue - called by the event thread. */ void nextEvent(void); /** Wake up the event thread if it is waiting for an event so that it can exit. */ bool interruptEvent(void); }; #if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD) # include "seamless-x11.h" /* for VBoxGuestSeamlessGuestImpl */ #else # error Port me #endif #endif /* __Additions_client_seamless_guest_h not defined */