NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Preferences_SessionUserInterface.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口头文件:JA API
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Preferences_SessionUserInterface.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/TaggedObject.hxx>
22
#include <NXOpen/libnxopencpp_preferences_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
namespace
Preferences
33
{
34
class
SessionUserInterface
;
35
}
36
namespace
Preferences
37
{
38
class
SessionPreferences
;
39
}
40
namespace
Preferences
41
{
42
class
SessionUserInterfaceImpl;
48
class
NXOPENCPP_PREFERENCESEXPORT
SessionUserInterface
49
{
51
public
:
enum
JournalFileFormatType
52
{
53
JournalFileFormatTypeAscii
,
54
JournalFileFormatTypeUnicode
,
55
JournalFileFormatTypeUnicodeBigEndian
,
56
JournalFileFormatTypeUtf8
57
};
58
59
public
:
enum
JournalLanguageType
60
{
61
JournalLanguageTypeVisualBasic
,
62
JournalLanguageTypeCPlusPlus
,
63
JournalLanguageTypeJava
,
64
JournalLanguageTypeCs
,
65
JournalLanguageTypePython
66
};
67
private
:
SessionUserInterfaceImpl
* m_sessionuserinterface_impl;
68
private
:
NXOpen::Preferences::SessionPreferences
* m_owner;
70
public
:
explicit
SessionUserInterface
(
NXOpen::Preferences::SessionPreferences
*owner);
72
public
:
74
tag_t
Tag
()
const
;
75
public
:
~SessionUserInterface
();
79
public
:
NXOpen::Preferences::SessionUserInterface::JournalFileFormatType
JournalFileFormat
80
(
81
);
85
public
:
void
SetJournalFileFormat
86
(
87
NXOpen::Preferences::SessionUserInterface::JournalFileFormatType
journalFileFormat
88
);
92
public
:
NXOpen::Preferences::SessionUserInterface::JournalLanguageType
JournalLanguage
93
(
94
);
98
public
:
void
SetJournalLanguage
99
(
100
NXOpen::Preferences::SessionUserInterface::JournalLanguageType
language
101
);
105
public
:
bool
InsetMenuDialogComments
106
(
107
);
111
public
:
void
SetInsetMenuDialogComments
112
(
113
bool
insetMenuDialogComments
114
);
115
};
//lint !e1712 default constructor not defined for class
116
}
117
}
118
#ifdef _MSC_VER
119
#pragma warning(pop)
120
#endif
121
#ifdef __GNUC__
122
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
123
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
124
#endif
125
#endif
126
#undef EXPORTLIBRARY