Wiki

Clone wiki

VW DLibrary / 2016 / api / dialog_predefined

MODULE dlibrary.dialog_predefined

Used for predefined dialogs. Also for use by other modules.

CLASSES

builtins.object
........Alert(builtins.object)
................PlugInFileFileNotFoundErrorAlert(Alert)
................PlugInFileOsErrorAlert(Alert)
................PlugInFilePermissionErrorAlert(Alert)
................PlugInFileVsExceptionAlert(Alert)
........AlertType(builtins.object)


class Alert(builtins.object)

__init__(self, alert_type: int, text: str, advice: str='')

show(self)


class AlertType(builtins.object)

  • CRITICAL = 0
  • INFO = 2
  • SUCCESS = 3
  • WARNING = 1

class PlugInFileFileNotFoundErrorAlert(Alert)

> Alert > builtins.object

__init__(self, filename: str)

show(self)


class PlugInFileOsErrorAlert(Alert)

> Alert > builtins.object

__init__(self, filename: str)

show(self)


class PlugInFilePermissionErrorAlert(Alert)

> Alert > builtins.object

__init__(self, filename: str)

show(self)


class PlugInFileVsExceptionAlert(Alert)

> Alert > builtins.object

__init__(self, plugin_name: str)

show(self)

FILE

d:\development\vw libraries\dlibrary\dlibrary\dialog_predefined.py

Updated