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 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef ____H_AUDIOADAPTER
|
---|
23 | #define ____H_AUDIOADAPTER
|
---|
24 |
|
---|
25 | #include "VirtualBoxBase.h"
|
---|
26 |
|
---|
27 | class Machine;
|
---|
28 |
|
---|
29 | class ATL_NO_VTABLE AudioAdapter :
|
---|
30 | public VirtualBoxSupportErrorInfoImpl <AudioAdapter, IAudioAdapter>,
|
---|
31 | public VirtualBoxSupportTranslation <AudioAdapter>,
|
---|
32 | public VirtualBoxBase,
|
---|
33 | public IAudioAdapter
|
---|
34 | {
|
---|
35 | public:
|
---|
36 |
|
---|
37 | struct Data
|
---|
38 | {
|
---|
39 | Data() {
|
---|
40 | mEnabled = false;
|
---|
41 | mAudioDriver = AudioDriverType_NullAudioDriver;
|
---|
42 | }
|
---|
43 |
|
---|
44 | bool operator== (const Data &that) const
|
---|
45 | {
|
---|
46 | return this == &that ||
|
---|
47 | (mEnabled == that.mEnabled &&
|
---|
48 | mAudioDriver == that.mAudioDriver);
|
---|
49 | }
|
---|
50 |
|
---|
51 | BOOL mEnabled;
|
---|
52 | AudioDriverType_T mAudioDriver;
|
---|
53 | };
|
---|
54 |
|
---|
55 | DECLARE_NOT_AGGREGATABLE(AudioAdapter)
|
---|
56 |
|
---|
57 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
58 |
|
---|
59 | BEGIN_COM_MAP(AudioAdapter)
|
---|
60 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
61 | COM_INTERFACE_ENTRY(IAudioAdapter)
|
---|
62 | END_COM_MAP()
|
---|
63 |
|
---|
64 | NS_DECL_ISUPPORTS
|
---|
65 |
|
---|
66 | HRESULT FinalConstruct();
|
---|
67 | void FinalRelease();
|
---|
68 |
|
---|
69 | // public initializer/uninitializer for internal purposes only
|
---|
70 | HRESULT init (Machine *parent);
|
---|
71 | HRESULT init (Machine *parent, AudioAdapter *that);
|
---|
72 | HRESULT initCopy (Machine *parent, AudioAdapter *that);
|
---|
73 | void uninit();
|
---|
74 |
|
---|
75 | STDMETHOD(COMGETTER(Enabled))(BOOL *enabled);
|
---|
76 | STDMETHOD(COMSETTER(Enabled))(BOOL enabled);
|
---|
77 | STDMETHOD(COMGETTER(AudioDriver)) (AudioDriverType_T *audioDriverType);
|
---|
78 | STDMETHOD(COMSETTER(AudioDriver)) (AudioDriverType_T audioDriverType);
|
---|
79 |
|
---|
80 | // public methods only for internal purposes
|
---|
81 |
|
---|
82 | const Backupable <Data> &data() const { return mData; }
|
---|
83 |
|
---|
84 | bool isModified() { AutoLock alock (this); return mData.isBackedUp(); }
|
---|
85 | bool isReallyModified() { AutoLock alock (this); return mData.hasActualChanges(); }
|
---|
86 | void rollback() { AutoLock alock (this); mData.rollback(); }
|
---|
87 | void commit();
|
---|
88 | void copyFrom (AudioAdapter *aThat);
|
---|
89 |
|
---|
90 | // for VirtualBoxSupportErrorInfoImpl
|
---|
91 | static const wchar_t *getComponentName() { return L"AudioAdapter"; }
|
---|
92 |
|
---|
93 | private:
|
---|
94 |
|
---|
95 | ComObjPtr <Machine, ComWeakRef> mParent;
|
---|
96 | ComObjPtr <AudioAdapter> mPeer;
|
---|
97 | Backupable <Data> mData;
|
---|
98 | };
|
---|
99 |
|
---|
100 | #endif // ____H_AUDIOADAPTER
|
---|