1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Basic Frontend (BFE):
|
---|
4 | * Declaration of VMMDev: driver interface to VMM device
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef ____H_VMMDEV
|
---|
20 | #define ____H_VMMDEV
|
---|
21 |
|
---|
22 | #include <VBox/pdm.h>
|
---|
23 |
|
---|
24 | class VMMDev
|
---|
25 | {
|
---|
26 | public:
|
---|
27 | VMMDev();
|
---|
28 | ~VMMDev();
|
---|
29 | static const PDMDRVREG DrvReg;
|
---|
30 |
|
---|
31 | /** Pointer to the associated VMMDev driver. */
|
---|
32 | struct DRVMAINVMMDEV *mpDrv;
|
---|
33 |
|
---|
34 | bool fSharedFolderActive;
|
---|
35 | bool isShFlActive()
|
---|
36 | {
|
---|
37 | return fSharedFolderActive;
|
---|
38 | }
|
---|
39 |
|
---|
40 | PPDMIVMMDEVPORT getVMMDevPort();
|
---|
41 |
|
---|
42 | void QueryMouseCapabilities(uint32_t *pMouseCaps);
|
---|
43 | int SetMouseCapabilities(uint32_t mouseCaps);
|
---|
44 | int SetAbsoluteMouse(uint32_t mouseXAbs, uint32_t mouseYAbs);
|
---|
45 |
|
---|
46 | int hgcmLoadService (const char *pszServiceLibrary, const char *pszServiceName);
|
---|
47 | int hgcmHostCall (const char *pszServiceName, uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms);
|
---|
48 |
|
---|
49 | private:
|
---|
50 | static DECLCALLBACK(void) UpdateGuestVersion(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestInfo *guestInfo);
|
---|
51 | static DECLCALLBACK(void) UpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
|
---|
52 | static DECLCALLBACK(void) UpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
|
---|
53 | static DECLCALLBACK(void) UpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
|
---|
54 | uint32_t xHot, uint32_t yHot,
|
---|
55 | uint32_t width, uint32_t height,
|
---|
56 | void *pShape);
|
---|
57 | static DECLCALLBACK(int) VideoModeSupported(PPDMIVMMDEVCONNECTOR pInterface, uint32_t width, uint32_t height,
|
---|
58 | uint32_t bpp, bool *fSupported);
|
---|
59 | static DECLCALLBACK(int) GetHeightReduction(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *heightReduction);
|
---|
60 |
|
---|
61 | static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
|
---|
62 | static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
|
---|
63 | static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
|
---|
64 | };
|
---|
65 |
|
---|
66 | extern VMMDev *gVMMDev;
|
---|
67 |
|
---|
68 | #endif // ____H_VMMDEV
|
---|