13 def ok(self, heading: str, message: str) -> bool:
21 def create(self, heading: str, message: str =
"") ->
None:
22 print(
"\tDIALOG created: ", heading,
" : ", message, file=sys.stderr)
25 def update(self, percent: int, message: str =
"") ->
None:
26 print(
"\tDIALOG updated %s: " % percent, message, file=sys.stderr)
37 def __init__(self, existingWindowId: int = -1) ->
None:
None create(self, str heading, str message="")
None update(self, int percent, str message="")
bool ok(self, str heading, str message)
None __init__(self, int existingWindowId=-1)