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