VirtualBox

source: vbox/trunk/src/VBox/Main/include/RecordingScreenSettingsImpl.h@ 75500

Last change on this file since 75500 was 75489, checked in by vboxsync, 6 years ago

Recording/Main: Renamed RecordVideoRateControlMode -> RecordingVideoRateControlMode.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1/* $Id: RecordingScreenSettingsImpl.h 75489 2018-11-15 16:25:42Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation - Recording settings of one virtual screen.
6 */
7
8/*
9 * Copyright (C) 2018 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_RecordingScreenSettings
21#define ____H_RecordingScreenSettings
22
23#include "RecordingScreenSettingsWrap.h"
24
25class RecordingSettings;
26
27namespace settings
28{
29 struct RecordingScreenSettings;
30}
31
32class ATL_NO_VTABLE RecordingScreenSettings :
33 public RecordingScreenSettingsWrap
34{
35public:
36
37 DECLARE_EMPTY_CTOR_DTOR(RecordingScreenSettings)
38
39 HRESULT FinalConstruct();
40 void FinalRelease();
41
42 // public initializer/uninitializer for internal purposes only
43 HRESULT init(RecordingSettings *aParent, uint32_t uScreenId, const settings::RecordingScreenSettings& data);
44 HRESULT init(RecordingSettings *aParent, RecordingScreenSettings *that);
45 HRESULT initCopy(RecordingSettings *aParent, RecordingScreenSettings *that);
46 void uninit();
47
48 // public methods only for internal purposes
49 HRESULT i_loadSettings(const settings::RecordingScreenSettings &data);
50 HRESULT i_saveSettings(settings::RecordingScreenSettings &data);
51
52 void i_rollback();
53 void i_commit();
54 void i_copyFrom(RecordingScreenSettings *aThat);
55 void i_applyDefaults();
56
57private:
58
59 // wrapped IRecordingScreenSettings methods
60 HRESULT isFeatureEnabled(RecordingFeature_T aFeature, BOOL *aEnabled);
61
62 // wrapped IRecordingScreenSettings properties
63 HRESULT getId(ULONG *id);
64 HRESULT getEnabled(BOOL *enabled);
65 HRESULT setEnabled(BOOL enabled);
66 HRESULT getFeatures(ULONG *aFeatures);
67 HRESULT setFeatures(ULONG aFeatures);
68 HRESULT getDestination(RecordingDestination_T *aDestination);
69 HRESULT setDestination(RecordingDestination_T aDestination);
70
71 HRESULT getFileName(com::Utf8Str &aFileName);
72 HRESULT setFileName(const com::Utf8Str &aFileName);
73 HRESULT getMaxTime(ULONG *aMaxTimeS);
74 HRESULT setMaxTime(ULONG aMaxTimeS);
75 HRESULT getMaxFileSize(ULONG *aMaxFileSizeMB);
76 HRESULT setMaxFileSize(ULONG aMaxFileSizeMB);
77 HRESULT getOptions(com::Utf8Str &aOptions);
78 HRESULT setOptions(const com::Utf8Str &aOptions);
79
80 HRESULT getAudioCodec(RecordingAudioCodec_T *aCodec);
81 HRESULT setAudioCodec(RecordingAudioCodec_T aCodec);
82 HRESULT getAudioHz(ULONG *aHz);
83 HRESULT setAudioHz(ULONG aHz);
84 HRESULT getAudioBits(ULONG *aBits);
85 HRESULT setAudioBits(ULONG aBits);
86 HRESULT getAudioChannels(ULONG *aChannels);
87 HRESULT setAudioChannels(ULONG aChannels);
88
89 HRESULT getVideoCodec(RecordingVideoCodec_T *aCodec);
90 HRESULT setVideoCodec(RecordingVideoCodec_T aCodec);
91 HRESULT getVideoWidth(ULONG *aVideoWidth);
92 HRESULT setVideoWidth(ULONG aVideoWidth);
93 HRESULT getVideoHeight(ULONG *aVideoHeight);
94 HRESULT setVideoHeight(ULONG aVideoHeight);
95 HRESULT getVideoRate(ULONG *aVideoRate);
96 HRESULT setVideoRate(ULONG aVideoRate);
97 HRESULT getVideoRateControlMode(RecordingVideoRateControlMode_T *aMode);
98 HRESULT setVideoRateControlMode(RecordingVideoRateControlMode_T aMode);
99 HRESULT getVideoFPS(ULONG *aVideoFPS);
100 HRESULT setVideoFPS(ULONG aVideoFPS);
101 HRESULT getVideoScalingMethod(RecordingVideoScalingMethod_T *aMode);
102 HRESULT setVideoScalingMethod(RecordingVideoScalingMethod_T aMode);
103
104private:
105
106 // internal methods
107 int i_initInternal();
108
109private:
110
111 static int i_parseOptionsString(const com::Utf8Str &strOptions, settings::RecordingScreenSettings &screenSettings);
112
113private:
114
115 struct Data;
116 Data *m;
117};
118
119#endif // ____H_RecordingScreenSettings
120
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette