VirtualBox

source: vbox/trunk/src/VBox/Main/include/SystemPropertiesImpl.h@ 4753

Last change on this file since 4753 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ____H_SYSTEMPROPERTIESIMPL
19#define ____H_SYSTEMPROPERTIESIMPL
20
21#include "VirtualBoxBase.h"
22
23#include <VBox/cfgldr.h>
24
25class VirtualBox;
26
27class ATL_NO_VTABLE SystemProperties :
28 public VirtualBoxSupportErrorInfoImpl <SystemProperties, ISystemProperties>,
29 public VirtualBoxSupportTranslation <SystemProperties>,
30 public VirtualBoxBase,
31 public ISystemProperties
32{
33public:
34
35 DECLARE_NOT_AGGREGATABLE(SystemProperties)
36
37 DECLARE_PROTECT_FINAL_CONSTRUCT()
38
39 BEGIN_COM_MAP(SystemProperties)
40 COM_INTERFACE_ENTRY(ISupportErrorInfo)
41 COM_INTERFACE_ENTRY(ISystemProperties)
42 END_COM_MAP()
43
44 NS_DECL_ISUPPORTS
45
46 HRESULT FinalConstruct();
47 void FinalRelease();
48
49 // public initializer/uninitializer for internal purposes only
50 HRESULT init (VirtualBox *aParent);
51 void uninit();
52
53 // ISystemProperties properties
54 STDMETHOD(COMGETTER(MinGuestRAM)(ULONG *minRAM));
55 STDMETHOD(COMGETTER(MaxGuestRAM)(ULONG *maxRAM));
56 STDMETHOD(COMGETTER(MinGuestVRAM)(ULONG *minVRAM));
57 STDMETHOD(COMGETTER(MaxGuestVRAM)(ULONG *maxVRAM));
58 STDMETHOD(COMGETTER(MaxGuestMonitors)(ULONG *maxMonitors));
59 STDMETHOD(COMGETTER(MaxVDISize)(ULONG64 *maxVDISize));
60 STDMETHOD(COMGETTER(NetworkAdapterCount)(ULONG *count));
61 STDMETHOD(COMGETTER(SerialPortCount)(ULONG *count));
62 STDMETHOD(COMGETTER(ParallelPortCount)(ULONG *count));
63 STDMETHOD(COMGETTER(MaxBootPosition)(ULONG *aMaxBootPosition));
64 STDMETHOD(COMGETTER(DefaultVDIFolder)) (BSTR *aDefaultVDIFolder);
65 STDMETHOD(COMSETTER(DefaultVDIFolder)) (INPTR BSTR aDefaultVDIFolder);
66 STDMETHOD(COMGETTER(DefaultMachineFolder)) (BSTR *aDefaultMachineFolder);
67 STDMETHOD(COMSETTER(DefaultMachineFolder)) (INPTR BSTR aDefaultMachineFolder);
68 STDMETHOD(COMGETTER(RemoteDisplayAuthLibrary)) (BSTR *aRemoteDisplayAuthLibrary);
69 STDMETHOD(COMSETTER(RemoteDisplayAuthLibrary)) (INPTR BSTR aRemoteDisplayAuthLibrary);
70 STDMETHOD(COMGETTER(HWVirtExEnabled)) (BOOL *enabled);
71 STDMETHOD(COMSETTER(HWVirtExEnabled)) (BOOL enabled);
72
73 // public methods only for internal purposes
74
75 HRESULT loadSettings (CFGNODE aGlobal);
76 HRESULT saveSettings (CFGNODE aGlobal);
77
78 /** Default VDI path (as is, not full). Not thread safe (use object lock). */
79 const Bstr &defaultVDIFolder() { return mDefaultVDIFolder; }
80 /** Default Machine path (full). Not thread safe (use object lock). */
81 const Bstr &defaultVDIFolderFull() { return mDefaultVDIFolderFull; }
82 /** Default Machine path (as is, not full). Not thread safe (use object lock). */
83 const Bstr &defaultMachineFolder() { return mDefaultMachineFolder; }
84 /** Default Machine path (full). Not thread safe (use object lock). */
85 const Bstr &defaultMachineFolderFull() { return mDefaultMachineFolderFull; }
86
87 // for VirtualBoxSupportErrorInfoImpl
88 static const wchar_t *getComponentName() { return L"SystemProperties"; }
89
90private:
91
92 HRESULT setDefaultVDIFolder (const BSTR aPath);
93 HRESULT setDefaultMachineFolder (const BSTR aPath);
94 HRESULT setRemoteDisplayAuthLibrary (const BSTR aPath);
95
96 ComObjPtr <VirtualBox, ComWeakRef> mParent;
97
98 Bstr mDefaultVDIFolder;
99 Bstr mDefaultVDIFolderFull;
100 Bstr mDefaultMachineFolder;
101 Bstr mDefaultMachineFolderFull;
102 Bstr mRemoteDisplayAuthLibrary;
103 BOOL mHWVirtExEnabled;
104};
105
106#endif // ____H_SYSTEMPROPERTIESIMPL
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