1 | /* $Id: KeyboardImpl.h 69500 2017-10-28 15:14:05Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox COM class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2017 Oracle Corporation
|
---|
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 "KeyboardWrap.h"
|
---|
22 | #include "EventImpl.h"
|
---|
23 |
|
---|
24 | #include <VBox/vmm/pdmdrv.h>
|
---|
25 |
|
---|
26 | /** Limit of simultaneously attached devices (just USB and/or PS/2). */
|
---|
27 | enum { KEYBOARD_MAX_DEVICES = 2 };
|
---|
28 |
|
---|
29 | /** Simple keyboard event class. */
|
---|
30 | class KeyboardEvent
|
---|
31 | {
|
---|
32 | public:
|
---|
33 | KeyboardEvent() : scan(-1) {}
|
---|
34 | KeyboardEvent(int _scan) : scan(_scan) {}
|
---|
35 | bool i_isValid()
|
---|
36 | {
|
---|
37 | return (scan & ~0x80) && !(scan & ~0xFF);
|
---|
38 | }
|
---|
39 | int scan;
|
---|
40 | };
|
---|
41 | class Console;
|
---|
42 |
|
---|
43 | class ATL_NO_VTABLE Keyboard :
|
---|
44 | public KeyboardWrap
|
---|
45 | {
|
---|
46 | public:
|
---|
47 |
|
---|
48 | DECLARE_EMPTY_CTOR_DTOR(Keyboard)
|
---|
49 |
|
---|
50 | HRESULT FinalConstruct();
|
---|
51 | void FinalRelease();
|
---|
52 |
|
---|
53 | // public initializer/uninitializer for internal purposes only
|
---|
54 | HRESULT init(Console *aParent);
|
---|
55 | void uninit();
|
---|
56 |
|
---|
57 | static const PDMDRVREG DrvReg;
|
---|
58 |
|
---|
59 | Console *i_getParent() const
|
---|
60 | {
|
---|
61 | return mParent;
|
---|
62 | }
|
---|
63 |
|
---|
64 | private:
|
---|
65 |
|
---|
66 | // Wrapped Keyboard properties
|
---|
67 | HRESULT getEventSource(ComPtr<IEventSource> &aEventSource);
|
---|
68 | HRESULT getKeyboardLEDs(std::vector<KeyboardLED_T> &aKeyboardLEDs);
|
---|
69 |
|
---|
70 | // Wrapped Keyboard members
|
---|
71 | HRESULT putScancode(LONG aScancode);
|
---|
72 | HRESULT putScancodes(const std::vector<LONG> &aScancodes,
|
---|
73 | ULONG *aCodesStored);
|
---|
74 | HRESULT putCAD();
|
---|
75 | HRESULT releaseKeys();
|
---|
76 |
|
---|
77 | static DECLCALLBACK(void) i_keyboardLedStatusChange(PPDMIKEYBOARDCONNECTOR pInterface, PDMKEYBLEDS enmLeds);
|
---|
78 | static DECLCALLBACK(void) i_keyboardSetActive(PPDMIKEYBOARDCONNECTOR pInterface, bool fActive);
|
---|
79 | static DECLCALLBACK(void *) i_drvQueryInterface(PPDMIBASE pInterface, const char *pszIID);
|
---|
80 | static DECLCALLBACK(int) i_drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
|
---|
81 | static DECLCALLBACK(void) i_drvDestruct(PPDMDRVINS pDrvIns);
|
---|
82 |
|
---|
83 | void onKeyboardLedsChange(PDMKEYBLEDS enmLeds);
|
---|
84 |
|
---|
85 | Console * const mParent;
|
---|
86 | /** Pointer to the associated keyboard driver(s). */
|
---|
87 | struct DRVMAINKEYBOARD *mpDrv[KEYBOARD_MAX_DEVICES];
|
---|
88 |
|
---|
89 | /* The current guest keyboard LED status. */
|
---|
90 | PDMKEYBLEDS menmLeds;
|
---|
91 |
|
---|
92 | const ComObjPtr<EventSource> mEventSource;
|
---|
93 | };
|
---|
94 |
|
---|
95 | #endif // !____H_KEYBOARDIMPL
|
---|
96 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|