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