VirtualBox

source: vbox/trunk/src/VBox/Main/include/FramebufferImpl.h@ 25414

Last change on this file since 25414 was 23223, checked in by vboxsync, 15 years ago

API: big medium handling change and lots of assorted other cleanups and fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/* $Id: FramebufferImpl.h 23223 2009-09-22 15:50:03Z vboxsync $ */
2
3/** @file
4 *
5 * Frame buffer COM class implementation
6 */
7
8/*
9 * Copyright (C) 2009 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24#ifndef ____H_H_FRAMEBUFFERIMPL
25#define ____H_H_FRAMEBUFFERIMPL
26
27#include "VirtualBoxBase.h"
28#include "VirtualBoxImpl.h"
29
30class ATL_NO_VTABLE Framebuffer :
31 public VirtualBoxBase,
32 public VirtualBoxSupportErrorInfoImpl<Framebuffer, IFramebuffer>,
33 public VirtualBoxSupportTranslation<Framebuffer>,
34 VBOX_SCRIPTABLE_IMPL(IFramebuffer)
35{
36public:
37
38 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (Framebuffer)
39
40 DECLARE_NOT_AGGREGATABLE (Framebuffer)
41
42 DECLARE_PROTECT_FINAL_CONSTRUCT()
43
44 BEGIN_COM_MAP (Framebuffer)
45 COM_INTERFACE_ENTRY (ISupportErrorInfo)
46 COM_INTERFACE_ENTRY (IFramebuffer)
47 COM_INTERFACE_ENTRY (IDispatch)
48 END_COM_MAP()
49
50 DECLARE_EMPTY_CTOR_DTOR (Framebuffer)
51
52 /* IFramebuffer properties */
53 STDMETHOD(COMGETTER(Address)) (BYTE **aAddress) = 0;
54 STDMETHOD(COMGETTER(Width)) (ULONG *aWidth) = 0;
55 STDMETHOD(COMGETTER(Height)) (ULONG *aHeight) = 0;
56 STDMETHOD(COMGETTER(BitsPerPixel)) (ULONG *aBitsPerPixel) = 0;
57 STDMETHOD(COMGETTER(BytesPerLine)) (ULONG *aBytesPerLine) = 0;
58 STDMETHOD(COMGETTER(PixelFormat)) (ULONG *aPixelFormat) = 0;
59 STDMETHOD(COMGETTER(UsesGuestVRAM)) (BOOL *aUsesGuestVRAM) = 0;
60 STDMETHOD(COMGETTER(HeightReduction)) (ULONG *aHeightReduction) = 0;
61 STDMETHOD(COMGETTER(Overlay)) (IFramebufferOverlay **aOverlay) = 0;
62 STDMETHOD(COMGETTER(WinId)) (ULONG64 *winId) = 0;
63
64 /* IFramebuffer methods */
65 STDMETHOD(Lock)() = 0;
66 STDMETHOD(Unlock)() = 0;
67
68 STDMETHOD(RequestResize) (ULONG aScreenId, ULONG aPixelFormat,
69 BYTE *aVRAM, ULONG aBitsPerPixel, ULONG aBytesPerLine,
70 ULONG aWidth, ULONG aHeight,
71 BOOL *aFinished) = 0;
72
73 STDMETHOD(VideoModeSupported) (ULONG aWidth, ULONG aHeight, ULONG aBPP,
74 BOOL *aSupported) = 0;
75
76 STDMETHOD(GetVisibleRegion)(BYTE *aRectangles, ULONG aCount,
77 ULONG *aCountCopied) = 0;
78 STDMETHOD(SetVisibleRegion)(BYTE *aRectangles, ULONG aCount) = 0;
79
80 STDMETHOD(ProcessVHWACommand)(BYTE *pCommand) = 0;
81
82 // for VirtualBoxSupportErrorInfoImpl
83 static const wchar_t *getComponentName() { return L"Framebuffer"; }
84
85};
86
87#endif // ____H_H_FRAMEBUFFERIMPL
88/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use