Files
create/src/Gui/ViewProviderDocumentObject.pyi
2025-11-11 13:49:01 +01:00

25 lines
606 B
Python

from ViewProvider import ViewProvider
from typing import Any, Final
class ViewProviderDocumentObject(ViewProvider):
"""
This is the ViewProvider base class
Author: Werner Mayer (wmayer@users.sourceforge.net)
Licence: LGPL
"""
def update(self) -> None:
"""
Update the view representation of the object
"""
...
Object: Any = ...
"""Set/Get the associated data object"""
ForceUpdate: bool = False
"""Reference count to force update visual"""
Document: Final[Any] = ...
"""Return the document the view provider is part of"""