1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Basic Frontend (BFE):
|
---|
4 | * Declaration of Framebuffer class
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License as published by the Free Software Foundation,
|
---|
14 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
15 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
16 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * If you received this file as part of a commercial VirtualBox
|
---|
19 | * distribution, then only the terms of your commercial VirtualBox
|
---|
20 | * license agreement apply instead of the previous paragraph.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef __H_FRAMEBUFFER
|
---|
24 | #define __H_FRAMEBUFFER
|
---|
25 |
|
---|
26 | #ifdef VBOXBFE_WITHOUT_COM
|
---|
27 | # include "COMDefs.h"
|
---|
28 | #else
|
---|
29 | # include <VBox/com/defs.h>
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | #include "VBoxBFE.h"
|
---|
33 |
|
---|
34 | class Framebuffer
|
---|
35 | {
|
---|
36 | public:
|
---|
37 | virtual ~Framebuffer() {}
|
---|
38 |
|
---|
39 | virtual HRESULT getWidth(ULONG *width) = 0;
|
---|
40 | virtual HRESULT getHeight(ULONG *height) = 0;
|
---|
41 | virtual HRESULT Lock() = 0;
|
---|
42 | virtual HRESULT Unlock() = 0;
|
---|
43 | virtual HRESULT getAddress(uintptr_t *address) = 0;
|
---|
44 | virtual HRESULT getColorDepth(ULONG *colorDepth) = 0;
|
---|
45 | virtual HRESULT getLineSize(ULONG *lineSize) = 0;
|
---|
46 | virtual HRESULT NotifyUpdate(ULONG x, ULONG y,
|
---|
47 | ULONG w, ULONG h, BOOL *finished) = 0;
|
---|
48 | virtual HRESULT RequestResize(ULONG w, ULONG h, BOOL *finished) = 0;
|
---|
49 | virtual HRESULT SolidFill(ULONG x, ULONG y, ULONG width, ULONG height,
|
---|
50 | ULONG color, BOOL *handled) = 0;
|
---|
51 | virtual HRESULT CopyScreenBits(ULONG xDst, ULONG yDst, ULONG xSrc, ULONG ySrc,
|
---|
52 | ULONG width, ULONG height, BOOL *handled) = 0;
|
---|
53 |
|
---|
54 | virtual void repaint() = 0;
|
---|
55 | virtual void resize() = 0;
|
---|
56 |
|
---|
57 | virtual void update(int x, int y, int w, int h) = 0;
|
---|
58 | virtual bool getFullscreen() = 0;
|
---|
59 | virtual void setFullscreen(bool fFullscreen) = 0;
|
---|
60 | virtual int getYOffset() = 0;
|
---|
61 | virtual int getHostXres() = 0;
|
---|
62 | virtual int getHostYres() = 0;
|
---|
63 | virtual int getHostBitsPerPixel() = 0;
|
---|
64 |
|
---|
65 | #ifdef VBOX_SECURELABEL
|
---|
66 | virtual int initSecureLabel(uint32_t height, char *font, uint32_t pointsize) = 0;
|
---|
67 | virtual void setSecureLabelText(const char *text) = 0;
|
---|
68 | virtual void paintSecureLabel(int x, int y, int w, int h, bool fForce) = 0;
|
---|
69 | #endif
|
---|
70 |
|
---|
71 |
|
---|
72 | private:
|
---|
73 | };
|
---|
74 |
|
---|
75 | extern Framebuffer *gFramebuffer;
|
---|
76 |
|
---|
77 | #endif // __H_FRAMEBUFFER
|
---|