aboutsummaryrefslogtreecommitdiff
path: root/src/alertpanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/alertpanel.h')
-rw-r--r--src/alertpanel.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/alertpanel.h b/src/alertpanel.h
index 3e03323b..ac8e2eb9 100644
--- a/src/alertpanel.h
+++ b/src/alertpanel.h
@@ -43,11 +43,20 @@ typedef enum
ALERT_ERROR
} AlertType;
-AlertValue alertpanel (const gchar *title,
- const gchar *message,
- const gchar *button1_label,
- const gchar *button2_label,
- const gchar *button3_label);
+AlertValue alertpanel_full (const gchar *title,
+ const gchar *message,
+ AlertType type,
+ AlertValue default_value,
+ gboolean can_disable,
+ const gchar *button1_label,
+ const gchar *button2_label,
+ const gchar *button3_label);
+
+AlertValue alertpanel (const gchar *title,
+ const gchar *message,
+ const gchar *button1_label,
+ const gchar *button2_label,
+ const gchar *button3_label);
void alertpanel_message (const gchar *title,
const gchar *message,