Gui: Convert XML bindings to Python API bindings model.

This converts the existing XML binding files to the new Python bindings
generator model.
This commit is contained in:
tritao
2025-02-10 21:48:38 +00:00
committed by Chris Hennes
parent 325ae6fd9a
commit 7cbbe403cc
14 changed files with 1442 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from Base.Metadata import no_args
from ViewProviderDocumentObject import ViewProviderDocumentObject
class ViewProviderGeometryObject(ViewProviderDocumentObject):
"""
This is the ViewProvider geometry class
Author: Werner Mayer (wmayer@users.sourceforge.net)
Licence: LGPL
"""
@staticmethod
@no_args
def getUserDefinedMaterial() -> object:
"""
getUserDefinedMaterial() -> object
Get a material object with the user-defined colors.
"""
...