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
@@ -1,396 +0,0 @@
1
- <?xml version="1.0"?>
2
- <doc>
3
- <assembly>
4
- <name>SIMULTAN.Plugins</name>
5
- </assembly>
6
- <members>
7
- <member name="T:SIMULTAN.Plugins.ISimGeometryExporter">
8
- <summary>
9
- Interface for exporter plugins
10
- </summary>
11
- </member>
12
- <member name="P:SIMULTAN.Plugins.ISimGeometryExporter.FileDialogFilterText">
13
- <summary>
14
- The text that is displayed in the save file dialog
15
- </summary>
16
- </member>
17
- <member name="P:SIMULTAN.Plugins.ISimGeometryExporter.FileDialogFilterExtensions">
18
- <summary>
19
- The filter extensions for the save file dialog
20
- </summary>
21
- </member>
22
- <member name="M:SIMULTAN.Plugins.ISimGeometryExporter.Export(System.IO.FileInfo,SIMULTAN.Plugins.ISimGeometryExporterData)">
23
- <summary>
24
- Called when the data should be exported with this exporter
25
- </summary>
26
- <param name="file">Target file</param>
27
- <param name="data">The data to export</param>
28
- </member>
29
- <member name="T:SIMULTAN.Plugins.ISimGeometryExporterData">
30
- <summary>
31
- Data for exporter plugins
32
- </summary>
33
- </member>
34
- <member name="P:SIMULTAN.Plugins.ISimGeometryExporterData.Models">
35
- <summary>
36
- A list of all loaded GeometryModels
37
- </summary>
38
- </member>
39
- <member name="P:SIMULTAN.Plugins.ISimGeometryExporterData.MainWindow">
40
- <summary>
41
- The current mainwindow
42
- </summary>
43
- </member>
44
- <member name="T:SIMULTAN.Plugins.ISimGeometryImporter">
45
- <summary>
46
- Interface for implementing importer plugins.
47
- A importer plugin has to be assignable to IImporterPlugin and has to be attributed with the ImporterPlugin attribute
48
- </summary>
49
- </member>
50
- <member name="P:SIMULTAN.Plugins.ISimGeometryImporter.FileDialogFilterText">
51
- <summary>
52
- The text that is displayed in the open file dialog
53
- </summary>
54
- </member>
55
- <member name="P:SIMULTAN.Plugins.ISimGeometryImporter.FileDialogFilterExtensions">
56
- <summary>
57
- The filter extensions for the open file dialog
58
- </summary>
59
- </member>
60
- <member name="M:SIMULTAN.Plugins.ISimGeometryImporter.Import(System.IO.FileInfo,SIMULTAN.Plugins.ISimGeometryImporterData)">
61
- <summary>
62
- Called when a file should be imported with this importer
63
- </summary>
64
- <param name="file">The file</param>
65
- <param name="data">The accessible data from the application</param>
66
- </member>
67
- <member name="T:SIMULTAN.Plugins.ISimGeometryImporterData">
68
- <summary>
69
- Interface to access application data
70
- </summary>
71
- </member>
72
- <member name="P:SIMULTAN.Plugins.ISimGeometryImporterData.Models">
73
- <summary>
74
- Returns a list of all GeometryModels in the application
75
- </summary>
76
- </member>
77
- <member name="P:SIMULTAN.Plugins.ISimGeometryImporterData.MainWindow">
78
- <summary>
79
- Returns a reference to the MainWindow
80
- </summary>
81
- </member>
82
- <member name="P:SIMULTAN.Plugins.ISimGeometryImporterData.UndoManager">
83
- <summary>
84
- Returns the UndoManager for this Plugin
85
- </summary>
86
- </member>
87
- <member name="T:SIMULTAN.Plugins.ISimGeometryViewerPluginData">
88
- <summary>
89
- Interface for plugin data for GeometryViewer plugins
90
- </summary>
91
- </member>
92
- <member name="P:SIMULTAN.Plugins.ISimGeometryViewerPluginData.Importer">
93
- <summary>
94
- A list of all importers. Additional importers can be added here
95
- </summary>
96
- </member>
97
- <member name="P:SIMULTAN.Plugins.ISimGeometryViewerPluginData.Exporter">
98
- <summary>
99
- A list of all exporters. Additional exporters can be added here
100
- </summary>
101
- </member>
102
- <member name="T:SIMULTAN.Plugins.IPluginData">
103
- <summary>
104
- Interface for the data that gets passed to plugins
105
- </summary>
106
- </member>
107
- <member name="P:SIMULTAN.Plugins.IPluginData.CurrentProject">
108
- <summary>
109
- The opened project
110
- </summary>
111
- </member>
112
- <member name="P:SIMULTAN.Plugins.IPluginData.ProjectData">
113
- <summary>
114
- The project data
115
- </summary>
116
- </member>
117
- <member name="P:SIMULTAN.Plugins.IPluginData.MainWindow">
118
- <summary>
119
- The main window of the application
120
- </summary>
121
- </member>
122
- <member name="P:SIMULTAN.Plugins.IPluginData.Ribbon">
123
- <summary>
124
- The ribbon of the application
125
- </summary>
126
- </member>
127
- <member name="E:SIMULTAN.Plugins.IPluginData.ProjectChanged">
128
- <summary>
129
- Invoked when the current project has changed
130
- </summary>
131
- </member>
132
- <member name="P:SIMULTAN.Plugins.IPluginData.ServiceProvider">
133
- <summary>
134
- The service provider
135
- </summary>
136
- </member>
137
- <member name="P:SIMULTAN.Plugins.IPluginData.GeometryViewerPluginData">
138
- <summary>
139
- Data for GeometryViewer plugins
140
- </summary>
141
- </member>
142
- <member name="T:SIMULTAN.Plugins.ISimPlugin">
143
- <summary>
144
- Interface for Simultan Plugins
145
- </summary>
146
- </member>
147
- <member name="M:SIMULTAN.Plugins.ISimPlugin.Initialize(SIMULTAN.Plugins.IPluginData)">
148
- <summary>
149
- Called when the plugin gets loaded
150
- </summary>
151
- <param name="data">The data passed to this plugin</param>
152
- <returns>Returns True when plugin initialization finished without errors. Otherwise False</returns>
153
- </member>
154
- <member name="T:SIMULTAN.Plugins.PluginManager">
155
- <summary>
156
- Provides methods for loading and managing plugins
157
- </summary>
158
- </member>
159
- <member name="P:SIMULTAN.Plugins.PluginManager.Instance">
160
- <summary>
161
- The current instance of the plugin manager
162
- </summary>
163
- </member>
164
- <member name="P:SIMULTAN.Plugins.PluginManager.PluginDirectories">
165
- <summary>
166
- A list of all directories in which plugins are searched for
167
- </summary>
168
- </member>
169
- <member name="P:SIMULTAN.Plugins.PluginManager.DefaultPluginDirectory">
170
- <summary>
171
- The default plugin directory
172
- </summary>
173
- </member>
174
- <member name="M:SIMULTAN.Plugins.PluginManager.Initialize(SIMULTAN.Plugins.IPluginData,System.Collections.Generic.IEnumerable{System.IO.FileInfo})">
175
- <summary>
176
- Initializes the PluginManager
177
- </summary>
178
- <param name="data">The plugin data</param>
179
- <param name="ignoredPlugins">A list of plugins that should not be loaded</param>
180
- </member>
181
- <member name="P:SIMULTAN.Plugins.PluginManager.PluginAssemblies">
182
- <summary>
183
- A list of all assemblies that are currently loaded
184
- </summary>
185
- </member>
186
- <member name="P:SIMULTAN.Plugins.PluginManager.Plugins">
187
- <summary>
188
- A list of all plugin instances which are currently loaded
189
- </summary>
190
- </member>
191
- <member name="P:SIMULTAN.Plugins.PluginManager.GeometryImporters">
192
- <summary>
193
- The geometry importers
194
- </summary>
195
- </member>
196
- <member name="P:SIMULTAN.Plugins.PluginManager.GeometryExporters">
197
- <summary>
198
- The geometry exporters
199
- </summary>
200
- </member>
201
- <member name="M:SIMULTAN.Plugins.PluginManager.InitializePlugin(SIMULTAN.Plugins.ISimPlugin,System.Boolean)">
202
- <summary>
203
- Initializes a plugin
204
- </summary>
205
- <param name="plugin">The plugin to initialize</param>
206
- <param name="initialize">When set to False, only the Localization assemblies are loaded. Otherwise the plugins initialize method is called too</param>
207
- </member>
208
- <member name="M:SIMULTAN.Plugins.PluginManager.FindPlugins(System.IO.DirectoryInfo)">
209
- <summary>
210
- Searches for plugins in a given directory
211
- </summary>
212
- <param name="directory">The folder to search in</param>
213
- <returns>A list of all assemblies and plugins which are found in the folder</returns>
214
- </member>
215
- <member name="M:SIMULTAN.Plugins.PluginManager.AddPlugin(System.Reflection.Assembly,System.Collections.Generic.List{System.Type},System.Boolean)">
216
- <summary>
217
- Adds a new plugin to the manager
218
- </summary>
219
- <param name="assembly">The plugin assembly</param>
220
- <param name="pluginTypes">A list of plugin types in this assembly</param>
221
- <param name="initLocalization">When set to True, the Localization assembly gets loaded</param>
222
- </member>
223
- <member name="M:SIMULTAN.Plugins.PluginManager.RemovePlugin(System.Reflection.Assembly)">
224
- <summary>
225
- Removes a plugin from the manager. Does NOT unload the plugin from the application
226
- </summary>
227
- <param name="assembly">The plugin assembly to remove</param>
228
- </member>
229
- <member name="T:SIMULTAN.Plugins.PluginMetaData">
230
- <summary>
231
- Stores information about a plugin instance (retrieved mostly from Attributes on the Plugin type)
232
- </summary>
233
- </member>
234
- <member name="P:SIMULTAN.Plugins.PluginMetaData.Name">
235
- <summary>
236
- The name of the plugin (or a localization key to the name)
237
- </summary>
238
- </member>
239
- <member name="P:SIMULTAN.Plugins.PluginMetaData.Description">
240
- <summary>
241
- The description text of the plugin (or a localization key to the description)
242
- </summary>
243
- </member>
244
- <member name="P:SIMULTAN.Plugins.PluginMetaData.Author">
245
- <summary>
246
- The author of the plugin (or a localization key to the author text)
247
- </summary>
248
- </member>
249
- <member name="P:SIMULTAN.Plugins.PluginMetaData.ImageKey">
250
- <summary>
251
- The resource key of a XAML icon for the plugin
252
- </summary>
253
- </member>
254
- <member name="P:SIMULTAN.Plugins.PluginMetaData.UpdateName">
255
- <summary>
256
- The name of the plugin on the update server
257
- </summary>
258
- </member>
259
- <member name="P:SIMULTAN.Plugins.PluginMetaData.Version">
260
- <summary>
261
- The current version of the plugin
262
- </summary>
263
- </member>
264
- <member name="P:SIMULTAN.Plugins.PluginMetaData.Links">
265
- <summary>
266
- Stores a list of links (title and uri) for the plugin
267
- </summary>
268
- </member>
269
- <member name="M:SIMULTAN.Plugins.PluginMetaData.FromPlugin(SIMULTAN.Plugins.ISimPlugin,System.Reflection.Assembly)">
270
- <summary>
271
- Returns the meta data for a given plugin
272
- </summary>
273
- <param name="plugin">The plugin instance</param>
274
- <param name="pluginAssembly">The assembly of the plugin</param>
275
- <returns></returns>
276
- </member>
277
- <member name="T:SIMULTAN.Plugins.SimPluginAuthorAttribute">
278
- <summary>
279
- Stores the name of a plugin author
280
- </summary>
281
- </member>
282
- <member name="P:SIMULTAN.Plugins.SimPluginAuthorAttribute.Name">
283
- <summary>
284
- The name of the author (or a localization key to the author text)
285
- </summary>
286
- </member>
287
- <member name="M:SIMULTAN.Plugins.SimPluginAuthorAttribute.#ctor(System.String)">
288
- <summary>
289
- Initializes a new instance of the SimPluginAuthorAttribute class
290
- </summary>
291
- <param name="name">The name of the author (or a localization key to the author text)</param>
292
- </member>
293
- <member name="T:SIMULTAN.Plugins.SimPluginDescriptionAttribute">
294
- <summary>
295
- Stores the description of a plugin
296
- </summary>
297
- </member>
298
- <member name="P:SIMULTAN.Plugins.SimPluginDescriptionAttribute.Description">
299
- <summary>
300
- The description of the plugin (or a localization key to the descrition text)
301
- </summary>
302
- </member>
303
- <member name="M:SIMULTAN.Plugins.SimPluginDescriptionAttribute.#ctor(System.String)">
304
- <summary>
305
- Initializes a new instance of the SimPluginDescriptionAttribute class
306
- </summary>
307
- <param name="description">The description of the plugin (or a localization key to the descrition text)</param>
308
- </member>
309
- <member name="T:SIMULTAN.Plugins.SimPluginDisplayNameAttribute">
310
- <summary>
311
- Stores the display name of a plugin
312
- </summary>
313
- </member>
314
- <member name="P:SIMULTAN.Plugins.SimPluginDisplayNameAttribute.Name">
315
- <summary>
316
- The display name of the plugin (or a localization key to the display name text)
317
- </summary>
318
- </member>
319
- <member name="M:SIMULTAN.Plugins.SimPluginDisplayNameAttribute.#ctor(System.String)">
320
- <summary>
321
- Initializes a new instance of the SimPluginDisplayNameAttribute class
322
- </summary>
323
- <param name="name">The display name of the plugin (or a localization key to the display name text)</param>
324
- </member>
325
- <member name="T:SIMULTAN.Plugins.SimPluginLinkAttribute">
326
- <summary>
327
- Stores a link for the detail view of the plugin
328
- </summary>
329
- </member>
330
- <member name="P:SIMULTAN.Plugins.SimPluginLinkAttribute.Title">
331
- <summary>
332
- The title of the Link (or a localization key to the link text)
333
- </summary>
334
- </member>
335
- <member name="P:SIMULTAN.Plugins.SimPluginLinkAttribute.Uri">
336
- <summary>
337
- The address of the Link (or a localization key to the link uri)
338
- </summary>
339
- </member>
340
- <member name="M:SIMULTAN.Plugins.SimPluginLinkAttribute.#ctor(System.String,System.String)">
341
- <summary>
342
- Initializes a new instance of the SimPluginLinkAttribute class
343
- </summary>
344
- <param name="title">The title of the Link (or a localization key to the link text)</param>
345
- <param name="uri">The address of the Link (or a localization key to the link uri)</param>
346
- </member>
347
- <member name="T:SIMULTAN.Plugins.SimPluginLocalizationAssemblyAttribute">
348
- <summary>
349
- Stores the type of the localization assembly of a plugin
350
- </summary>
351
- </member>
352
- <member name="F:SIMULTAN.Plugins.SimPluginLocalizationAssemblyAttribute.LocalizationAssembly">
353
- <summary>
354
- The type of the localization assembly of the plugin
355
- </summary>
356
- </member>
357
- <member name="M:SIMULTAN.Plugins.SimPluginLocalizationAssemblyAttribute.#ctor(System.Type)">
358
- <summary>
359
- Initializes a new instance of the SimPluginDescriptionAttribute class
360
- </summary>
361
- <param name="localizatonAssembly">The type of the localization assembly of the plugin</param>
362
- </member>
363
- <member name="T:SIMULTAN.Plugins.SimPluginUpdateNameAttribute">
364
- <summary>
365
- Stores the update name of a plugin
366
- </summary>
367
- </member>
368
- <member name="P:SIMULTAN.Plugins.SimPluginUpdateNameAttribute.Name">
369
- <summary>
370
- The update name of the plugin (the name of the plugin on the update server)
371
- </summary>
372
- </member>
373
- <member name="M:SIMULTAN.Plugins.SimPluginUpdateNameAttribute.#ctor(System.String)">
374
- <summary>
375
- Initializes a new instance of the SimPluginUpdateNameAttribute class
376
- </summary>
377
- <param name="name">The update name of the plugin (the name of the plugin on the update server)</param>
378
- </member>
379
- <member name="T:SIMULTAN.Plugins.SimPluginXamlIconAttribute">
380
- <summary>
381
- Stores the language key of a XAML icon for a plugin
382
- </summary>
383
- </member>
384
- <member name="P:SIMULTAN.Plugins.SimPluginXamlIconAttribute.Key">
385
- <summary>
386
- The language key of a XAML icon for a plugin
387
- </summary>
388
- </member>
389
- <member name="M:SIMULTAN.Plugins.SimPluginXamlIconAttribute.#ctor(System.String)">
390
- <summary>
391
- Initializes a new instance of the SimPluginXamlIconAttribute class
392
- </summary>
393
- <param name="key">The language key of a XAML icon for a plugin</param>
394
- </member>
395
- </members>
396
- </doc>
@@ -1,81 +0,0 @@
1
- PySimultan2/CHANGELOG.md,sha256=oibgN_OC1p98_zVtpae5CtPZNLLnpQYd3XGIN0ztniU,484
2
- PySimultan2/__about__.py,sha256=ptvmvpFwZ_clKafeUlFFn3VFq_2wL5rI09ZmrrGMku8,21
3
- PySimultan2/__init__.py,sha256=PGVR1uhY01dF5tHyad-znURUZ_LVB95vsjId2BT0aJM,3245
4
- PySimultan2/data_model.py,sha256=QbxlCb5g2j1Ai-ZFhvstbahLPE5Ll3zaMCLgJC8uolk,37589
5
- PySimultan2/default_types.py,sha256=P43xVs8ItrxONRwq902-InUmCVXiTYerD0i-PME3KeM,27542
6
- PySimultan2/files.py,sha256=4wuTfjgOMz6BEEwUDgNmUjfHZj0PYvcuE5-LWz2UEb0,28763
7
- PySimultan2/multi_values.py,sha256=ZFXlTLuZo32x7_7diYAp2XEjp5uwgHLgNOzN7v74-5I,13650
8
- PySimultan2/object_mapper.py,sha256=_SQye38NmIr4m_-X9CuvUJnVDBmjmUDdPH2bnaxpzKY,18546
9
- PySimultan2/simultan_object.py,sha256=akaSUZZWIVfwx1wT5EdOgRR2UeShUthX-LE2Uk6w8CQ,19058
10
- PySimultan2/taxonomy_maps.py,sha256=K8lwiBkEnQkx40YZxqSJAHdqwuo6ssvkXLL_GBxVYO0,9271
11
- PySimultan2/type_setter_lookup.py,sha256=PGa5_EtV7SM15w3uxy0fA3LiQ0TaS4Ys0LYR5zs8aNk,3748
12
- PySimultan2/utils.py,sha256=0c49o3p4kTpL70ouI31Rjn1Lzu6XPK_YaX2ZHA8cqMg,66829
13
- PySimultan2/geometry/__init__.py,sha256=nJolTD1i5J8qUkOQa-r3D20aq3Co3sN31Xc0n4wJpJo,248
14
- PySimultan2/geometry/geometry_base.py,sha256=TwABfQEsqxAIGLqwvqVXEV-GA5sYGBJSJm7e58QmNzM,24015
15
- PySimultan2/geometry/utils.py,sha256=J25YsK8sso_UL7xRusItQZvyjtvxdOsSPelBQYFABhY,8519
16
- PySimultan2/resources/AssimpNet.dll,sha256=x8uwMHPRmEH9fDQihfEQLUdblM1u7RP-CCnUjOpXcLo,205312
17
- PySimultan2/resources/AvalonDock.dll,sha256=9tCcw7cpaVq0bh1H2sfcxb8EWhySmgujPs89lAqIPZs,500224
18
- PySimultan2/resources/BruTile.dll,sha256=ZiE_vovBW_CZOjDgOn8eaq_tfWRBD3-nSEk0ctBSdKI,198144
19
- PySimultan2/resources/ClosedXML.dll,sha256=dzkwJaBvIdou7SZSE5lsEART_jlnMMztEZu_jBuHp74,1198592
20
- PySimultan2/resources/ComponentBuilder.dll,sha256=h1muHkr2D3cITs39GEAlc73jPomuBT6tpuZaHYEAgg8,2304512
21
- PySimultan2/resources/ComponentBuilder.dll.config,sha256=jP5s_8OMg9085DyGtrLZcguy8etqm4ra21KwDXq1sy0,3032
22
- PySimultan2/resources/ComponentBuilder.runtimeconfig.json,sha256=YBIGLYblUb1QapC3Td-VcI9HtfEQ_6rQssb-JbeODyA,458
23
- PySimultan2/resources/ComponentBuilder.xml,sha256=5jkNgGaRzrSS2Umvcs_7vRuJqIZUc8GSKfAT0kfV4GA,1039253
24
- PySimultan2/resources/ControlzEx.dll,sha256=S26xw5MnNiIoyiCmVFbFOmUx1yx_zAyXBdDSOSidZxQ,463160
25
- PySimultan2/resources/Cyotek.Drawing.BitmapFont.dll,sha256=JG8HbAq5s796e02jB9QklO2cOyKPtHmhY6vc7KUs0OQ,41800
26
- PySimultan2/resources/DocumentFormat.OpenXml.dll,sha256=JjiBI17BpHztipV39dQdXAjhHo6Ic0xRjijJJuBQLLo,6108592
27
- PySimultan2/resources/DotSpatial.Projections.dll,sha256=dK4oFLcpUK3i6CZ3qIcX5B0npYd-W4hHJz7RJvM77ho,1541632
28
- PySimultan2/resources/ExcelNumberFormat.dll,sha256=18Rbjk4QJ4MeL8jN-UH69R0opm_qz8qqc32nMmLntQc,30720
29
- PySimultan2/resources/Fluent.dll,sha256=9b7QKKj8-Ynhe4WqSVfiP82PkxYz_kI_GXYi_KQxrEU,2598400
30
- PySimultan2/resources/HelixToolkit.Core.Wpf.dll,sha256=fja1q_EVnu7tVMh_7t-fJUEllzBjPBCCJi4XUPkqdXI,586240
31
- PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll,sha256=UKAHS0g37VbEtnEOXDaEgSH5OK6Au9edAECfWWLolIQ,613376
32
- PySimultan2/resources/HelixToolkit.SharpDX.Core.dll,sha256=rTdGZRKbcjsY-qQQDDTwwrOQRc_Nb9DpxBV_n2zfm2M,1729536
33
- PySimultan2/resources/HelixToolkit.dll,sha256=v9yR5_qsSI6PHGRrVoSrsERSHF_YF3jVAaldAYQArp8,6656
34
- PySimultan2/resources/MathNet.Numerics.dll,sha256=g7QaYI5DhAnWUg0BEk9S9XQJ4il5HA4HTjFazn2fQTQ,1600000
35
- PySimultan2/resources/Microsoft.AspNetCore.Authorization.dll,sha256=P7_HRwCqdk3q1MD7UtlAXMN_E8gZRdzme6ESGZsXHNk,49272
36
- PySimultan2/resources/Microsoft.AspNetCore.Metadata.dll,sha256=jddQwxkgfjmJ6vlXok-PbfnIquNDs6VHvspFEopiTAY,17016
37
- PySimultan2/resources/Microsoft.Extensions.DependencyInjection.Abstractions.dll,sha256=jrAm-30mcWoI54hsUTOr-RMOzHIq-zO8ZuRBVrBvCoo,43656
38
- PySimultan2/resources/Microsoft.Extensions.Logging.Abstractions.dll,sha256=7mzUlhcvGxpAVO4h_Tka7P_8IXF9ZsHkGt0fp5aufkU,63096
39
- PySimultan2/resources/Microsoft.Extensions.Options.dll,sha256=gcHJrSv1wTqvF9SyWTEKcbiShn4mkgfnm9-tRQr4OqY,60584
40
- PySimultan2/resources/Microsoft.Extensions.Primitives.dll,sha256=q4ruoDSCjV_QJY9ZkzV6uxvEvZUVrDbyUjU3SSh5SlE,41616
41
- PySimultan2/resources/Microsoft.WindowsAPICodePack.Shell.dll,sha256=VTVjKHwRDUz4rGoy8r3j4IP94wHDQky2NImHsqFhbHk,514048
42
- PySimultan2/resources/Microsoft.WindowsAPICodePack.dll,sha256=aB9FK5RWRh1onyayOe0YIuu2Qtqv7hq-HmZQH40Mk4s,103936
43
- PySimultan2/resources/Microsoft.Xaml.Behaviors.dll,sha256=j3gq16397qqTMYMGWqegvpOHq85gOOkSRV54UnsErco,145272
44
- PySimultan2/resources/Newtonsoft.Json.Bson.dll,sha256=tgbl3XemJCyh8d9xfrU9lQWuVpBDMLl1wI1PLb6MMxk,90624
45
- PySimultan2/resources/Newtonsoft.Json.dll,sha256=etsgJYQb32kqVnEuCK_nXhcwxx1keKj-1XWs1DJRpmI,639488
46
- PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll,sha256=dtErCiJG-De-0WAXbsCjaQiCMo9HxKdIj7xqQnPMCPs,25088
47
- PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config,sha256=4rhndDRQFzX7AjPtDML_7lv2-0OHxR28slhacOQuTwg,432
48
- PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll,sha256=7dqMPmwPrrCpLS69IRuVQEux8nzA-wINx1CFG0Ji5j8,16384
49
- PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config,sha256=HvbeaSHEkocT9rD29HBz5uBbH3lmvCBBwzo9DD8RGo4,706
50
- PySimultan2/resources/SIMULTAN.Lang.dll,sha256=v6CvF1yAP3Y_ZSDLM4M1neDslSEUoN2QWh7xp5eeb_w,2584576
51
- PySimultan2/resources/SIMULTAN.Lang.xml,sha256=RB5sIQdIqpqyM_b9xxRprWlOs8cr6XgeDbdk7rN6Tbg,736513
52
- PySimultan2/resources/SIMULTAN.Plugins.dll,sha256=lDyPykpM5AyhgSlU4JjZsmMqH0NjcS12zP0HFKGrwP0,18944
53
- PySimultan2/resources/SIMULTAN.Plugins.xml,sha256=TqS3AuLxIKvHWoSkodX8RKhviwm8Isz3xC3QQcOT0rs,17708
54
- PySimultan2/resources/SIMULTAN.UI.dll,sha256=_qq5w1MdpjkJMGll3osNalDilDOsVDkEadxw6I_PS-I,1216512
55
- PySimultan2/resources/SIMULTAN.UI.xml,sha256=Ot5-CtpwT6Cng0EjmlBKHkUQFlJ4SMZYlLxqLfeuDW8,833822
56
- PySimultan2/resources/SIMULTAN.dll,sha256=GuFGoqJH1m2k19Fb8K_yJGI55f_BmSBuyKY-Q51YZZs,1768448
57
- PySimultan2/resources/SIMULTAN.xml,sha256=k0ZClCQhdXKWLhRRgN94WnVl2m5w7_PPN9AMBdE-sPc,1963736
58
- PySimultan2/resources/SharpDX.D3DCompiler.dll,sha256=qyDGhqpcMo0zkNAdSdyX9sxWRxGRZq6ce4FIBXvxXSI,57856
59
- PySimultan2/resources/SharpDX.DXGI.dll,sha256=GMTsibwN7s_JG8t-ofKaJpDpKIADw2bqAnAzdLS21zI,147968
60
- PySimultan2/resources/SharpDX.Direct2D1.dll,sha256=HkRyV1YspAeY05q0E4pkFy3Hrrkd96fr9SzlmVnDekc,495616
61
- PySimultan2/resources/SharpDX.Direct3D11.dll,sha256=XBwIVxhA-_S5haBjrGlXEwWWqIg5IKcXT7fFFoJt2rE,282624
62
- PySimultan2/resources/SharpDX.Direct3D9.dll,sha256=aXAe2nQzrAAQq6QWudnCRc14aUdw1LtrdUG4O6zkHVU,338944
63
- PySimultan2/resources/SharpDX.Mathematics.dll,sha256=ajtUzW3A6l7UwfVpZgpPacGrVHHP24QZmdSyZOHOThI,215552
64
- PySimultan2/resources/SharpDX.dll,sha256=UY1FparshMs36D7iz1jFA6tqJf67jEi1MxY0DJZ-hL0,275968
65
- PySimultan2/resources/Sprache.Calc.dll,sha256=QyBWSMEL5UXootOCTzYWlAkDgGcseeVgDaw_W7K32zc,22528
66
- PySimultan2/resources/Sprache.dll,sha256=4c4dDHP9ztxaBDpgWYBUhKKkzPl5eISQimpThGZl0t8,59904
67
- PySimultan2/resources/System.Collections.Immutable.dll,sha256=YkpsmK2tsFnupt75OgF4vW0fedXRXfvGwPKONArInxk,245920
68
- PySimultan2/resources/System.Data.OleDb.dll,sha256=-AAzdmyo01QNgD9qnUIewEImplJFVNDGUlqE17qmRYA,124024
69
- PySimultan2/resources/System.Net.Http.Formatting.dll,sha256=xQBIin4YpqDObdqwau_5dr8XQEq54hlxV4gBgNtUqbc,179672
70
- PySimultan2/resources/System.Reflection.Metadata.dll,sha256=Z_vYHE6IgOvBi3DLxLhfX-v6o01lTfD0B4oW6B8IsyA,475912
71
- PySimultan2/resources/System.Reflection.MetadataLoadContext.dll,sha256=Fbu6xb2TISqYo235SFdcXBxG-0nbtA2XNftoDa4FqIA,253600
72
- PySimultan2/resources/XAMLMarkupExtensions.dll,sha256=Ck7FAAFHqSSwMtGJebfun-88OCEplWxY2YKMwlFaF84,36864
73
- PySimultan2/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- PySimultan2/resources/assimp.dll,sha256=HwfDwXqoPDTFRyoQpA3qmgZoUdFtziJkV5fNtktEZEU,6081536
75
- PySimultan2/resources/componentmanager.user,sha256=hrzr1US4pqkFnLHXcvPkvrgGd7QvlxaV8mhS6fuikEs,760
76
- PySimultan2/resources/defaultsettings.xml,sha256=s6Tk1tubLz5UYqXZWpD42EDHzedemRY1nEneoIVcUfg,392
77
- PySimultan2/resources/setup.bat,sha256=fjvvYfVM6TalS-QTSiKAbAId5nTsk8kGGo06ba-wWaY,32
78
- pysimultan-0.5.9.6.dist-info/METADATA,sha256=Y4NHrFi0t1XhhoTLncaHgMnwmFZj9FW02HrXjh7R_hI,6256
79
- pysimultan-0.5.9.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
80
- pysimultan-0.5.9.6.dist-info/licenses/LICENSE.txt,sha256=pmSr98k6N005KMojnZxzLGRuRlDjDx3PUrK1lFj53HA,1126
81
- pysimultan-0.5.9.6.dist-info/RECORD,,