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