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