65
112
class GtkUIFactory(UIFactory):
72
118
"""Create a GtkUIFactory.
78
121
super(GtkUIFactory, self).__init__()
89
124
def get_boolean(self, prompt):
90
125
"""GtkDialog with yes/no answers"""
91
126
dialog = PromptDialog(prompt)
106
131
def get_password(self, prompt='', **kwargs):
107
132
"""Prompt the user for a password.