25 lines
530 B
Python
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
|
|
"""
|
|
...
|