aboutsummaryrefslogtreecommitdiff
path: root/src/alertpanel.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-07-08 07:27:24 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-07-08 07:27:24 +0000
commita07b24d01ccce1cfa58e74782f8b5b05c5a7055d (patch)
tree154f9c6d11b22a587ea365677836f192b493e279 /src/alertpanel.h
parent8f85197cc2c306abc3bceee155afddf34e59f643 (diff)
modified alert dialogs.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@408 ee746299-78ed-0310-b773-934348b2243d
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,