BIOSSettingsImpl.h revision 68b7971bd3dc7072763235a81c6015b4863751a1
/* $Id$ */
/** @file
*
* VirtualBox COM class implementation
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ____H_BIOSSETTINGS
#define ____H_BIOSSETTINGS
#include "VirtualBoxBase.h"
class Machine;
class GuestOSType;
namespace settings
{
struct BIOSSettings;
}
class ATL_NO_VTABLE BIOSSettings :
public VirtualBoxSupportErrorInfoImpl<BIOSSettings, IBIOSSettings>,
public VirtualBoxSupportTranslation<BIOSSettings>,
public VirtualBoxBase,
VBOX_SCRIPTABLE_IMPL(IBIOSSettings)
{
public:
struct Data
{
Data()
{
mLogoFadeIn = true;
mLogoFadeOut = true;
mLogoDisplayTime = 0;
mBootMenuMode = BIOSBootMenuMode_MessageAndMenu;
mACPIEnabled = true;
mIOAPICEnabled = false;
mPXEDebugEnabled = false;
mTimeOffset = 0;
}
bool operator== (const Data &that) const
{
return this == &that ||
(mLogoFadeIn == that.mLogoFadeIn &&
mLogoFadeOut == that.mLogoFadeOut &&
mLogoDisplayTime == that.mLogoDisplayTime &&
mLogoImagePath == that.mLogoImagePath &&
mBootMenuMode == that.mBootMenuMode &&
mACPIEnabled == that.mACPIEnabled &&
mIOAPICEnabled == that.mIOAPICEnabled &&
mPXEDebugEnabled == that.mPXEDebugEnabled &&
mTimeOffset == that.mTimeOffset);
}
BOOL mLogoFadeIn;
BOOL mLogoFadeOut;
ULONG mLogoDisplayTime;
Bstr mLogoImagePath;
BIOSBootMenuMode_T mBootMenuMode;
BOOL mACPIEnabled;
BOOL mIOAPICEnabled;
BOOL mPXEDebugEnabled;
LONG64 mTimeOffset;
};
DECLARE_NOT_AGGREGATABLE(BIOSSettings)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(BIOSSettings)
COM_INTERFACE_ENTRY(ISupportErrorInfo)
COM_INTERFACE_ENTRY(IBIOSSettings)
COM_INTERFACE_ENTRY(IDispatch)
END_COM_MAP()
HRESULT FinalConstruct();
void FinalRelease();
// public initializer/uninitializer for internal purposes only
HRESULT init (Machine *parent);
HRESULT init (Machine *parent, BIOSSettings *that);
HRESULT initCopy (Machine *parent, BIOSSettings *that);
void uninit();
STDMETHOD(COMGETTER(LogoFadeIn))(BOOL *enabled);
STDMETHOD(COMSETTER(LogoFadeIn))(BOOL enable);
STDMETHOD(COMGETTER(LogoFadeOut))(BOOL *enabled);
STDMETHOD(COMSETTER(LogoFadeOut))(BOOL enable);
STDMETHOD(COMGETTER(LogoDisplayTime))(ULONG *displayTime);
STDMETHOD(COMSETTER(LogoDisplayTime))(ULONG displayTime);
STDMETHOD(COMGETTER(LogoImagePath))(BSTR *imagePath);
STDMETHOD(COMSETTER(LogoImagePath))(IN_BSTR imagePath);
STDMETHOD(COMGETTER(BootMenuMode))(BIOSBootMenuMode_T *bootMenuMode);
STDMETHOD(COMSETTER(BootMenuMode))(BIOSBootMenuMode_T bootMenuMode);
STDMETHOD(COMGETTER(ACPIEnabled))(BOOL *enabled);
STDMETHOD(COMSETTER(ACPIEnabled))(BOOL enable);
STDMETHOD(COMGETTER(IOAPICEnabled))(BOOL *enabled);
STDMETHOD(COMSETTER(IOAPICEnabled))(BOOL enable);
STDMETHOD(COMGETTER(PXEDebugEnabled))(BOOL *enabled);
STDMETHOD(COMSETTER(PXEDebugEnabled))(BOOL enable);
STDMETHOD(COMGETTER)(TimeOffset)(LONG64 *offset);
STDMETHOD(COMSETTER)(TimeOffset)(LONG64 offset);
// public methods only for internal purposes
HRESULT loadSettings(const settings::BIOSSettings &data);
HRESULT saveSettings(settings::BIOSSettings &data);
bool isModified() { AutoWriteLock alock (this); return mData.isBackedUp(); }
bool isReallyModified() { AutoWriteLock alock (this); return mData.hasActualChanges(); }
void rollback() { AutoWriteLock alock (this); mData.rollback(); }
void commit();
void copyFrom (BIOSSettings *aThat);
void applyDefaults (GuestOSType *aOsType);
// for VirtualBoxSupportErrorInfoImpl
static const wchar_t *getComponentName() { return L"BIOSSettings"; }
private:
ComObjPtr<Machine, ComWeakRef> mParent;
ComObjPtr<BIOSSettings> mPeer;
Backupable<Data> mData;
};
#endif // ____H_BIOSSETTINGS
/* vi: set tabstop=4 shiftwidth=4 expandtab: */