PySimultan 0.5.9.7__py3-none-any.whl → 0.6.0.2__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. PySimultan2/CHANGELOG.md +7 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +3 -3
  4. PySimultan2/default_types.py +46 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +2 -0
  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/utils.py +9 -4
  25. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.dist-info}/METADATA +1 -1
  26. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.dist-info}/RECORD +28 -33
  27. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  28. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  29. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  30. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  31. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  32. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  33. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.dist-info}/WHEEL +0 -0
  34. {pysimultan-0.5.9.7.dist-info → pysimultan-0.6.0.2.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>