VirtualBox

source: vbox/trunk/src/VBox/Main/include/BIOSSettingsImpl.h@ 24349

Last change on this file since 24349 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
File size: 5.0 KB
Line 
1/* $Id$ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2007 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_BIOSSETTINGS
25#define ____H_BIOSSETTINGS
26
27#include "VirtualBoxBase.h"
28
29class Machine;
30class GuestOSType;
31
32namespace settings
33{
34 struct BIOSSettings;
35}
36
37class ATL_NO_VTABLE BIOSSettings :
38 public VirtualBoxSupportErrorInfoImpl<BIOSSettings, IBIOSSettings>,
39 public VirtualBoxSupportTranslation<BIOSSettings>,
40 public VirtualBoxBase,
41 VBOX_SCRIPTABLE_IMPL(IBIOSSettings)
42{
43public:
44
45 struct Data
46 {
47 Data()
48 {
49 mLogoFadeIn = true;
50 mLogoFadeOut = true;
51 mLogoDisplayTime = 0;
52 mBootMenuMode = BIOSBootMenuMode_MessageAndMenu;
53 mACPIEnabled = true;
54 mIOAPICEnabled = false;
55 mPXEDebugEnabled = false;
56 mTimeOffset = 0;
57 }
58
59 bool operator== (const Data &that) const
60 {
61 return this == &that ||
62 (mLogoFadeIn == that.mLogoFadeIn &&
63 mLogoFadeOut == that.mLogoFadeOut &&
64 mLogoDisplayTime == that.mLogoDisplayTime &&
65 mLogoImagePath == that.mLogoImagePath &&
66 mBootMenuMode == that.mBootMenuMode &&
67 mACPIEnabled == that.mACPIEnabled &&
68 mIOAPICEnabled == that.mIOAPICEnabled &&
69 mPXEDebugEnabled == that.mPXEDebugEnabled &&
70 mTimeOffset == that.mTimeOffset);
71 }
72
73 BOOL mLogoFadeIn;
74 BOOL mLogoFadeOut;
75 ULONG mLogoDisplayTime;
76 Bstr mLogoImagePath;
77 BIOSBootMenuMode_T mBootMenuMode;
78 BOOL mACPIEnabled;
79 BOOL mIOAPICEnabled;
80 BOOL mPXEDebugEnabled;
81 LONG64 mTimeOffset;
82 };
83
84 DECLARE_NOT_AGGREGATABLE(BIOSSettings)
85
86 DECLARE_PROTECT_FINAL_CONSTRUCT()
87
88 BEGIN_COM_MAP(BIOSSettings)
89 COM_INTERFACE_ENTRY(ISupportErrorInfo)
90 COM_INTERFACE_ENTRY(IBIOSSettings)
91 COM_INTERFACE_ENTRY(IDispatch)
92 END_COM_MAP()
93
94 HRESULT FinalConstruct();
95 void FinalRelease();
96
97 // public initializer/uninitializer for internal purposes only
98 HRESULT init (Machine *parent);
99 HRESULT init (Machine *parent, BIOSSettings *that);
100 HRESULT initCopy (Machine *parent, BIOSSettings *that);
101 void uninit();
102
103 STDMETHOD(COMGETTER(LogoFadeIn))(BOOL *enabled);
104 STDMETHOD(COMSETTER(LogoFadeIn))(BOOL enable);
105 STDMETHOD(COMGETTER(LogoFadeOut))(BOOL *enabled);
106 STDMETHOD(COMSETTER(LogoFadeOut))(BOOL enable);
107 STDMETHOD(COMGETTER(LogoDisplayTime))(ULONG *displayTime);
108 STDMETHOD(COMSETTER(LogoDisplayTime))(ULONG displayTime);
109 STDMETHOD(COMGETTER(LogoImagePath))(BSTR *imagePath);
110 STDMETHOD(COMSETTER(LogoImagePath))(IN_BSTR imagePath);
111 STDMETHOD(COMGETTER(BootMenuMode))(BIOSBootMenuMode_T *bootMenuMode);
112 STDMETHOD(COMSETTER(BootMenuMode))(BIOSBootMenuMode_T bootMenuMode);
113 STDMETHOD(COMGETTER(ACPIEnabled))(BOOL *enabled);
114 STDMETHOD(COMSETTER(ACPIEnabled))(BOOL enable);
115 STDMETHOD(COMGETTER(IOAPICEnabled))(BOOL *enabled);
116 STDMETHOD(COMSETTER(IOAPICEnabled))(BOOL enable);
117 STDMETHOD(COMGETTER(PXEDebugEnabled))(BOOL *enabled);
118 STDMETHOD(COMSETTER(PXEDebugEnabled))(BOOL enable);
119 STDMETHOD(COMGETTER)(TimeOffset)(LONG64 *offset);
120 STDMETHOD(COMSETTER)(TimeOffset)(LONG64 offset);
121
122 // public methods only for internal purposes
123
124 HRESULT loadSettings(const settings::BIOSSettings &data);
125 HRESULT saveSettings(settings::BIOSSettings &data);
126
127 const Backupable <Data> &data() const { return mData; }
128
129 bool isModified() { AutoWriteLock alock (this); return mData.isBackedUp(); }
130 bool isReallyModified() { AutoWriteLock alock (this); return mData.hasActualChanges(); }
131 void rollback() { AutoWriteLock alock (this); mData.rollback(); }
132 void commit();
133 void copyFrom (BIOSSettings *aThat);
134 void applyDefaults (GuestOSType *aOsType);
135
136 // for VirtualBoxSupportErrorInfoImpl
137 static const wchar_t *getComponentName() { return L"BIOSSettings"; }
138
139private:
140
141 ComObjPtr<Machine, ComWeakRef> mParent;
142 ComObjPtr<BIOSSettings> mPeer;
143 Backupable <Data> mData;
144};
145
146#endif // ____H_BIOSSETTINGS
147
148/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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