PySimultan 0.5.9.6__py3-none-any.whl → 0.6.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. PySimultan2/CHANGELOG.md +9 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +12 -5
  4. PySimultan2/default_types.py +39 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +31 -3
  7. PySimultan2/resources/BruTile.dll +0 -0
  8. PySimultan2/resources/ComponentBuilder.dll +0 -0
  9. PySimultan2/resources/ComponentBuilder.xml +93 -15
  10. PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
  11. PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
  12. PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
  13. PySimultan2/resources/HelixToolkit.dll +0 -0
  14. PySimultan2/resources/Python.Runtime.dll +0 -0
  15. PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
  16. PySimultan2/resources/SIMULTAN.Lang.xml +62 -1
  17. PySimultan2/resources/SIMULTAN.UI.dll +0 -0
  18. PySimultan2/resources/SIMULTAN.UI.xml +57 -0
  19. PySimultan2/resources/SIMULTAN.dll +0 -0
  20. PySimultan2/resources/SIMULTAN.xml +73 -3
  21. PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
  22. PySimultan2/resources/defaultsettings.xml +0 -0
  23. PySimultan2/simultan_object.py +6 -1
  24. PySimultan2/taxonomy_maps.py +45 -27
  25. PySimultan2/typings/SIMULTAN/Data/Assets/__init__.pyi +616 -0
  26. PySimultan2/typings/SIMULTAN/Data/Components/__init__.pyi +2538 -0
  27. PySimultan2/typings/SIMULTAN/Data/FlowNetworks/__init__.pyi +499 -0
  28. PySimultan2/typings/SIMULTAN/Data/Geometry/__init__.pyi +2219 -0
  29. PySimultan2/typings/SIMULTAN/Data/MultiValues/__init__.pyi +682 -0
  30. PySimultan2/typings/SIMULTAN/Data/SimMath/__init__.pyi +1654 -0
  31. PySimultan2/typings/SIMULTAN/Data/SimNetworks/__init__.pyi +442 -0
  32. PySimultan2/typings/SIMULTAN/Data/SitePlanner/__init__.pyi +193 -0
  33. PySimultan2/typings/SIMULTAN/Data/Taxonomy/__init__.pyi +367 -0
  34. PySimultan2/typings/SIMULTAN/Data/Users/__init__.pyi +116 -0
  35. PySimultan2/typings/SIMULTAN/Data/ValueMappings/__init__.pyi +212 -0
  36. PySimultan2/typings/SIMULTAN/Data/__init__.pyi +232 -0
  37. PySimultan2/typings/SIMULTAN/DataMapping/__init__.pyi +916 -0
  38. PySimultan2/typings/SIMULTAN/Excel/__init__.pyi +15 -0
  39. PySimultan2/typings/SIMULTAN/Exceptions/__init__.pyi +268 -0
  40. PySimultan2/typings/SIMULTAN/Exchange/SimNetworkConnectors/__init__.pyi +32 -0
  41. PySimultan2/typings/SIMULTAN/Exchange/__init__.pyi +116 -0
  42. PySimultan2/typings/SIMULTAN/Projects/ManagedFiles/__init__.pyi +433 -0
  43. PySimultan2/typings/SIMULTAN/Projects/__init__.pyi +435 -0
  44. PySimultan2/typings/SIMULTAN/Serializer/CODXF/__init__.pyi +103 -0
  45. PySimultan2/typings/SIMULTAN/Serializer/CSV/__init__.pyi +122 -0
  46. PySimultan2/typings/SIMULTAN/Serializer/DXF/__init__.pyi +1335 -0
  47. PySimultan2/typings/SIMULTAN/Serializer/Geometry/__init__.pyi +48 -0
  48. PySimultan2/typings/SIMULTAN/Serializer/JSON/__init__.pyi +562 -0
  49. PySimultan2/typings/SIMULTAN/Serializer/METADXF/__init__.pyi +11 -0
  50. PySimultan2/typings/SIMULTAN/Serializer/PADXF/__init__.pyi +21 -0
  51. PySimultan2/typings/SIMULTAN/Serializer/PPATH/__init__.pyi +11 -0
  52. PySimultan2/typings/SIMULTAN/Serializer/Projects/__init__.pyi +112 -0
  53. PySimultan2/typings/SIMULTAN/Serializer/SIMLINKS/__init__.pyi +5 -0
  54. PySimultan2/typings/SIMULTAN/Serializer/SPDXF/__init__.pyi +13 -0
  55. PySimultan2/typings/SIMULTAN/Serializer/SimGeo/__init__.pyi +54 -0
  56. PySimultan2/typings/SIMULTAN/Serializer/TXDXF/__init__.pyi +46 -0
  57. PySimultan2/typings/SIMULTAN/Serializer/XMI/__init__.pyi +22 -0
  58. PySimultan2/typings/SIMULTAN/Serializer/__init__.pyi +32 -0
  59. PySimultan2/typings/SIMULTAN/Utils/BackgroundWork/__init__.pyi +43 -0
  60. PySimultan2/typings/SIMULTAN/Utils/Collections/__init__.pyi +216 -0
  61. PySimultan2/typings/SIMULTAN/Utils/ElevationProvider/__init__.pyi +66 -0
  62. PySimultan2/typings/SIMULTAN/Utils/Files/__init__.pyi +48 -0
  63. PySimultan2/typings/SIMULTAN/Utils/Randomize/__init__.pyi +11 -0
  64. PySimultan2/typings/SIMULTAN/Utils/Streams/__init__.pyi +59 -0
  65. PySimultan2/typings/SIMULTAN/Utils/UndoRedo/__init__.pyi +133 -0
  66. PySimultan2/typings/SIMULTAN/Utils/__init__.pyi +570 -0
  67. PySimultan2/typings/System/Buffers/Binary/__init__.pyi +248 -0
  68. PySimultan2/typings/System/Buffers/Text/__init__.pyi +91 -0
  69. PySimultan2/typings/System/Buffers/__init__.pyi +192 -0
  70. PySimultan2/typings/System/CodeDom/Compiler/__init__.pyi +137 -0
  71. PySimultan2/typings/System/Collections/Concurrent/__init__.pyi +47 -0
  72. PySimultan2/typings/System/Collections/Generic/__init__.pyi +1293 -0
  73. PySimultan2/typings/System/Collections/ObjectModel/__init__.pyi +166 -0
  74. PySimultan2/typings/System/Collections/Specialized/__init__.pyi +82 -0
  75. PySimultan2/typings/System/Collections/__init__.pyi +403 -0
  76. PySimultan2/typings/System/ComponentModel/__init__.pyi +582 -0
  77. PySimultan2/typings/System/Configuration/Assemblies/__init__.pyi +30 -0
  78. PySimultan2/typings/System/Diagnostics/CodeAnalysis/__init__.pyi +315 -0
  79. PySimultan2/typings/System/Diagnostics/Contracts/__init__.pyi +297 -0
  80. PySimultan2/typings/System/Diagnostics/SymbolStore/__init__.pyi +9 -0
  81. PySimultan2/typings/System/Diagnostics/Tracing/__init__.pyi +641 -0
  82. PySimultan2/typings/System/Diagnostics/__init__.pyi +1101 -0
  83. PySimultan2/typings/System/Globalization/__init__.pyi +1675 -0
  84. PySimultan2/typings/System/IO/Enumeration/__init__.pyi +125 -0
  85. PySimultan2/typings/System/IO/__init__.pyi +2747 -0
  86. PySimultan2/typings/System/Linq/Expressions/__init__.pyi +1815 -0
  87. PySimultan2/typings/System/Net/__init__.pyi +81 -0
  88. PySimultan2/typings/System/Numerics/__init__.pyi +2853 -0
  89. PySimultan2/typings/System/Reflection/Emit/__init__.pyi +1945 -0
  90. PySimultan2/typings/System/Reflection/Metadata/__init__.pyi +24 -0
  91. PySimultan2/typings/System/Reflection/__init__.pyi +2724 -0
  92. PySimultan2/typings/System/Resources/__init__.pyi +205 -0
  93. PySimultan2/typings/System/Runtime/CompilerServices/__init__.pyi +1926 -0
  94. PySimultan2/typings/System/Runtime/ConstrainedExecution/__init__.pyi +49 -0
  95. PySimultan2/typings/System/Runtime/ExceptionServices/__init__.pyi +34 -0
  96. PySimultan2/typings/System/Runtime/InteropServices/ComTypes/__init__.pyi +758 -0
  97. PySimultan2/typings/System/Runtime/InteropServices/Marshalling/__init__.pyi +461 -0
  98. PySimultan2/typings/System/Runtime/InteropServices/ObjectiveC/__init__.pyi +48 -0
  99. PySimultan2/typings/System/Runtime/InteropServices/__init__.pyi +2632 -0
  100. PySimultan2/typings/System/Runtime/Intrinsics/Arm/__init__.pyi +4757 -0
  101. PySimultan2/typings/System/Runtime/Intrinsics/Wasm/__init__.pyi +844 -0
  102. PySimultan2/typings/System/Runtime/Intrinsics/X86/__init__.pyi +5642 -0
  103. PySimultan2/typings/System/Runtime/Intrinsics/__init__.pyi +4504 -0
  104. PySimultan2/typings/System/Runtime/Loader/__init__.pyi +63 -0
  105. PySimultan2/typings/System/Runtime/Remoting/__init__.pyi +7 -0
  106. PySimultan2/typings/System/Runtime/Serialization/__init__.pyi +269 -0
  107. PySimultan2/typings/System/Runtime/Versioning/__init__.pyi +200 -0
  108. PySimultan2/typings/System/Runtime/__init__.pyi +141 -0
  109. PySimultan2/typings/System/Security/Cryptography/__init__.pyi +39 -0
  110. PySimultan2/typings/System/Security/Permissions/__init__.pyi +163 -0
  111. PySimultan2/typings/System/Security/Principal/__init__.pyi +45 -0
  112. PySimultan2/typings/System/Security/__init__.pyi +347 -0
  113. PySimultan2/typings/System/Text/Unicode/__init__.pyi +62 -0
  114. PySimultan2/typings/System/Text/__init__.pyi +1590 -0
  115. PySimultan2/typings/System/Threading/Tasks/Sources/__init__.pyi +76 -0
  116. PySimultan2/typings/System/Threading/Tasks/__init__.pyi +1403 -0
  117. PySimultan2/typings/System/Threading/__init__.pyi +1788 -0
  118. PySimultan2/typings/System/Xml/Schema/__init__.pyi +1255 -0
  119. PySimultan2/typings/System/Xml/Serialization/__init__.pyi +16 -0
  120. PySimultan2/typings/System/Xml/XPath/__init__.pyi +474 -0
  121. PySimultan2/typings/System/Xml/__init__.pyi +2410 -0
  122. PySimultan2/typings/System/__init__.pyi +17821 -0
  123. PySimultan2/utils.py +10 -5
  124. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/METADATA +5 -1
  125. pysimultan-0.6.0.1.dist-info/RECORD +174 -0
  126. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  127. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  128. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  129. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  130. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  131. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  132. pysimultan-0.5.9.6.dist-info/RECORD +0 -81
  133. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/WHEEL +0 -0
  134. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,616 @@
