1 | /* $Id: BIOSSettingsImpl.h 93115 2022-01-01 11:31:46Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM class implementation - Machine BIOS settings.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2022 Oracle Corporation
|
---|
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 |
|
---|
20 | #ifndef MAIN_INCLUDED_BIOSSettingsImpl_h
|
---|
21 | #define MAIN_INCLUDED_BIOSSettingsImpl_h
|
---|
22 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
23 | # pragma once
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #include "BIOSSettingsWrap.h"
|
---|
27 |
|
---|
28 | class GuestOSType;
|
---|
29 |
|
---|
30 | namespace settings
|
---|
31 | {
|
---|
32 | struct BIOSSettings;
|
---|
33 | }
|
---|
34 |
|
---|
35 | class ATL_NO_VTABLE BIOSSettings :
|
---|
36 | public BIOSSettingsWrap
|
---|
37 | {
|
---|
38 | public:
|
---|
39 |
|
---|
40 | DECLARE_COMMON_CLASS_METHODS(BIOSSettings)
|
---|
41 |
|
---|
42 | HRESULT FinalConstruct();
|
---|
43 | void FinalRelease();
|
---|
44 |
|
---|
45 | // public initializer/uninitializer for internal purposes only
|
---|
46 | HRESULT init(Machine *parent);
|
---|
47 | HRESULT init(Machine *parent, BIOSSettings *that);
|
---|
48 | HRESULT initCopy(Machine *parent, BIOSSettings *that);
|
---|
49 | void uninit();
|
---|
50 |
|
---|
51 | // public methods for internal purposes only
|
---|
52 | HRESULT i_loadSettings(const settings::BIOSSettings &data);
|
---|
53 | HRESULT i_saveSettings(settings::BIOSSettings &data);
|
---|
54 |
|
---|
55 | void i_rollback();
|
---|
56 | void i_commit();
|
---|
57 | void i_copyFrom(BIOSSettings *aThat);
|
---|
58 | void i_applyDefaults(GuestOSType *aOsType);
|
---|
59 |
|
---|
60 | private:
|
---|
61 |
|
---|
62 | // wrapped IBIOSettings properties
|
---|
63 | HRESULT getLogoFadeIn(BOOL *enabled);
|
---|
64 | HRESULT setLogoFadeIn(BOOL enable);
|
---|
65 | HRESULT getLogoFadeOut(BOOL *enabled);
|
---|
66 | HRESULT setLogoFadeOut(BOOL enable);
|
---|
67 | HRESULT getLogoDisplayTime(ULONG *displayTime);
|
---|
68 | HRESULT setLogoDisplayTime(ULONG displayTime);
|
---|
69 | HRESULT getLogoImagePath(com::Utf8Str &imagePath);
|
---|
70 | HRESULT setLogoImagePath(const com::Utf8Str &imagePath);
|
---|
71 | HRESULT getBootMenuMode(BIOSBootMenuMode_T *bootMenuMode);
|
---|
72 | HRESULT setBootMenuMode(BIOSBootMenuMode_T bootMenuMode);
|
---|
73 | HRESULT getACPIEnabled(BOOL *enabled);
|
---|
74 | HRESULT setACPIEnabled(BOOL enable);
|
---|
75 | HRESULT getIOAPICEnabled(BOOL *aIOAPICEnabled);
|
---|
76 | HRESULT setIOAPICEnabled(BOOL aIOAPICEnabled);
|
---|
77 | HRESULT getAPICMode(APICMode_T *aAPICMode);
|
---|
78 | HRESULT setAPICMode(APICMode_T aAPICMode);
|
---|
79 | HRESULT getTimeOffset(LONG64 *offset);
|
---|
80 | HRESULT setTimeOffset(LONG64 offset);
|
---|
81 | HRESULT getPXEDebugEnabled(BOOL *enabled);
|
---|
82 | HRESULT setPXEDebugEnabled(BOOL enable);
|
---|
83 | HRESULT getSMBIOSUuidLittleEndian(BOOL *enabled);
|
---|
84 | HRESULT setSMBIOSUuidLittleEndian(BOOL enable);
|
---|
85 |
|
---|
86 | struct Data;
|
---|
87 | Data *m;
|
---|
88 | };
|
---|
89 |
|
---|
90 | #endif /* !MAIN_INCLUDED_BIOSSettingsImpl_h */
|
---|
91 |
|
---|
92 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|