VirtualBox

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

Last change on this file since 7466 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
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_FRAMEBUFFERIMPL
19#define ____H_FRAMEBUFFERIMPL
20
21#include "VirtualBoxBase.h"
22
23
24class ATL_NO_VTABLE InternalFramebuffer :
25 public VirtualBoxBase,
26 public IFramebuffer
27{
28public:
29 InternalFramebuffer();
30 virtual ~InternalFramebuffer();
31
32 DECLARE_NOT_AGGREGATABLE(InternalFramebuffer)
33
34 DECLARE_PROTECT_FINAL_CONSTRUCT()
35
36 BEGIN_COM_MAP(InternalFramebuffer)
37 COM_INTERFACE_ENTRY(IFramebuffer)
38 END_COM_MAP()
39
40 NS_DECL_ISUPPORTS
41
42 // public methods only for internal purposes
43 HRESULT init (ULONG width, ULONG height, ULONG depth);
44
45 // IFramebuffer properties
46 STDMETHOD(COMGETTER(Address)) (BYTE **address);
47 STDMETHOD(COMGETTER(Width)) (ULONG *width);
48 STDMETHOD(COMGETTER(Height)) (ULONG *height);
49 STDMETHOD(COMGETTER(BitsPerPixel)) (ULONG *bitsPerPixel);
50 STDMETHOD(COMGETTER(BytesPerLine)) (ULONG *bytesPerLine);
51 STDMETHOD(COMGETTER(PixelFormat)) (ULONG *pixelFormat);
52 STDMETHOD(COMGETTER(UsesGuestVRAM)) (BOOL *usesGuestVRAM);
53 STDMETHOD(COMGETTER(HeightReduction)) (ULONG *heightReduction);
54 STDMETHOD(COMGETTER(Overlay)) (IFramebufferOverlay **aOverlay);
55
56 // IFramebuffer methods
57 STDMETHOD(Lock)();
58 STDMETHOD(Unlock)();
59 STDMETHOD(NotifyUpdate)(ULONG x, ULONG y,
60 ULONG w, ULONG h,
61 BOOL *finished);
62 STDMETHOD(RequestResize)(ULONG uScreenId, ULONG pixelFormat, BYTE *vram,
63 ULONG bpp, ULONG bpl, ULONG w, ULONG h,
64 BOOL *finished);
65 STDMETHOD(OperationSupported)(FramebufferAccelerationOperation_T operation,
66 BOOL *supported);
67 STDMETHOD(VideoModeSupported)(ULONG width, ULONG height, ULONG bpp, BOOL *supported);
68 STDMETHOD(SolidFill)(ULONG x, ULONG y, ULONG width, ULONG height,
69 ULONG color, BOOL *handled);
70 STDMETHOD(CopyScreenBits)(ULONG xDst, ULONG yDst, ULONG xSrc, ULONG ySrc,
71 ULONG width, ULONG height, BOOL *handled);
72
73 STDMETHOD(GetVisibleRegion)(BYTE *aRectangles, ULONG aCount, ULONG *aCountCopied);
74 STDMETHOD(SetVisibleRegion)(BYTE *aRectangles, ULONG aCount);
75
76private:
77 int mWidth;
78 int mHeight;
79 int mBitsPerPixel;
80 int mBytesPerLine;
81 uint8_t *mData;
82 RTSEMMUTEX mMutex;
83};
84
85
86#endif // ____H_FRAMEBUFFERIMPL
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette