1 | /* $Id: AudioSettingsImpl.h 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM class implementation
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2022-2023 Oracle and/or its affiliates.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox base platform packages, as
|
---|
12 | * available from https://www.virtualbox.org.
|
---|
13 | *
|
---|
14 | * This program is free software; you can redistribute it and/or
|
---|
15 | * modify it under the terms of the GNU General Public License
|
---|
16 | * as published by the Free Software Foundation, in version 3 of the
|
---|
17 | * License.
|
---|
18 | *
|
---|
19 | * This program is distributed in the hope that it will be useful, but
|
---|
20 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
22 | * General Public License for more details.
|
---|
23 | *
|
---|
24 | * You should have received a copy of the GNU General Public License
|
---|
25 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
26 | *
|
---|
27 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef MAIN_INCLUDED_AudioSettingsImpl_h
|
---|
31 | #define MAIN_INCLUDED_AudioSettingsImpl_h
|
---|
32 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
33 | # pragma once
|
---|
34 | #endif
|
---|
35 |
|
---|
36 | #include "AudioAdapterImpl.h"
|
---|
37 | #include "GuestOSTypeImpl.h"
|
---|
38 |
|
---|
39 | #include "AudioSettingsWrap.h"
|
---|
40 | namespace settings
|
---|
41 | {
|
---|
42 | struct AudioSettings;
|
---|
43 | }
|
---|
44 |
|
---|
45 | class ATL_NO_VTABLE AudioSettings :
|
---|
46 | public AudioSettingsWrap
|
---|
47 | {
|
---|
48 | public:
|
---|
49 |
|
---|
50 | DECLARE_COMMON_CLASS_METHODS(AudioSettings)
|
---|
51 |
|
---|
52 | HRESULT FinalConstruct();
|
---|
53 | void FinalRelease();
|
---|
54 |
|
---|
55 | // public initializer/uninitializer for internal purposes only
|
---|
56 | HRESULT init(Machine *aParent);
|
---|
57 | HRESULT init(Machine *aParent, AudioSettings *aThat);
|
---|
58 | HRESULT initCopy(Machine *aParent, AudioSettings *aThat);
|
---|
59 | void uninit();
|
---|
60 |
|
---|
61 | HRESULT getHostAudioDevice(AudioDirection_T aUsage, ComPtr<IHostAudioDevice> &aDevice);
|
---|
62 | HRESULT setHostAudioDevice(const ComPtr<IHostAudioDevice> &aDevice, AudioDirection_T aUsage);
|
---|
63 | HRESULT getAdapter(ComPtr<IAudioAdapter> &aAdapter);
|
---|
64 |
|
---|
65 | // public methods only for internal purposes
|
---|
66 | bool i_canChangeSettings(void);
|
---|
67 | void i_onAdapterChanged(IAudioAdapter *pAdapter);
|
---|
68 | void i_onHostDeviceChanged(IHostAudioDevice *pDevice, bool fIsNew, AudioDeviceState_T enmState, IVirtualBoxErrorInfo *pErrInfo);
|
---|
69 | void i_onSettingsChanged(void);
|
---|
70 | HRESULT i_loadSettings(const settings::AudioAdapter &data);
|
---|
71 | HRESULT i_saveSettings(settings::AudioAdapter &data);
|
---|
72 | void i_copyFrom(AudioSettings *aThat);
|
---|
73 | HRESULT i_applyDefaults(ComObjPtr<GuestOSType> &aGuestOsType);
|
---|
74 |
|
---|
75 | void i_rollback();
|
---|
76 | void i_commit();
|
---|
77 |
|
---|
78 | private:
|
---|
79 |
|
---|
80 | struct Data;
|
---|
81 | Data *m;
|
---|
82 | };
|
---|
83 | #endif /* !MAIN_INCLUDED_AudioSettingsImpl_h */
|
---|
84 |
|
---|