Files
create/src/Gui/ViewProviderExtension.pyi
tritao 7cbbe403cc Gui: Convert XML bindings to Python API bindings model.
This converts the existing XML binding files to the new Python bindings
generator model.
2025-03-24 11:56:53 -05:00

25 lines
530 B
Python

from Base.Metadata import constmethod
from App.Extension import Extension
class ViewProviderExtension(Extension):
"""
Base class for all view provider extensions
Author: Werner Mayer (wmayer[at]users.sourceforge.net)
Licence: LGPL
"""
def setIgnoreOverlayIcon(self) -> None:
"""
Ignore the overlay icon of an extension
"""
...
@constmethod
def ignoreOverlayIcon(self) -> None:
"""
Ignore the overlay icon of an extension
"""
...