|  |  |  | Evolution Shell Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | ||||
void e_notice (gpointer parent,GtkMessageType type,const gchar *format,...); void e_dialog_editable_set (GtkWidget *widget,const gchar *value); gchar * e_dialog_editable_get (GtkWidget *widget); void e_dialog_combo_box_set (GtkWidget *widget,gint value,const gint *value_map); gint e_dialog_combo_box_get (GtkWidget *widget,const gint *value_map);
void e_notice (gpointer parent,GtkMessageType type,const gchar *format,...);
Convenience function to show a dialog with a message and an "OK" button.
| 
 | the dialog's parent window, or NULL | 
| 
 | the type of dialog ( GTK_MESSAGE_INFO,GTK_MESSAGE_WARNING,
orGTK_MESSAGE_ERROR) | 
| 
 | printf-style format string, followed by arguments | 
| 
 | 
void e_dialog_editable_set (GtkWidget *widget,const gchar *value);
Sets the string value inside a GtkEditable-derived widget.
| 
 | A GtkEditable widget. | 
| 
 | String value. | 
gchar *             e_dialog_editable_get               (GtkWidget *widget);
Queries the string value inside a GtkEditable-derived widget.
| 
 | A GtkEditable widget. | 
| Returns : | String value. You should free it when you are done with it. This function can return NULL if the string could not be converted from GTK+'s encoding into UTF8. | 
void e_dialog_combo_box_set (GtkWidget *widget,gint value,const gint *value_map);
Sets the selected item in a GtkComboBox.  Please read the description of
e_dialog_radio_set() to see how value_map maps enumeration values to item
indices.
| 
 | A GtkComboBox. | 
| 
 | Enumerated value. | 
| 
 | Map from enumeration values to array indices. | 
gint e_dialog_combo_box_get (GtkWidget *widget,const gint *value_map);
Queries the selected item in a GtkComboBox.  Please read the description
of e_dialog_radio_set() to see how value_map maps enumeration values to item
indices.
| 
 | A GtkComboBox. | 
| 
 | Map from enumeration values to array indices. | 
| Returns : | Enumeration value which corresponds to the selected item in the combo box. |