NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
MovieSettingsBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// MovieSettingsBuilder.ja
9
//
10
// 生成工具:
11
// apiwrap
12
//
13
// 警告:
14
// 此文件为自动生成,请勿手动编辑
15
//
16
#pragma once
17
#include <NXOpen/NXDeprecation.hxx>
18
#include <vector>
19
#include <NXOpen/NXString.hxx>
20
#include <NXOpen/Callback.hxx>
21
#include <NXOpen/Builder.hxx>
22
#include <NXOpen/libnxopenuicpp_exports.hxx>
23
#ifdef _MSC_VER
24
#pragma warning(push)
25
#pragma warning(disable:4996)
26
#endif
27
#ifdef __GNUC__
28
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
29
#endif
30
namespace
NXOpen
31
{
32
class
MovieSettingsBuilder
;
33
class
Builder
;
34
class
_MovieSettingsBuilderBuilder;
35
class
MovieSettingsBuilderImpl;
54
class
NXOPENUICPPEXPORT MovieSettingsBuilder :
public
NXOpen::Builder
55
{
57
public
:
enum
CaptureAreaChoices
58
{
59
CaptureAreaChoicesGraphics
,
60
CaptureAreaChoicesNxWindow
,
61
CaptureAreaChoicesDesktop
62
};
63
64
public
:
enum
PlaybackSpeedChoices
65
{
66
PlaybackSpeedChoicesVerySlow
,
67
PlaybackSpeedChoicesSlow
,
68
PlaybackSpeedChoicesAsRecorded
,
69
PlaybackSpeedChoicesFast
,
70
PlaybackSpeedChoicesVeryFast
71
};
72
private
:
MovieSettingsBuilderImpl
* m_moviesettingsbuilder_impl;
73
private
:
friend
class
_MovieSettingsBuilderBuilder;
74
protected
:
MovieSettingsBuilder
();
75
public
:
~MovieSettingsBuilder
();
79
public
:
NXOpen::MovieSettingsBuilder::CaptureAreaChoices
CaptureArea
80
(
81
);
85
public
:
void
SetCaptureArea
86
(
87
NXOpen::MovieSettingsBuilder::CaptureAreaChoices
captureArea
88
);
93
public
:
int
FramesPerSecond
94
(
95
);
100
public
:
void
SetFramesPerSecond
101
(
102
int
framesPerSecond
103
);
107
public
:
NXOpen::MovieSettingsBuilder::PlaybackSpeedChoices
PlaybackSpeed
108
(
109
);
113
public
:
void
SetPlaybackSpeed
114
(
115
NXOpen::MovieSettingsBuilder::PlaybackSpeedChoices
playbackSpeed
116
);
120
public
:
NXString
CodecFourcc
121
(
122
);
126
public
:
void
SetCodecFourcc
127
(
128
const
NXString
& codecFourcc
129
);
133
void
SetCodecFourcc
134
(
135
const
char
* codecFourcc
136
);
137
};
138
}
139
#ifdef _MSC_VER
140
#pragma warning(pop)
141
#endif
142
#ifdef __GNUC__
143
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
144
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
145
#endif
146
#endif
147
#undef EXPORTLIBRARY