MouseImpl.h revision cba6719bd64ec749967bbe931230452664109857
/* $Id$ */
/** @file
*
* VirtualBox COM class implementation
*/
/*
* Copyright (C) 2006-2008 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 ____H_MOUSEIMPL
#define ____H_MOUSEIMPL
#include "VirtualBoxBase.h"
#include "ConsoleEvents.h"
#include "ConsoleImpl.h"
#include <VBox/pdmdrv.h>
/** Simple mouse event class. */
class MouseEvent
{
public:
MouseEvent() : dx(0), dy(0), dz(0), state(-1) {}
MouseEvent(int _dx, int _dy, int _dz, int _state) :
dx(_dx), dy(_dy), dz(_dz), state(_state) {}
bool isValid()
{
return state != -1;
}
// not logical to be int but that's how it's defined in QEMU
/** @todo r=bird: and what is the logical declaration then? We'll be using int32_t btw. */
int dx, dy, dz;
int state;
};
// template instantiation
typedef ConsoleEventBuffer<MouseEvent> MouseEventBuffer;
class ATL_NO_VTABLE Mouse :
public VirtualBoxBase,
public VirtualBoxSupportErrorInfoImpl<Mouse, IMouse>,
public VirtualBoxSupportTranslation<Mouse>,
VBOX_SCRIPTABLE_IMPL(IMouse)
{
public:
VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (Mouse)
DECLARE_NOT_AGGREGATABLE(Mouse)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(Mouse)
COM_INTERFACE_ENTRY (ISupportErrorInfo)
COM_INTERFACE_ENTRY (IMouse)
COM_INTERFACE_ENTRY2 (IDispatch, IMouse)
END_COM_MAP()
NS_DECL_ISUPPORTS
DECLARE_EMPTY_CTOR_DTOR (Mouse)
HRESULT FinalConstruct();
void FinalRelease();
// public initializer/uninitializer for internal purposes only
HRESULT init(Console *parent);
void uninit();
// IMouse properties
STDMETHOD(COMGETTER(AbsoluteSupported)) (BOOL *absoluteSupported);
STDMETHOD(COMGETTER(NeedsHostCursor)) (BOOL *needsHostCursor);
// IMouse methods
STDMETHOD(PutMouseEvent)(LONG dx, LONG dy, LONG dz,
LONG buttonState);
STDMETHOD(PutMouseEventAbsolute)(LONG x, LONG y, LONG dz,
LONG buttonState);
// for VirtualBoxSupportErrorInfoImpl
static const wchar_t *getComponentName() { return L"Mouse"; }
static const PDMDRVREG DrvReg;
private:
static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags);
static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
const ComObjPtr<Console, ComWeakRef> mParent;
/** Pointer to the associated mouse driver. */
struct DRVMAINMOUSE *mpDrv;
LONG uHostCaps;
uint32_t mLastAbsX;
uint32_t mLastAbsY;
};
#endif // ____H_MOUSEIMPL
/* vi: set tabstop=4 shiftwidth=4 expandtab: */