VirtualBox

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

Last change on this file since 13538 was 8155, checked in by vboxsync, 16 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
File size: 5.2 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;
30
31class ATL_NO_VTABLE BIOSSettings :
32 public VirtualBoxSupportErrorInfoImpl <BIOSSettings, IBIOSSettings>,
33 public VirtualBoxSupportTranslation <BIOSSettings>,
34 public VirtualBoxBaseNEXT,
35 public IBIOSSettings
36{
37public:
38
39 struct Data
40 {
41 Data()
42 {
43 mLogoFadeIn = true;
44 mLogoFadeOut = true;
45 mLogoDisplayTime = 0;
46 mBootMenuMode = BIOSBootMenuMode_MessageAndMenu;
47 mACPIEnabled = true;
48 mIOAPICEnabled = false;
49 mPXEDebugEnabled = false;
50 mTimeOffset = 0;
51 mIDEControllerType = IDEControllerType_PIIX4;
52 }
53
54 bool operator== (const Data &that) const
55 {
56 return this == &that ||
57 (mLogoFadeIn == that.mLogoFadeIn &&
58 mLogoFadeOut == that.mLogoFadeOut &&
59 mLogoDisplayTime == that.mLogoDisplayTime &&
60 mLogoImagePath == that.mLogoImagePath &&
61 mBootMenuMode == that.mBootMenuMode &&
62 mACPIEnabled == that.mACPIEnabled &&
63 mIOAPICEnabled == that.mIOAPICEnabled &&
64 mPXEDebugEnabled == that.mPXEDebugEnabled &&
65 mIDEControllerType == that.mIDEControllerType &&
66 mTimeOffset == that.mTimeOffset);
67 }
68
69 BOOL mLogoFadeIn;
70 BOOL mLogoFadeOut;
71 ULONG mLogoDisplayTime;
72 Bstr mLogoImagePath;
73 BIOSBootMenuMode_T mBootMenuMode;
74 BOOL mACPIEnabled;
75 BOOL mIOAPICEnabled;
76 BOOL mPXEDebugEnabled;
77 LONG64 mTimeOffset;
78 IDEControllerType_T mIDEControllerType;
79 };
80
81 DECLARE_NOT_AGGREGATABLE(BIOSSettings)
82
83 DECLARE_PROTECT_FINAL_CONSTRUCT()
84
85 BEGIN_COM_MAP(BIOSSettings)
86 COM_INTERFACE_ENTRY(ISupportErrorInfo)
87 COM_INTERFACE_ENTRY(IBIOSSettings)
88 END_COM_MAP()
89
90 NS_DECL_ISUPPORTS
91
92 HRESULT FinalConstruct();
93 void FinalRelease();
94
95 // public initializer/uninitializer for internal purposes only
96 HRESULT init (Machine *parent);
97 HRESULT init (Machine *parent, BIOSSettings *that);
98 HRESULT initCopy (Machine *parent, BIOSSettings *that);
99 void uninit();
100
101 STDMETHOD(COMGETTER(LogoFadeIn))(BOOL *enabled);
102 STDMETHOD(COMSETTER(LogoFadeIn))(BOOL enable);
103 STDMETHOD(COMGETTER(LogoFadeOut))(BOOL *enabled);
104 STDMETHOD(COMSETTER(LogoFadeOut))(BOOL enable);
105 STDMETHOD(COMGETTER(LogoDisplayTime))(ULONG *displayTime);
106 STDMETHOD(COMSETTER(LogoDisplayTime))(ULONG displayTime);
107 STDMETHOD(COMGETTER(LogoImagePath))(BSTR *imagePath);
108 STDMETHOD(COMSETTER(LogoImagePath))(INPTR BSTR imagePath);
109 STDMETHOD(COMGETTER(BootMenuMode))(BIOSBootMenuMode_T *bootMenuMode);
110 STDMETHOD(COMSETTER(BootMenuMode))(BIOSBootMenuMode_T bootMenuMode);
111 STDMETHOD(COMGETTER(ACPIEnabled))(BOOL *enabled);
112 STDMETHOD(COMSETTER(ACPIEnabled))(BOOL enable);
113 STDMETHOD(COMGETTER(IOAPICEnabled))(BOOL *enabled);
114 STDMETHOD(COMSETTER(IOAPICEnabled))(BOOL enable);
115 STDMETHOD(COMGETTER(PXEDebugEnabled))(BOOL *enabled);
116 STDMETHOD(COMSETTER(PXEDebugEnabled))(BOOL enable);
117 STDMETHOD(COMGETTER(IDEControllerType))(IDEControllerType_T *controllerType);
118 STDMETHOD(COMSETTER(IDEControllerType))(IDEControllerType_T controllerType);
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::Key &aMachineNode);
125 HRESULT saveSettings (settings::Key &aMachineNode);
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
135 // for VirtualBoxSupportErrorInfoImpl
136 static const wchar_t *getComponentName() { return L"BIOSSettings"; }
137
138private:
139
140 ComObjPtr <Machine, ComWeakRef> mParent;
141 ComObjPtr <BIOSSettings> mPeer;
142 Backupable <Data> mData;
143};
144
145#endif // ____H_BIOSSETTINGS
146
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use