1 | /* $Id: AudioAdapterImpl.h 69500 2017-10-28 15:14:05Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM class implementation
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2017 Oracle Corporation
|
---|
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 |
|
---|
20 | #ifndef ____H_AUDIOADAPTER
|
---|
21 | #define ____H_AUDIOADAPTER
|
---|
22 |
|
---|
23 | #include "AudioAdapterWrap.h"
|
---|
24 | namespace settings
|
---|
25 | {
|
---|
26 | struct AudioAdapter;
|
---|
27 | }
|
---|
28 |
|
---|
29 | class ATL_NO_VTABLE AudioAdapter :
|
---|
30 | public AudioAdapterWrap
|
---|
31 | {
|
---|
32 | public:
|
---|
33 |
|
---|
34 | DECLARE_EMPTY_CTOR_DTOR (AudioAdapter)
|
---|
35 |
|
---|
36 | HRESULT FinalConstruct();
|
---|
37 | void FinalRelease();
|
---|
38 |
|
---|
39 | // public initializer/uninitializer for internal purposes only
|
---|
40 | HRESULT init(Machine *aParent);
|
---|
41 | HRESULT init(Machine *aParent, AudioAdapter *aThat);
|
---|
42 | HRESULT initCopy(Machine *aParent, AudioAdapter *aThat);
|
---|
43 | void uninit();
|
---|
44 |
|
---|
45 |
|
---|
46 | // public methods only for internal purposes
|
---|
47 | HRESULT i_loadSettings(const settings::AudioAdapter &data);
|
---|
48 | HRESULT i_saveSettings(settings::AudioAdapter &data);
|
---|
49 |
|
---|
50 | void i_rollback();
|
---|
51 | void i_commit();
|
---|
52 | void i_copyFrom(AudioAdapter *aThat);
|
---|
53 |
|
---|
54 | private:
|
---|
55 |
|
---|
56 | // wrapped IAudioAdapter properties
|
---|
57 | HRESULT getEnabled(BOOL *aEnabled);
|
---|
58 | HRESULT setEnabled(BOOL aEnabled);
|
---|
59 | HRESULT getEnabledIn(BOOL *aEnabled);
|
---|
60 | HRESULT setEnabledIn(BOOL aEnabled);
|
---|
61 | HRESULT getEnabledOut(BOOL *aEnabled);
|
---|
62 | HRESULT setEnabledOut(BOOL aEnabled);
|
---|
63 | HRESULT getAudioDriver(AudioDriverType_T *aAudioDriver);
|
---|
64 | HRESULT setAudioDriver(AudioDriverType_T aAudioDriver);
|
---|
65 | HRESULT getAudioController(AudioControllerType_T *aAudioController);
|
---|
66 | HRESULT setAudioController(AudioControllerType_T aAudioController);
|
---|
67 | HRESULT getAudioCodec(AudioCodecType_T *aAudioCodec);
|
---|
68 | HRESULT setAudioCodec(AudioCodecType_T aAudioCodec);
|
---|
69 | HRESULT getPropertiesList(std::vector<com::Utf8Str>& aProperties);
|
---|
70 | HRESULT getProperty(const com::Utf8Str &aKey, com::Utf8Str &aValue);
|
---|
71 | HRESULT setProperty(const com::Utf8Str &aKey, const com::Utf8Str &aValue);
|
---|
72 |
|
---|
73 | Machine * const mParent;
|
---|
74 | const ComObjPtr<AudioAdapter> mPeer;
|
---|
75 | Backupable<settings::AudioAdapter> mData;
|
---|
76 | };
|
---|
77 |
|
---|
78 | #endif // ____H_AUDIOADAPTER
|
---|
79 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|