Class | HIGAlertDialog | Undocumented |
Class | BaseDialog | Undocumented |
Function | messagedialog | Create and show a MessageDialog. |
Function | error | Undocumented |
Function | info | Undocumented |
Function | warning | Undocumented |
Function | yesno | Undocumented |
Function | open | No summary |
Function | selectfolder | No summary |
Function | ask_overwrite | Undocumented |
Function | save | Displays a save dialog. |
Function | password | No summary |
Function | _simple | Undocumented |
Function | _test | Undocumented |
Create and show a MessageDialog. @param dialog_type: one of constants - gtk.MESSAGE_INFO - gtk.MESSAGE_WARNING - gtk.MESSAGE_QUESTION - gtk.MESSAGE_ERROR @param short: A header text to be inserted in the dialog. @param long: A long description of message. @param parent: The parent widget of this dialog @type parent: a gtk.Window subclass @param buttons: The button type that the dialog will be display, one of the constants: - gtk.BUTTONS_NONE - gtk.BUTTONS_OK - gtk.BUTTONS_CLOSE - gtk.BUTTONS_CANCEL - gtk.BUTTONS_YES_NO - gtk.BUTTONS_OK_CANCEL or a tuple or 2-sized tuples representing label and response. If label is a stock-id a stock icon will be displayed. @param default: optional default response id
Displays an open dialog. @param title: the title of the folder, defaults to 'Select folder' @param parent: parent gtk.Window or None @param patterns: a list of pattern strings ['*.py', '*.pl'] or None @param folder: initial folder or None @param filter: a filter to use or None, is incompatible with patterns
Displays a select folder dialog. @param title: the title of the folder, defaults to 'Select folder' @param parent: parent gtk.Window or None @param folder: initial folder or None
Shows a password dialog and returns the password entered in the dialog @param primary: primary text @param secondary: secondary text @param parent: a gtk.Window subclass or None @returns: the password or None if none specified @rtype: string or None