VirtualBox

source: vbox/trunk/src/VBox/Main/include/AudioSettingsImpl.h

Last change on this file was 103395, checked in by vboxsync, 3 months ago

Main/Audio: Added mutable state dependency checks for audio adapter settings. bugref:10600

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1/* $Id: AudioSettingsImpl.h 103395 2024-02-16 09:18:42Z 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"
40namespace settings
41{
42 struct AudioSettings;
43}
44
45class ATL_NO_VTABLE AudioSettings :
46 public AudioSettingsWrap
47{
48public:
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 Machine *i_getMachine(void);
68 void i_onAdapterChanged(IAudioAdapter *pAdapter);
69 void i_onHostDeviceChanged(IHostAudioDevice *pDevice, bool fIsNew, AudioDeviceState_T enmState, IVirtualBoxErrorInfo *pErrInfo);
70 void i_onSettingsChanged(void);
71 HRESULT i_loadSettings(const settings::AudioAdapter &data);
72 HRESULT i_saveSettings(settings::AudioAdapter &data);
73 void i_copyFrom(AudioSettings *aThat);
74 HRESULT i_applyDefaults(ComObjPtr<GuestOSType> &aGuestOsType);
75
76 void i_rollback();
77 void i_commit();
78
79private:
80
81 struct Data;
82 Data *m;
83};
84#endif /* !MAIN_INCLUDED_AudioSettingsImpl_h */
85
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use