@@ -4,15 +4,15 @@ from typing import Any, ClassVar, Literal
44from ..cmd import Command
55
66if sys .platform == "win32" :
7- from msilib import Dialog
7+ from msilib import Control , Dialog
88
99 class PyDialog (Dialog ):
1010 def __init__ (self , * args , ** kw ) -> None : ...
1111 def title (self , title ) -> None : ...
12- def back (self , title , next , name : str = "Back" , active : bool | Literal [0 , 1 ] = 1 ): ...
13- def cancel (self , title , next , name : str = "Cancel" , active : bool | Literal [0 , 1 ] = 1 ): ...
14- def next (self , title , next , name : str = "Next" , active : bool | Literal [0 , 1 ] = 1 ): ...
15- def xbutton (self , name , title , next , xpos ): ...
12+ def back (self , title , next , name : str = "Back" , active : bool | Literal [0 , 1 ] = 1 ) -> Control : ...
13+ def cancel (self , title , next , name : str = "Cancel" , active : bool | Literal [0 , 1 ] = 1 ) -> Control : ...
14+ def next (self , title , next , name : str = "Next" , active : bool | Literal [0 , 1 ] = 1 ) -> Control : ...
15+ def xbutton (self , name , title , next , xpos ) -> Control : ...
1616
1717 class bdist_msi (Command ):
1818 description : str
0 commit comments