1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox COM class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ____H_KEYBOARDIMPL
|
---|
19 | #define ____H_KEYBOARDIMPL
|
---|
20 |
|
---|
21 | #include "VirtualBoxBase.h"
|
---|
22 | #include "ConsoleEvents.h"
|
---|
23 | #include <VBox/pdmdrv.h>
|
---|
24 |
|
---|
25 | /** Simple keyboard event class. */
|
---|
26 | class KeyboardEvent
|
---|
27 | {
|
---|
28 | public:
|
---|
29 | KeyboardEvent() : scan(-1) {}
|
---|
30 | KeyboardEvent(int _scan) : scan(_scan) {}
|
---|
31 | bool isValid()
|
---|
32 | {
|
---|
33 | return (scan & ~0x80) && !(scan & ~0xFF);
|
---|
34 | }
|
---|
35 | int scan;
|
---|
36 | };
|
---|
37 | // template instantiation
|
---|
38 | typedef ConsoleEventBuffer<KeyboardEvent> KeyboardEventBuffer;
|
---|
39 |
|
---|
40 | class Console;
|
---|
41 |
|
---|
42 | class ATL_NO_VTABLE Keyboard :
|
---|
43 | public VirtualBoxSupportErrorInfoImpl <Keyboard, IKeyboard>,
|
---|
44 | public VirtualBoxSupportTranslation <Keyboard>,
|
---|
45 | public VirtualBoxBase,
|
---|
46 | public IKeyboard
|
---|
47 | {
|
---|
48 |
|
---|
49 | public:
|
---|
50 |
|
---|
51 | DECLARE_NOT_AGGREGATABLE(Keyboard)
|
---|
52 |
|
---|
53 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
54 |
|
---|
55 | BEGIN_COM_MAP(Keyboard)
|
---|
56 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
57 | COM_INTERFACE_ENTRY(IKeyboard)
|
---|
58 | END_COM_MAP()
|
---|
59 |
|
---|
60 | NS_DECL_ISUPPORTS
|
---|
61 |
|
---|
62 | HRESULT FinalConstruct();
|
---|
63 | void FinalRelease();
|
---|
64 |
|
---|
65 | // public methods only for internal purposes
|
---|
66 | HRESULT init (Console *parent);
|
---|
67 | void uninit();
|
---|
68 |
|
---|
69 | STDMETHOD(PutScancode)(LONG scancode);
|
---|
70 | STDMETHOD(PutScancodes)(LONG *scancodes,
|
---|
71 | ULONG count,
|
---|
72 | ULONG *codesStored);
|
---|
73 | STDMETHOD(PutCAD)();
|
---|
74 |
|
---|
75 | // for VirtualBoxSupportErrorInfoImpl
|
---|
76 | static const wchar_t *getComponentName() { return L"Keyboard"; }
|
---|
77 |
|
---|
78 | static const PDMDRVREG DrvReg;
|
---|
79 |
|
---|
80 | Console *getParent()
|
---|
81 | {
|
---|
82 | return mParent;
|
---|
83 | }
|
---|
84 |
|
---|
85 | private:
|
---|
86 |
|
---|
87 | static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
|
---|
88 | static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
|
---|
89 | static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
|
---|
90 |
|
---|
91 | ComObjPtr <Console, ComWeakRef> mParent;
|
---|
92 | /** Pointer to the associated keyboard driver. */
|
---|
93 | struct DRVMAINKEYBOARD *mpDrv;
|
---|
94 | /** Pointer to the device instance for the VMM Device. */
|
---|
95 | PPDMDEVINS mpVMMDev;
|
---|
96 | /** Set after the first attempt to find the VMM Device. */
|
---|
97 | bool mfVMMDevInited;
|
---|
98 | };
|
---|
99 |
|
---|
100 | #endif // ____H_KEYBOARDIMPL
|
---|