1
+ import typing, abc
2
+ from System.ComponentModel import INotifyPropertyChanged
3
+ from System.Collections.ObjectModel import ObservableCollection_1, ReadOnlyObservableCollection_1
4
+ from SIMULTAN.Projects import ProjectData
5
+ from System.Collections.Generic import Dictionary_2, List_1, IEnumerable_1
6
+ from SIMULTAN.Utils.Collections import ElectivelyObservableCollection_1, IReadonlyObservableDictionary_2
7
+ from System import ValueTuple_2, ValueTuple_3, MulticastDelegate, IAsyncResult, AsyncCallback, Exception, IEquatable_1
8
+ from System.IO import FileInfo, DirectoryInfo, FileSystemInfo
9
+ from SIMULTAN.Data.Users import SimUser, SimUserRole, SimUsersManager
10
+ from SIMULTAN.Data.Components import SimComponent, SimComponentVisibility
11
+ from System.Collections.Specialized import NotifyCollectionChangedEventArgs
12
+ from System.Reflection import MethodInfo, MethodBase
13
+ from SIMULTAN.Data.Taxonomy import SimTaxonomyEntryReferenceCollection
14
+ from System.Collections import IDictionary
15
+
16
+ class Asset(INotifyPropertyChanged, abc.ABC):
17
+ @property
18
+ def ContainedObjectId(self) -> str: ...
19
+ @ContainedObjectId.setter
20
+ def ContainedObjectId(self, value: str) -> str: ...
21
+ @property
22
+ def ReferencingComponentIds(self) -> ObservableCollection_1[int]: ...
23
+ @property
24
+ def Resource(self) -> ResourceEntry: ...
25
+ @property
26
+ def ResourceKey(self) -> int: ...
27
+ @ResourceKey.setter
28
+ def ResourceKey(self, value: int) -> int: ...
29
+ def AddReferencing(self, _id: int) -> int: ...
30
+ def GetAssetContent(self, _look_in_cache_first: bool) -> typing.Any: ...
31
+ def IsBeingReferencedBy(self, _id: int) -> bool: ...
32
+ def OpenAssetContent(self) -> typing.Any: ...
33
+ def RemoveReferencing(self, _id: int) -> int: ...
34
+ def ToString(self) -> str: ...
35
+
36
+
37
+ class AssetManager:
38
+ def __init__(self, projectData: ProjectData) -> None: ...
39
+ PATH_NOT_FOUND : str
40
+ @property
41
+ def Assets(self) -> Dictionary_2[int, ElectivelyObservableCollection_1[Asset]]: ...
42
+ @Assets.setter
43
+ def Assets(self, value: Dictionary_2[int, ElectivelyObservableCollection_1[Asset]]) -> Dictionary_2[int, ElectivelyObservableCollection_1[Asset]]: ...
44
+ @property
45
+ def MissingLinkedResources(self) -> List_1[LinkedResourceFileEntry]: ...
46
+ @property
47
+ def PathsToResourceFiles(self) -> PathsToLinkedResourcesCollection: ...
48
+ @PathsToResourceFiles.setter
49
+ def PathsToResourceFiles(self, value: PathsToLinkedResourcesCollection) -> PathsToLinkedResourcesCollection: ...
50
+ @property
51
+ def ProjectData(self) -> ProjectData: ...
52
+ @property
53
+ def Resources(self) -> ReadOnlyObservableCollection_1[ResourceEntry]: ...
54
+ @property
55
+ def WorkingDirectory(self) -> str: ...
56
+ @WorkingDirectory.setter
57
+ def WorkingDirectory(self, value: str) -> str: ...
58
+ def CanCopyResourceEntry(self, _original: ResourceEntry, _target: ResourceDirectoryEntry, copyNameFormat: str) -> ValueTuple_2[bool, str]: ...
59
+ def CanLinkAsResource(self, _file: FileInfo) -> ResourceLocationError: ...
60
+ def ContainedToLinked(self, _original: ContainedResourceFileEntry, _target: DirectoryInfo, copyNameFormat: str) -> LinkedResourceFileEntry: ...
61
+ def CopyResourceAsContainedFileEntry(self, sourceFile: FileInfo, targetDir: DirectoryInfo, copyNameFormat: str) -> ValueTuple_2[int, FileInfo]: ...
62
+ def CopyResourceEntry(self, _original: ResourceEntry, _target: ResourceDirectoryEntry, copyNameFormat: str, newOwner: SimUser = ...) -> ValueTuple_2[int, FileSystemInfo]: ...
63
+ def CreateDocumentAsset(self, Component: SimComponent, file: ResourceFileEntry, _id_contained: str) -> DocumentAsset: ...
64
+ def CreateGeometricAsset(self, componentId: int, resourceKey: int, geometryId: str) -> GeometricAsset: ...
65
+ def CreateResourceDirIn(self, _name: str, _parent: DirectoryInfo, collisionNameFormat: str) -> ValueTuple_2[int, DirectoryInfo]: ...
66
+ def DeleteResourceEntryAny(self, _to_delete: ResourceEntry) -> bool: ...
67
+ def DeleteResourceEntryPossible(self, _to_delete: ResourceEntry) -> ValueTuple_2[bool, bool]: ...
68
+ def DeleteResourceFileEntry(self, _current_full_path_to_resource: str, _name_of_resource: str) -> int: ...
69
+ def GetAllLinkedFiles(self) -> List_1[FileInfo]: ...
70
+ def GetAllResourceFiles(self, _extensions: IEnumerable_1[str], _contained: bool) -> List_1[FileInfo]: ...
71
+ def GetFileExtension(self, _key: int, _with_dot: bool = ...) -> str: ...
72
+ def GetFirstResourceWithTag(self, taxonomyKey: str, taxonomyEntryKey: str) -> ResourceFileEntry: ...
73
+ def GetKey(self, _file_name: str) -> int: ...
74
+ def GetPath(self, _key: int) -> str: ...
75
+ def GetResourceKey(self, _file: FileInfo) -> int: ...
76
+ def IsValidResourcePath(self, _fi: FileInfo, _is_contained: bool) -> bool: ...
77
+ def LinkedToContained(self, _original: LinkedResourceFileEntry, nameFormat: str) -> ContainedResourceFileEntry: ...
78
+ def OnChildResourceCollectionChanged(self, args: NotifyCollectionChangedEventArgs) -> None: ...
79
+ def OnResourceRenamed(self, oldName: str, newName: str) -> None: ...
80
+ def OnUpToDate(self) -> None: ...
81
+ def ReLinkLinkedFileEntry(self, _resource: LinkedResourceFileEntry, _new_file: FileInfo, _allow_duplicates: bool = ...) -> bool: ...
82
+ def RemoveAsset(self, _a: Asset) -> None: ...
83
+ def Reset(self) -> None: ...
84
+ def ResetLinks(self) -> None: ...
85
+ def ResourceEntryDeltedExternally(self, _to_delete: ResourceEntry) -> bool: ...
86
+ def ResourceFileEntryExists(self, file: FileInfo) -> bool: ...
87
+ def RestoreDefaultTaxonomyReferences(self) -> None: ...
88
+ def SynchronizeResources(self, _resource_files: IEnumerable_1[FileInfo], _resource_dirs: IEnumerable_1[DirectoryInfo], _create_missing: bool, _delete_superfluous: bool) -> ValueTuple_3[List_1[ResourceEntry], List_1[FileInfo], List_1[DirectoryInfo]]: ...
89
+ def UnLinkLinkedFileEntry(self, _resource: LinkedResourceFileEntry) -> None: ...
90
+ # Skipped AddResourceEntry due to it being static, abstract and generic.
91
+
92
+ AddResourceEntry : AddResourceEntry_MethodGroup
93
+ class AddResourceEntry_MethodGroup:
94
+ @typing.overload
95
+ def __call__(self, file: FileInfo) -> int:...
96
+ @typing.overload
97
+ def __call__(self, directory: ResourceDirectoryEntry) -> None:...
98
+ @typing.overload
99
+ def __call__(self, file: ResourceFileEntry, parent: ResourceDirectoryEntry) -> None:...
100
+
101
+ # Skipped GetResource due to it being static, abstract and generic.
102
+
103
+ GetResource : GetResource_MethodGroup
104
+ class GetResource_MethodGroup:
105
+ @typing.overload
106
+ def __call__(self, _key: int) -> ResourceEntry:...
107
+ @typing.overload
108
+ def __call__(self, _dir: DirectoryInfo) -> ResourceDirectoryEntry:...
109
+ @typing.overload
110
+ def __call__(self, _file: FileInfo) -> ResourceFileEntry:...
111
+
112
+ # Skipped LinkResourceAsLinkedFileEntry due to it being static, abstract and generic.
113
+
114
+ LinkResourceAsLinkedFileEntry : LinkResourceAsLinkedFileEntry_MethodGroup
115
+ class LinkResourceAsLinkedFileEntry_MethodGroup:
116
+ @typing.overload
117
+ def __call__(self, sourceFile: FileInfo, directory: ResourceDirectoryEntry) -> ResourceFileEntry:...
118
+ @typing.overload
119
+ def __call__(self, _source_file: FileInfo, _parent: DirectoryInfo, _allow_duplicates: bool = ...) -> ValueTuple_2[int, bool]:...
120
+
121
+
122
+ class ChildResourceCollectionChangedEventHandler(MulticastDelegate):
123
+ def __init__(self, object: typing.Any, method: int) -> None: ...
124
+ @property
125
+ def Method(self) -> MethodInfo: ...
126
+ @property
127
+ def Target(self) -> typing.Any: ...
128
+ def BeginInvoke(self, sender: typing.Any, args: NotifyCollectionChangedEventArgs, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
129
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
130
+ def Invoke(self, sender: typing.Any, args: NotifyCollectionChangedEventArgs) -> None: ...
131
+
132
+
133
+ class ResourceDeletedEventHandler(MulticastDelegate):
134
+ def __init__(self, object: typing.Any, method: int) -> None: ...
135
+ @property
136
+ def Method(self) -> MethodInfo: ...
137
+ @property
138
+ def Target(self) -> typing.Any: ...
139
+ def BeginInvoke(self, sender: typing.Any, entry: ResourceEntry, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
140
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
141
+ def Invoke(self, sender: typing.Any, entry: ResourceEntry) -> None: ...
142
+
143
+
144
+ class ResourceRenamedEventHandler(MulticastDelegate):
145
+ def __init__(self, object: typing.Any, method: int) -> None: ...
146
+ @property
147
+ def Method(self) -> MethodInfo: ...
148
+ @property
149
+ def Target(self) -> typing.Any: ...
150
+ def BeginInvoke(self, sender: typing.Any, oldName: str, newName: str, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
151
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
152
+ def Invoke(self, sender: typing.Any, oldName: str, newName: str) -> None: ...
153
+
154
+
155
+ class UpToDateEventHandler(MulticastDelegate):
156
+ def __init__(self, object: typing.Any, method: int) -> None: ...
157
+ @property
158
+ def Method(self) -> MethodInfo: ...
159
+ @property
160
+ def Target(self) -> typing.Any: ...
161
+ def BeginInvoke(self, sender: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
162
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
163
+ def Invoke(self, sender: typing.Any) -> None: ...
164
+
165
+
166
+
167
+ class AttemptedToAddInadmissibleEventHandler_GenericClasses(abc.ABCMeta):
168
+ Generic_AttemptedToAddInadmissibleEventHandler_GenericClasses_AttemptedToAddInadmissibleEventHandler_1_T = typing.TypeVar('Generic_AttemptedToAddInadmissibleEventHandler_GenericClasses_AttemptedToAddInadmissibleEventHandler_1_T')
169
+ def __getitem__(self, types : typing.Type[Generic_AttemptedToAddInadmissibleEventHandler_GenericClasses_AttemptedToAddInadmissibleEventHandler_1_T]) -> typing.Type[AttemptedToAddInadmissibleEventHandler_1[Generic_AttemptedToAddInadmissibleEventHandler_GenericClasses_AttemptedToAddInadmissibleEventHandler_1_T]]: ...
170
+
171
+ AttemptedToAddInadmissibleEventHandler : AttemptedToAddInadmissibleEventHandler_GenericClasses
172
+
173
+ AttemptedToAddInadmissibleEventHandler_1_T = typing.TypeVar('AttemptedToAddInadmissibleEventHandler_1_T')
174
+ class AttemptedToAddInadmissibleEventHandler_1(typing.Generic[AttemptedToAddInadmissibleEventHandler_1_T], MulticastDelegate):
175
+ def __init__(self, object: typing.Any, method: int) -> None: ...
176
+ @property
177
+ def Method(self) -> MethodInfo: ...
178
+ @property
179
+ def Target(self) -> typing.Any: ...
180
+ def BeginInvoke(self, sender: typing.Any, index: int, item: AttemptedToAddInadmissibleEventHandler_1_T, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
181
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
182
+ def Invoke(self, sender: typing.Any, index: int, item: AttemptedToAddInadmissibleEventHandler_1_T) -> None: ...
183
+
184
+
185
+ class ContainedResourceFileEntry(ResourceFileEntry):
186
+ @property
187
+ def CanBeMoved(self) -> bool: ...
188
+ @property
189
+ def CanBeRenamed(self) -> bool: ...
190
+ @property
191
+ def CurrentFullPath(self) -> str: ...
192
+ @CurrentFullPath.setter
193
+ def CurrentFullPath(self, value: str) -> str: ...
194
+ @property
195
+ def CurrentRelativePath(self) -> str: ...
196
+ @CurrentRelativePath.setter
197
+ def CurrentRelativePath(self, value: str) -> str: ...
198
+ @property
199
+ def Exists(self) -> bool: ...
200
+ @property
201
+ def Extension(self) -> str: ...
202
+ @property
203
+ def FileIsNotReallyContained(self) -> bool: ...
204
+ @FileIsNotReallyContained.setter
205
+ def FileIsNotReallyContained(self, value: bool) -> bool: ...
206
+ @property
207
+ def IsMissing(self) -> bool: ...
208
+ @IsMissing.setter
209
+ def IsMissing(self, value: bool) -> bool: ...
210
+ @property
211
+ def Key(self) -> int: ...
212
+ @property
213
+ def Name(self) -> str: ...
214
+ @Name.setter
215
+ def Name(self, value: str) -> str: ...
216
+ @property
217
+ def NameWithoutExtension(self) -> str: ...
218
+ @property
219
+ def Parent(self) -> ResourceEntry: ...
220
+ @Parent.setter
221
+ def Parent(self, value: ResourceEntry) -> ResourceEntry: ...
222
+ @property
223
+ def Tags(self) -> SimTaxonomyEntryReferenceCollection: ...
224
+ @property
225
+ def UserWithWritingAccess(self) -> SimUserRole: ...
226
+ @UserWithWritingAccess.setter
227
+ def UserWithWritingAccess(self, value: SimUserRole) -> SimUserRole: ...
228
+ @property
229
+ def Visibility(self) -> SimComponentVisibility: ...
230
+ @Visibility.setter
231
+ def Visibility(self, value: SimComponentVisibility) -> SimComponentVisibility: ...
232
+ def CanChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str) -> ValueTuple_2[bool, str]: ...
233
+ def CanChangePath(self, _new_data: FileSystemInfo, nameCollisionFormat: str) -> ValueTuple_2[bool, str]: ...
234
+ def CanReplacePath(self, _replacement_path: str) -> bool: ...
235
+ def ChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str, _check_admissibility: bool) -> None: ...
236
+ def ChangeName(self, _new_name: str, nameCollisionFormat: str) -> None: ...
237
+ def ChangePath(self, _new_data: FileSystemInfo, nameCollisionFormat: str, _check_admissibility: bool) -> None: ...
238
+
239
+
240
+ class DefaultMachineHashGenerator(IMachineHashGenerator):
241
+ def __init__(self) -> None: ...
242
+ def GetMachineHash(self) -> str: ...
243
+ def GetMachineName(self) -> str: ...
244
+ def GetUserDomainName(self) -> str: ...
245
+ def GetUserName(self) -> str: ...
246
+
247
+
248
+ class DocumentAsset(Asset):
249
+ @property
250
+ def ContainedObjectId(self) -> str: ...
251
+ @ContainedObjectId.setter
252
+ def ContainedObjectId(self, value: str) -> str: ...
253
+ @property
254
+ def ReferencingComponentIds(self) -> ObservableCollection_1[int]: ...
255
+ @property
256
+ def Resource(self) -> ResourceEntry: ...
257
+ @property
258
+ def ResourceKey(self) -> int: ...
259
+ @ResourceKey.setter
260
+ def ResourceKey(self, value: int) -> int: ...
261
+
262
+
263
+ class GeometricAsset(Asset):
264
+ @property
265
+ def ContainedObjectId(self) -> str: ...
266
+ @ContainedObjectId.setter
267
+ def ContainedObjectId(self, value: str) -> str: ...
268
+ @property
269
+ def ReferencingComponentIds(self) -> ObservableCollection_1[int]: ...
270
+ @property
271
+ def Resource(self) -> ResourceEntry: ...
272
+ @property
273
+ def ResourceKey(self) -> int: ...
274
+ @ResourceKey.setter
275
+ def ResourceKey(self, value: int) -> int: ...
276
+ def OpenAssetContent(self) -> typing.Any: ...
277
+
278
+
279
+ class IMachineHashGenerator(typing.Protocol):
280
+ @abc.abstractmethod
281
+ def GetMachineHash(self) -> str: ...
282
+
283
+
284
+ class InvalidPathException(Exception):
285
+ def __init__(self) -> None: ...
286
+ @property
287
+ def Data(self) -> IDictionary: ...
288
+ @property
289
+ def HelpLink(self) -> str: ...
290
+ @HelpLink.setter
291
+ def HelpLink(self, value: str) -> str: ...
292
+ @property
293
+ def HResult(self) -> int: ...
294
+ @HResult.setter
295
+ def HResult(self, value: int) -> int: ...
296
+ @property
297
+ def InnerException(self) -> Exception: ...
298
+ @property
299
+ def Message(self) -> str: ...
300
+ @property
301
+ def Source(self) -> str: ...
302
+ @Source.setter
303
+ def Source(self, value: str) -> str: ...
304
+ @property
305
+ def StackTrace(self) -> str: ...
306
+ @property
307
+ def TargetSite(self) -> MethodBase: ...
308
+
309
+
310
+ class LinkedResourceFileEntry(ResourceFileEntry):
311
+ @property
312
+ def CanBeMoved(self) -> bool: ...
313
+ @property
314
+ def CanBeRenamed(self) -> bool: ...
315
+ @property
316
+ def CurrentFullPath(self) -> str: ...
317
+ @CurrentFullPath.setter
318
+ def CurrentFullPath(self, value: str) -> str: ...
319
+ @property
320
+ def CurrentRelativePath(self) -> str: ...
321
+ @CurrentRelativePath.setter
322
+ def CurrentRelativePath(self, value: str) -> str: ...
323
+ @property
324
+ def Exists(self) -> bool: ...
325
+ @property
326
+ def Extension(self) -> str: ...
327
+ @property
328
+ def Key(self) -> int: ...
329
+ @property
330
+ def MoreThanOneValidPathDetected(self) -> bool: ...
331
+ @MoreThanOneValidPathDetected.setter
332
+ def MoreThanOneValidPathDetected(self, value: bool) -> bool: ...
333
+ @property
334
+ def Name(self) -> str: ...
335
+ @Name.setter
336
+ def Name(self, value: str) -> str: ...
337
+ @property
338
+ def NameWithoutExtension(self) -> str: ...
339
+ @property
340
+ def Parent(self) -> ResourceEntry: ...
341
+ @Parent.setter
342
+ def Parent(self, value: ResourceEntry) -> ResourceEntry: ...
343
+ @property
344
+ def Tags(self) -> SimTaxonomyEntryReferenceCollection: ...
345
+ @property
346
+ def UserWithWritingAccess(self) -> SimUserRole: ...
347
+ @UserWithWritingAccess.setter
348
+ def UserWithWritingAccess(self, value: SimUserRole) -> SimUserRole: ...
349
+ @property
350
+ def Visibility(self) -> SimComponentVisibility: ...
351
+ @Visibility.setter
352
+ def Visibility(self, value: SimComponentVisibility) -> SimComponentVisibility: ...
353
+ def CanChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str) -> ValueTuple_2[bool, str]: ...
354
+ def CanReplacePath(self, _replacement_path: str) -> bool: ...
355
+ def ChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str, _check_admissibility: bool) -> None: ...
356
+
357
+
358
+ class MultiLink(IEquatable_1[MultiLink]):
359
+ def __init__(self, _full_path: str) -> None: ...
360
+ @property
361
+ def IsEmpty(self) -> bool: ...
362
+ @IsEmpty.setter
363
+ def IsEmpty(self, value: bool) -> bool: ...
364
+ @property
365
+ def Representations(self) -> IReadonlyObservableDictionary_2[str, str]: ...
366
+ def AddRepresentation(self, _full_path: str) -> bool: ...
367
+ def GetHashCode(self) -> int: ...
368
+ def GetLink(self) -> str: ...
369
+ def HasPath(self, _full_path: str) -> bool: ...
370
+ def IsEquivalent(self, _other: MultiLink) -> bool: ...
371
+ def __eq__(self, _mL1: MultiLink, _mL2: MultiLink) -> bool: ...
372
+ def __ne__(self, _mL1: MultiLink, _mL2: MultiLink) -> bool: ...
373
+ def RemoveRepresentation(self, _full_path: str) -> bool: ...
374
+ # Skipped Equals due to it being static, abstract and generic.
375
+
376
+ Equals : Equals_MethodGroup
377
+ class Equals_MethodGroup:
378
+ @typing.overload
379
+ def __call__(self, _ml: MultiLink) -> bool:...
380
+ @typing.overload
381
+ def __call__(self, obj: typing.Any) -> bool:...
382
+
383
+
384
+
385
+ class MultiLinkManager:
386
+ def __init__(self) -> None: ...
387
+ @property
388
+ def Links(self) -> ObservableCollection_1[MultiLink]: ...
389
+ @Links.setter
390
+ def Links(self, value: ObservableCollection_1[MultiLink]) -> ObservableCollection_1[MultiLink]: ...
391
+ @property
392
+ def SecondaryDataManager(self) -> AssetManager: ...
393
+ @SecondaryDataManager.setter
394
+ def SecondaryDataManager(self, value: AssetManager) -> AssetManager: ...
395
+ @property
396
+ def UserEncryptionUtiliy(self) -> SimUsersManager: ...
397
+ @UserEncryptionUtiliy.setter
398
+ def UserEncryptionUtiliy(self, value: SimUsersManager) -> SimUsersManager: ...
399
+ def Clear(self) -> None: ...
400
+ def GetLinksFromAssetManager(self) -> None: ...
401
+
402
+
403
+ class PathsToLinkedResourcesCollection(ElectivelyObservableCollection_1[str]):
404
+ def __init__(self, forbiddenFolder: str) -> None: ...
405
+ @property
406
+ def Count(self) -> int: ...
407
+ @property
408
+ def ForbiddenFolder(self) -> str: ...
409
+ @ForbiddenFolder.setter
410
+ def ForbiddenFolder(self, value: str) -> str: ...
411
+ @property
412
+ def Item(self) -> str: ...
413
+ @Item.setter
414
+ def Item(self, value: str) -> str: ...
415
+ @property
416
+ def SuppressNotification(self) -> bool: ...
417
+ @SuppressNotification.setter
418
+ def SuppressNotification(self, value: bool) -> bool: ...
419
+
420
+
421
+ class ResourceDirectoryEntry(ResourceEntry):
422
+ @property
423
+ def CanBeMoved(self) -> bool: ...
424
+ @property
425
+ def CanBeRenamed(self) -> bool: ...
426
+ @property
427
+ def Children(self) -> ElectivelyObservableCollection_1[ResourceEntry]: ...
428
+ @property
429
+ def CurrentFullPath(self) -> str: ...
430
+ @CurrentFullPath.setter
431
+ def CurrentFullPath(self, value: str) -> str: ...
432
+ @property
433
+ def CurrentRelativePath(self) -> str: ...
434
+ @CurrentRelativePath.setter
435
+ def CurrentRelativePath(self, value: str) -> str: ...
436
+ @property
437
+ def Exists(self) -> bool: ...
438
+ @property
439
+ def Key(self) -> int: ...
440
+ @property
441
+ def Name(self) -> str: ...
442
+ @Name.setter
443
+ def Name(self, value: str) -> str: ...
444
+ @property
445
+ def Parent(self) -> ResourceEntry: ...
446
+ @Parent.setter
447
+ def Parent(self, value: ResourceEntry) -> ResourceEntry: ...
448
+ @property
449
+ def Tags(self) -> SimTaxonomyEntryReferenceCollection: ...
450
+ @property
451
+ def UserWithWritingAccess(self) -> SimUserRole: ...
452
+ @UserWithWritingAccess.setter
453
+ def UserWithWritingAccess(self, value: SimUserRole) -> SimUserRole: ...
454
+ @property
455
+ def Visibility(self) -> SimComponentVisibility: ...
456
+ @Visibility.setter
457
+ def Visibility(self, value: SimComponentVisibility) -> SimComponentVisibility: ...
458
+ def CanChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str) -> ValueTuple_2[bool, str]: ...
459
+ def CanChangePath(self, _new_data: FileSystemInfo, nameCollisionFormat: str) -> ValueTuple_2[bool, str]: ...
460
+ def CanReplacePath(self, _replacement_path: str) -> bool: ...
461
+ def ChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str, _check_admissibility: bool) -> None: ...
462
+ def ChangeName(self, _new_name: str, nameCollisionFormat: str) -> None: ...
463
+ def ChangePath(self, _new_data: FileSystemInfo, nameCollisionFormat: str, _check_admissibility: bool) -> None: ...
464
+ def DeepestContainingEntry(self, _dir_of_new_entry: DirectoryInfo) -> ResourceDirectoryEntry: ...
465
+ def GetContainedKeys(self) -> List_1[int]: ...
466
+ def GetFlatContainedContent(self) -> Dictionary_2[int, FileSystemInfo]: ...
467
+ def GetFlatLinks(self) -> List_1[FileInfo]: ...
468
+
469
+
470
+ class ResourceEntry(IEquatable_1[ResourceEntry], INotifyPropertyChanged, abc.ABC):
471
+ @property
472
+ def CanBeMoved(self) -> bool: ...
473
+ @property
474
+ def CanBeRenamed(self) -> bool: ...
475
+ @property
476
+ def CurrentFullPath(self) -> str: ...
477
+ @CurrentFullPath.setter
478
+ def CurrentFullPath(self, value: str) -> str: ...
479
+ @property
480
+ def CurrentRelativePath(self) -> str: ...
481
+ @CurrentRelativePath.setter
482
+ def CurrentRelativePath(self, value: str) -> str: ...
483
+ @property
484
+ def Exists(self) -> bool: ...
485
+ @property
486
+ def Key(self) -> int: ...
487
+ @property
488
+ def Name(self) -> str: ...
489
+ @Name.setter
490
+ def Name(self, value: str) -> str: ...
491
+ @property
492
+ def Parent(self) -> ResourceEntry: ...
493
+ @Parent.setter
494
+ def Parent(self, value: ResourceEntry) -> ResourceEntry: ...
495
+ @property
496
+ def Tags(self) -> SimTaxonomyEntryReferenceCollection: ...
497
+ @property
498
+ def UserWithWritingAccess(self) -> SimUserRole: ...
499
+ @UserWithWritingAccess.setter
500
+ def UserWithWritingAccess(self, value: SimUserRole) -> SimUserRole: ...
501
+ @property
502
+ def Visibility(self) -> SimComponentVisibility: ...
503
+ @Visibility.setter
504
+ def Visibility(self, value: SimComponentVisibility) -> SimComponentVisibility: ...
505
+ def CanChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str) -> ValueTuple_2[bool, str]: ...
506
+ def CanChangePath(self, _new_data: FileSystemInfo, nameCollisionFormat: str) -> ValueTuple_2[bool, str]: ...
507
+ def CanReplacePath(self, _replacement_path: str) -> bool: ...
508
+ def ChangeLocation(self, _new_location: DirectoryInfo, nameCollisionFormat: str, _check_admissibility: bool) -> None: ...
509
+ def ChangeName(self, _new_name: str, nameCollisionFormat: str) -> None: ...
510
+ def ChangePath(self, _new_data: FileSystemInfo, nameCollisionFormat: str, _check_admissibility: bool) -> None: ...
511
+ def GetHashCode(self) -> int: ...
512
+ def __eq__(self, e1: ResourceEntry, e2: ResourceEntry) -> bool: ...
513
+ def __ne__(self, e1: ResourceEntry, e2: ResourceEntry) -> bool: ...
514
+ def RestoreDefaultTaxonomyReferences(self, projectData: ProjectData) -> None: ...
515
+ def ToString(self) -> str: ...
516
+ # Skipped Equals due to it being static, abstract and generic.
517
+
518
+ Equals : Equals_MethodGroup
519
+ class Equals_MethodGroup:
520
+ @typing.overload
521
+ def __call__(self, other: ResourceEntry) -> bool:...
522
+ @typing.overload
523
+ def __call__(self, obj: typing.Any) -> bool:...
524
+
525
+
526
+ class ResourceChangedEventHandler(MulticastDelegate):
527
+ def __init__(self, object: typing.Any, method: int) -> None: ...
528
+ @property
529
+ def Method(self) -> MethodInfo: ...
530
+ @property
531
+ def Target(self) -> typing.Any: ...
532
+ def BeginInvoke(self, sender: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
533
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
534
+ def Invoke(self, sender: typing.Any) -> None: ...
535
+
536
+
537
+ class ResourceEntryDeletedEventHandler(MulticastDelegate):
538
+ def __init__(self, object: typing.Any, method: int) -> None: ...
539
+ @property
540
+ def Method(self) -> MethodInfo: ...
541
+ @property
542
+ def Target(self) -> typing.Any: ...
543
+ def BeginInvoke(self, sender: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
544
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
545
+ def Invoke(self, sender: typing.Any) -> None: ...
546
+
547
+
548
+ class ResourceEntryDeletingEventHandler(MulticastDelegate):
549
+ def __init__(self, object: typing.Any, method: int) -> None: ...
550
+ @property
551
+ def Method(self) -> MethodInfo: ...
552
+ @property
553
+ def Target(self) -> typing.Any: ...
554
+ def BeginInvoke(self, sender: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
555
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
556
+ def Invoke(self, sender: typing.Any) -> None: ...
557
+
558
+
559
+
560
+ class ResourceFileEntry(ResourceEntry):
561
+ @property
562
+ def CanBeMoved(self) -> bool: ...
563
+ @property
564
+ def CanBeRenamed(self) -> bool: ...
565
+ @property
566
+ def CurrentFullPath(self) -> str: ...
567
+ @CurrentFullPath.setter
568
+ def CurrentFullPath(self, value: str) -> str: ...
569
+ @property
570
+ def CurrentRelativePath(self) -> str: ...
571
+ @CurrentRelativePath.setter
572
+ def CurrentRelativePath(self, value: str) -> str: ...
573
+ @property
574
+ def Exists(self) -> bool: ...
575
+ @property
576
+ def Extension(self) -> str: ...
577
+ @property
578
+ def Key(self) -> int: ...
579
+ @property
580
+ def Name(self) -> str: ...
581
+ @Name.setter
582
+ def Name(self, value: str) -> str: ...
583
+ @property
584
+ def NameWithoutExtension(self) -> str: ...
585
+ @property
586
+ def Parent(self) -> ResourceEntry: ...
587
+ @Parent.setter
588
+ def Parent(self, value: ResourceEntry) -> ResourceEntry: ...
589
+ @property
590
+ def Tags(self) -> SimTaxonomyEntryReferenceCollection: ...
591
+ @property
592
+ def UserWithWritingAccess(self) -> SimUserRole: ...
593
+ @UserWithWritingAccess.setter
594
+ def UserWithWritingAccess(self, value: SimUserRole) -> SimUserRole: ...
595
+ @property
596
+ def Visibility(self) -> SimComponentVisibility: ...
597
+ @Visibility.setter
598
+ def Visibility(self, value: SimComponentVisibility) -> SimComponentVisibility: ...
599
+
600
+
601
+ class ResourceLocationError(typing.SupportsInt):
602
+ @typing.overload
603
+ def __init__(self, value : int) -> None: ...
604
+ @typing.overload
605
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
606
+ def __int__(self) -> int: ...
607
+
608
+ # Values:
609
+ OK : ResourceLocationError # 0
610
+ CONTAINED_NOT_IN_WORKING_DIR : ResourceLocationError # 1
611
+ LINKED_IN_WORKING_DIR : ResourceLocationError # 2
612
+ LINKED_NOT_IN_FALLBACKS : ResourceLocationError # 4
613
+ RESOURCE_IN_UNFAMILIAR_DIR : ResourceLocationError # 8
614
+ RESOURCE_NOT_FOUND : ResourceLocationError # 16
615
+ RESOURCE_CANNOT_BE_LOOKED_FOR : ResourceLocationError # 32
616
+