diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-12-19 07:22:36 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-12-19 07:22:36 +0800 |
commit | b265717d397e190684652329e6fd28e7ae482a0d (patch) | |
tree | 900f5162f15ef8c65be7c80a4d1cc020b15441a7 /mail/mail-config.h | |
parent | 6fe06db13a319b36aa16d1c41e0dadd426ea5034 (diff) | |
download | gsoc2013-evolution-b265717d397e190684652329e6fd28e7ae482a0d.tar.gz gsoc2013-evolution-b265717d397e190684652329e6fd28e7ae482a0d.tar.zst gsoc2013-evolution-b265717d397e190684652329e6fd28e7ae482a0d.zip |
Setup the new-mail-notification widgets. (notify_command_changed): Update
2001-12-18 Jeffrey Stedfast <fejj@ximian.com>
* mail-accounts.c (construct): Setup the new-mail-notification
widgets.
(notify_command_changed): Update the command-line for new mail
notification.
(notify_radio_toggled): Update the new-mail-notification type.
* mail-ops.c (filter_folder_free): See if we got any new mail and
"sound the alarm" if we did.
svn path=/trunk/; revision=15168
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r-- | mail/mail-config.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h index 82f863dba3..c54fef4eba 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -88,10 +88,10 @@ typedef enum { } MailConfigDisplayStyle; typedef enum { - MAIL_CONFIG_NEW_MAIL_NOTIFICATION_NONE, - MAIL_CONFIG_NEW_MAIL_NOTIFICATION_BEEP, - MAIL_CONFIG_NEW_MAIL_NOTIFICATION_COMMAND, -} MailConfigNewMailNotification; + MAIL_CONFIG_NOTIFY_NOT, + MAIL_CONFIG_NOTIFY_BEEP, + MAIL_CONFIG_NOTIFY_EXEC, +} MailConfigNewMailNotify; /* Identities */ MailConfigIdentity *identity_copy (const MailConfigIdentity *id); @@ -181,10 +181,10 @@ void mail_config_set_default_forward_style (MailConfigForwardS MailConfigDisplayStyle mail_config_get_message_display_style (void); void mail_config_set_message_display_style (MailConfigDisplayStyle style); -MailConfigNewMailNotification mail_config_get_new_mail_notification (void); -void mail_config_set_new_mail_notification (MailConfigNewMailNotification type); -const char *mail_config_get_new_mail_notification_command (void); -void mail_config_set_new_mail_notification_command (const char *command); +MailConfigNewMailNotify mail_config_get_new_mail_notify (void); +void mail_config_set_new_mail_notify (MailConfigNewMailNotify type); +const char *mail_config_get_new_mail_notify_command (void); +void mail_config_set_new_mail_notify_command (const char *command); const char *mail_config_get_default_charset (void); void mail_config_set_default_charset (const char *charset); |