PySimultan 0.6.1__py3-none-any.whl → 0.6.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- PySimultan2/CHANGELOG.md +7 -0
- PySimultan2/__about__.py +1 -1
- PySimultan2/data_model.py +1 -1
- PySimultan2/default_types.py +8 -3
- PySimultan2/files.py +39 -5
- PySimultan2/multi_values.py +59 -2
- PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
- PySimultan2/resources/SIMULTAN.Lang.xml +398 -21
- PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
- PySimultan2/resources/SIMULTAN.Plugins.xml +367 -0
- PySimultan2/resources/SIMULTAN.dll +0 -0
- PySimultan2/resources/SIMULTAN.xml +521 -86
- PySimultan2/utils.py +3 -2
- {pysimultan-0.6.1.dist-info → pysimultan-0.6.4.dist-info}/METADATA +4 -1
- pysimultan-0.6.4.dist-info/RECORD +50 -0
- pysimultan-0.6.4.dist-info/licenses/LICENSE.txt +29 -0
- PySimultan2/resources/AssimpNet.dll +0 -0
- PySimultan2/resources/AvalonDock.dll +0 -0
- PySimultan2/resources/BruTile.dll +0 -0
- PySimultan2/resources/ComponentBuilder.dll +0 -0
- PySimultan2/resources/ComponentBuilder.dll.config +0 -56
- PySimultan2/resources/ComponentBuilder.runtimeconfig.json +0 -19
- PySimultan2/resources/ComponentBuilder.xml +0 -19291
- PySimultan2/resources/Cyotek.Drawing.BitmapFont.dll +0 -0
- PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
- PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
- PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
- PySimultan2/resources/HelixToolkit.dll +0 -0
- PySimultan2/resources/Python.Runtime.dll +0 -0
- PySimultan2/resources/SIMULTAN.UI.dll +0 -0
- PySimultan2/resources/SIMULTAN.UI.xml +0 -16079
- PySimultan2/resources/SharpDX.D3DCompiler.dll +0 -0
- PySimultan2/resources/SharpDX.DXGI.dll +0 -0
- PySimultan2/resources/SharpDX.Direct2D1.dll +0 -0
- PySimultan2/resources/SharpDX.Direct3D11.dll +0 -0
- PySimultan2/resources/SharpDX.Direct3D9.dll +0 -0
- PySimultan2/resources/SharpDX.dll +0 -0
- PySimultan2/resources/System.Collections.Immutable.dll +0 -0
- PySimultan2/resources/System.Reflection.Metadata.dll +0 -0
- PySimultan2/resources/XAMLMarkupExtensions.dll +0 -0
- PySimultan2/resources/assimp.dll +0 -0
- PySimultan2/resources/componentmanager.user +0 -0
- PySimultan2/resources/defaultsettings.xml +0 -0
- PySimultan2/resources/setup.bat +0 -1
- pysimultan-0.6.1.dist-info/RECORD +0 -76
- pysimultan-0.6.1.dist-info/licenses/LICENSE.txt +0 -9
- {pysimultan-0.6.1.dist-info → pysimultan-0.6.4.dist-info}/WHEEL +0 -0
Binary file
|
@@ -0,0 +1,367 @@
|
|
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.PluginManager)">
|
175
|
+
<summary>
|
176
|
+
Initializes the PluginManager. Needs to be called by derived classes
|
177
|
+
</summary>
|
178
|
+
<param name="instance">The singleton instance.</param>
|
179
|
+
</member>
|
180
|
+
<member name="P:SIMULTAN.Plugins.PluginManager.PluginAssemblies">
|
181
|
+
<summary>
|
182
|
+
A list of all assemblies that are currently loaded
|
183
|
+
</summary>
|
184
|
+
</member>
|
185
|
+
<member name="P:SIMULTAN.Plugins.PluginManager.Plugins">
|
186
|
+
<summary>
|
187
|
+
A list of all plugin instances which are currently loaded
|
188
|
+
</summary>
|
189
|
+
</member>
|
190
|
+
<member name="P:SIMULTAN.Plugins.PluginManager.GeometryImporters">
|
191
|
+
<summary>
|
192
|
+
The geometry importers
|
193
|
+
</summary>
|
194
|
+
</member>
|
195
|
+
<member name="P:SIMULTAN.Plugins.PluginManager.GeometryExporters">
|
196
|
+
<summary>
|
197
|
+
The geometry exporters
|
198
|
+
</summary>
|
199
|
+
</member>
|
200
|
+
<member name="T:SIMULTAN.Plugins.PluginMetaData">
|
201
|
+
<summary>
|
202
|
+
Stores information about a plugin instance (retrieved mostly from Attributes on the Plugin type)
|
203
|
+
</summary>
|
204
|
+
</member>
|
205
|
+
<member name="P:SIMULTAN.Plugins.PluginMetaData.Name">
|
206
|
+
<summary>
|
207
|
+
The name of the plugin (or a localization key to the name)
|
208
|
+
</summary>
|
209
|
+
</member>
|
210
|
+
<member name="P:SIMULTAN.Plugins.PluginMetaData.Description">
|
211
|
+
<summary>
|
212
|
+
The description text of the plugin (or a localization key to the description)
|
213
|
+
</summary>
|
214
|
+
</member>
|
215
|
+
<member name="P:SIMULTAN.Plugins.PluginMetaData.Author">
|
216
|
+
<summary>
|
217
|
+
The author of the plugin (or a localization key to the author text)
|
218
|
+
</summary>
|
219
|
+
</member>
|
220
|
+
<member name="P:SIMULTAN.Plugins.PluginMetaData.ImageKey">
|
221
|
+
<summary>
|
222
|
+
The resource key of a XAML icon for the plugin
|
223
|
+
</summary>
|
224
|
+
</member>
|
225
|
+
<member name="P:SIMULTAN.Plugins.PluginMetaData.UpdateName">
|
226
|
+
<summary>
|
227
|
+
The name of the plugin on the update server
|
228
|
+
</summary>
|
229
|
+
</member>
|
230
|
+
<member name="P:SIMULTAN.Plugins.PluginMetaData.Version">
|
231
|
+
<summary>
|
232
|
+
The current version of the plugin
|
233
|
+
</summary>
|
234
|
+
</member>
|
235
|
+
<member name="P:SIMULTAN.Plugins.PluginMetaData.Links">
|
236
|
+
<summary>
|
237
|
+
Stores a list of links (title and uri) for the plugin
|
238
|
+
</summary>
|
239
|
+
</member>
|
240
|
+
<member name="M:SIMULTAN.Plugins.PluginMetaData.FromPlugin(SIMULTAN.Plugins.ISimPlugin,System.Reflection.Assembly)">
|
241
|
+
<summary>
|
242
|
+
Returns the meta data for a given plugin
|
243
|
+
</summary>
|
244
|
+
<param name="plugin">The plugin instance</param>
|
245
|
+
<param name="pluginAssembly">The assembly of the plugin</param>
|
246
|
+
<returns></returns>
|
247
|
+
</member>
|
248
|
+
<member name="T:SIMULTAN.Plugins.SimPluginAuthorAttribute">
|
249
|
+
<summary>
|
250
|
+
Stores the name of a plugin author
|
251
|
+
</summary>
|
252
|
+
</member>
|
253
|
+
<member name="P:SIMULTAN.Plugins.SimPluginAuthorAttribute.Name">
|
254
|
+
<summary>
|
255
|
+
The name of the author (or a localization key to the author text)
|
256
|
+
</summary>
|
257
|
+
</member>
|
258
|
+
<member name="M:SIMULTAN.Plugins.SimPluginAuthorAttribute.#ctor(System.String)">
|
259
|
+
<summary>
|
260
|
+
Initializes a new instance of the SimPluginAuthorAttribute class
|
261
|
+
</summary>
|
262
|
+
<param name="name">The name of the author (or a localization key to the author text)</param>
|
263
|
+
</member>
|
264
|
+
<member name="T:SIMULTAN.Plugins.SimPluginDescriptionAttribute">
|
265
|
+
<summary>
|
266
|
+
Stores the description of a plugin
|
267
|
+
</summary>
|
268
|
+
</member>
|
269
|
+
<member name="P:SIMULTAN.Plugins.SimPluginDescriptionAttribute.Description">
|
270
|
+
<summary>
|
271
|
+
The description of the plugin (or a localization key to the descrition text)
|
272
|
+
</summary>
|
273
|
+
</member>
|
274
|
+
<member name="M:SIMULTAN.Plugins.SimPluginDescriptionAttribute.#ctor(System.String)">
|
275
|
+
<summary>
|
276
|
+
Initializes a new instance of the SimPluginDescriptionAttribute class
|
277
|
+
</summary>
|
278
|
+
<param name="description">The description of the plugin (or a localization key to the descrition text)</param>
|
279
|
+
</member>
|
280
|
+
<member name="T:SIMULTAN.Plugins.SimPluginDisplayNameAttribute">
|
281
|
+
<summary>
|
282
|
+
Stores the display name of a plugin
|
283
|
+
</summary>
|
284
|
+
</member>
|
285
|
+
<member name="P:SIMULTAN.Plugins.SimPluginDisplayNameAttribute.Name">
|
286
|
+
<summary>
|
287
|
+
The display name of the plugin (or a localization key to the display name text)
|
288
|
+
</summary>
|
289
|
+
</member>
|
290
|
+
<member name="M:SIMULTAN.Plugins.SimPluginDisplayNameAttribute.#ctor(System.String)">
|
291
|
+
<summary>
|
292
|
+
Initializes a new instance of the SimPluginDisplayNameAttribute class
|
293
|
+
</summary>
|
294
|
+
<param name="name">The display name of the plugin (or a localization key to the display name text)</param>
|
295
|
+
</member>
|
296
|
+
<member name="T:SIMULTAN.Plugins.SimPluginLinkAttribute">
|
297
|
+
<summary>
|
298
|
+
Stores a link for the detail view of the plugin
|
299
|
+
</summary>
|
300
|
+
</member>
|
301
|
+
<member name="P:SIMULTAN.Plugins.SimPluginLinkAttribute.Title">
|
302
|
+
<summary>
|
303
|
+
The title of the Link (or a localization key to the link text)
|
304
|
+
</summary>
|
305
|
+
</member>
|
306
|
+
<member name="P:SIMULTAN.Plugins.SimPluginLinkAttribute.Uri">
|
307
|
+
<summary>
|
308
|
+
The address of the Link (or a localization key to the link uri)
|
309
|
+
</summary>
|
310
|
+
</member>
|
311
|
+
<member name="M:SIMULTAN.Plugins.SimPluginLinkAttribute.#ctor(System.String,System.String)">
|
312
|
+
<summary>
|
313
|
+
Initializes a new instance of the SimPluginLinkAttribute class
|
314
|
+
</summary>
|
315
|
+
<param name="title">The title of the Link (or a localization key to the link text)</param>
|
316
|
+
<param name="uri">The address of the Link (or a localization key to the link uri)</param>
|
317
|
+
</member>
|
318
|
+
<member name="T:SIMULTAN.Plugins.SimPluginLocalizationAssemblyAttribute">
|
319
|
+
<summary>
|
320
|
+
Stores the type of the localization assembly of a plugin
|
321
|
+
</summary>
|
322
|
+
</member>
|
323
|
+
<member name="F:SIMULTAN.Plugins.SimPluginLocalizationAssemblyAttribute.LocalizationAssembly">
|
324
|
+
<summary>
|
325
|
+
The type of the localization assembly of the plugin
|
326
|
+
</summary>
|
327
|
+
</member>
|
328
|
+
<member name="M:SIMULTAN.Plugins.SimPluginLocalizationAssemblyAttribute.#ctor(System.Type)">
|
329
|
+
<summary>
|
330
|
+
Initializes a new instance of the SimPluginDescriptionAttribute class
|
331
|
+
</summary>
|
332
|
+
<param name="localizatonAssembly">The type of the localization assembly of the plugin</param>
|
333
|
+
</member>
|
334
|
+
<member name="T:SIMULTAN.Plugins.SimPluginUpdateNameAttribute">
|
335
|
+
<summary>
|
336
|
+
Stores the update name of a plugin
|
337
|
+
</summary>
|
338
|
+
</member>
|
339
|
+
<member name="P:SIMULTAN.Plugins.SimPluginUpdateNameAttribute.Name">
|
340
|
+
<summary>
|
341
|
+
The update name of the plugin (the name of the plugin on the update server)
|
342
|
+
</summary>
|
343
|
+
</member>
|
344
|
+
<member name="M:SIMULTAN.Plugins.SimPluginUpdateNameAttribute.#ctor(System.String)">
|
345
|
+
<summary>
|
346
|
+
Initializes a new instance of the SimPluginUpdateNameAttribute class
|
347
|
+
</summary>
|
348
|
+
<param name="name">The update name of the plugin (the name of the plugin on the update server)</param>
|
349
|
+
</member>
|
350
|
+
<member name="T:SIMULTAN.Plugins.SimPluginXamlIconAttribute">
|
351
|
+
<summary>
|
352
|
+
Stores the language key of a XAML icon for a plugin
|
353
|
+
</summary>
|
354
|
+
</member>
|
355
|
+
<member name="P:SIMULTAN.Plugins.SimPluginXamlIconAttribute.Key">
|
356
|
+
<summary>
|
357
|
+
The language key of a XAML icon for a plugin
|
358
|
+
</summary>
|
359
|
+
</member>
|
360
|
+
<member name="M:SIMULTAN.Plugins.SimPluginXamlIconAttribute.#ctor(System.String)">
|
361
|
+
<summary>
|
362
|
+
Initializes a new instance of the SimPluginXamlIconAttribute class
|
363
|
+
</summary>
|
364
|
+
<param name="key">The language key of a XAML icon for a plugin</param>
|
365
|
+
</member>
|
366
|
+
</members>
|
367
|
+
</doc>
|
Binary file
|