VirtualBox

source: vbox/trunk/src/VBox/Main/include/KeyboardImpl.h@ 13538

Last change on this file since 13538 was 11661, checked in by vboxsync, 16 years ago

Modified IKeyboard::PutScancodes to use SafeArray (including webservice)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ____H_KEYBOARDIMPL
23#define ____H_KEYBOARDIMPL
24
25#include "VirtualBoxBase.h"
26#include "ConsoleEvents.h"
27#include <VBox/pdmdrv.h>
28
29/** Simple keyboard event class. */
30class KeyboardEvent
31{
32public:
33 KeyboardEvent() : scan(-1) {}
34 KeyboardEvent(int _scan) : scan(_scan) {}
35 bool isValid()
36 {
37 return (scan & ~0x80) && !(scan & ~0xFF);
38 }
39 int scan;
40};
41// template instantiation
42typedef ConsoleEventBuffer<KeyboardEvent> KeyboardEventBuffer;
43
44class Console;
45
46class ATL_NO_VTABLE Keyboard :
47 public VirtualBoxSupportErrorInfoImpl <Keyboard, IKeyboard>,
48 public VirtualBoxSupportTranslation <Keyboard>,
49 public VirtualBoxBase,
50 public IKeyboard
51{
52
53public:
54
55 DECLARE_NOT_AGGREGATABLE(Keyboard)
56
57 DECLARE_PROTECT_FINAL_CONSTRUCT()
58
59 BEGIN_COM_MAP(Keyboard)
60 COM_INTERFACE_ENTRY(ISupportErrorInfo)
61 COM_INTERFACE_ENTRY(IKeyboard)
62 END_COM_MAP()
63
64 NS_DECL_ISUPPORTS
65
66 HRESULT FinalConstruct();
67 void FinalRelease();
68
69 // public methods only for internal purposes
70 HRESULT init (Console *parent);
71 void uninit();
72
73 STDMETHOD(PutScancode)(LONG scancode);
74 STDMETHOD(PutScancodes)(ComSafeArrayIn (LONG, scancodes),
75 ULONG *codesStored);
76 STDMETHOD(PutCAD)();
77
78 // for VirtualBoxSupportErrorInfoImpl
79 static const wchar_t *getComponentName() { return L"Keyboard"; }
80
81 static const PDMDRVREG DrvReg;
82
83 Console *getParent()
84 {
85 return mParent;
86 }
87
88private:
89
90 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
91 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
92 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
93
94 ComObjPtr <Console, ComWeakRef> mParent;
95 /** Pointer to the associated keyboard driver. */
96 struct DRVMAINKEYBOARD *mpDrv;
97 /** Pointer to the device instance for the VMM Device. */
98 PPDMDEVINS mpVMMDev;
99 /** Set after the first attempt to find the VMM Device. */
100 bool mfVMMDevInited;
101};
102
103#endif // ____H_KEYBOARDIMPL
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use