;;; burnt-toast-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*- ;; ;;; Code: (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) ;;;### (autoloads nil "burnt-toast" "burnt-toast.el" (0 0 0 0)) ;;; Generated autoloads from burnt-toast.el (autoload 'burnt-toast-submit-notification "burnt-toast" "\ Submit a new notification. CONTENT is the notification's content. Should be created with (burnt-toast-bt-content-object ...). APP-ID is an the application identifier of Emacs on Windows. UNIQUE-IDENTIFIER will be assigned to the tag and group of the notification. \(fn CONTENT &key APP-ID UNIQUE-IDENTIFIER)" nil nil) (autoload 'burnt-toast-bt-header-object "burnt-toast" "\ Create a new header for a notification. ID is an identifier for the notification. It is used to correlate the notification with others. TITLE is the display name for the notification. \(fn &key ID TITLE)" nil nil) (autoload 'burnt-toast-bt-text-object "burnt-toast" "\ Create a new text object. CONTENT is the text content. MAX-LINES is the maximum number of lines in the text object. \(fn &key CONTENT MAX-LINES)" nil nil) (autoload 'burnt-toast-bt-image-object "burnt-toast" "\ Create a new image object. SOURCE is where the image is located. APP-LOGO-OVERRIDE is non-nil if image will be used as application icon, nil otherwise. \(fn &key SOURCE APP-LOGO-OVERRIDE)" nil nil) (autoload 'burnt-toast-bt-binding-object "burnt-toast" "\ Create a new binding object. CHILDREN is the elements contained in the binding. APP-LOGO-OVERRIDE is the image to be used as the app logo. \(fn &key CHILDREN APP-LOGO-OVERRIDE)" nil nil) (autoload 'burnt-toast-bt-visual-object "burnt-toast" "\ Create a new visual object. BINDING-GENERIC is the binding associated with the visual. \(fn BINDING-GENERIC)" nil nil) (autoload 'burnt-toast-bt-content-object "burnt-toast" "\ Create a new content object. VISUAL is the visual associated with the content. AUDIO is an optional audio object to play. \(fn VISUAL &key AUDIO)" nil nil) (autoload 'burnt-toast-bt-audio-object "burnt-toast" "\ Create a new audio object. SOURCE is the audio's source. \(fn SOURCE)" nil nil) (autoload 'burnt-toast-datetime-seconds-from-now "burnt-toast" "\ Return the DateTime SECONDS from now. \(fn SECONDS)" nil nil) (autoload 'burnt-toast-new-notification-with-sound "burnt-toast" "\ Create a new notification. TEXT is the content of the notification. This can be a list of strings, in which case each entry is a new line. APP-LOGO is a path to an icon to be displayed with the notification. SOUND is the sound effect to play. HEADER is the notification's header. This should be created with (burnt-toast-bt-header-object ID HEADER). UNIQUE-IDENTIFIER a unique identifier that can be used to remove/edit the notification. EXPIRATION-TIME DateTime for notification to expire. This should be created with (burnt-toast-datetime-seconds-from-now SECONDS). \(fn &key TEXT APP-LOGO SOUND HEADER UNIQUE-IDENTIFIER EXPIRATION-TIME)" nil nil) (autoload 'burnt-toast-new-notification-silent "burnt-toast" "\ Create a new silent notification. TEXT is the content of the notification. This can be a list of strings, in which case each entry is a new line. APP-LOGO is a path to an icon to be displayed with the notification. HEADER is the notification's header. This should be created with (burnt-toast-bt-header-object ID HEADER). UNIQUE-IDENTIFIER a unique identifier that can be used to remove/edit the notification. EXPIRATION-TIME DateTime for notification to expire. This should be created with (burnt-toast-datetime-seconds-from-now SECONDS). \(fn &key TEXT APP-LOGO HEADER UNIQUE-IDENTIFIER EXPIRATION-TIME)" nil nil) (autoload 'burnt-toast-new-notification-snooze-and-dismiss-with-sound "burnt-toast" "\ Create a new snooze-and-dismiss notification. TEXT is the content of the notification. This can be a list of strings, in which case each entry is a new line. APP-LOGO is a path to an icon to be displayed with the notification. HEADER is the notification's header. This should be created with (burnt-toast-bt-header-object ID HEADER). SOUND is the sound effect to play. UNIQUE-IDENTIFIER a unique identifier that can be used to remove/edit the notification. EXPIRATION-TIME DateTime for notification to expire. This should be created with (burnt-toast-datetime-seconds-from-now SECONDS). \(fn &key TEXT APP-LOGO HEADER SOUND UNIQUE-IDENTIFIER EXPIRATION-TIME)" nil nil) (autoload 'burnt-toast-new-notification-snooze-and-dismiss-silent "burnt-toast" "\ Create a new silent snooze-and-dismiss notification. TEXT is the content of the notification. This can be a list of strings, in which case each entry is a new line. APP-LOGO is a path to an icon to be displayed with the notification. HEADER is the notification's header. This should be created with (burnt-toast-bt-header-object ID HEADER). UNIQUE-IDENTIFIER a unique identifier that can be used to remove/edit the notification. EXPIRATION-TIME DateTime for notification to expire. This should be created with (burnt-toast-datetime-seconds-from-now SECONDS). \(fn &key TEXT APP-LOGO HEADER UNIQUE-IDENTIFIER EXPIRATION-TIME)" nil nil) (autoload 'burnt-toast-new-shoulder-tap "burnt-toast" "\ Create a new shoulder tap notification. IMAGE is the image representing the contact. PERSON is the name of the contact. TEXT is the content of the fallback notification. This can be a list of strings, in which case each entry is a new line. APP-LOGO is a path to an icon to be displayed with the fallback notification. HEADER is the fallback notification's header. This should be created with (burnt-toast-bt-header-object ID HEADER). EXPIRATION-TIME DateTime for notification to expire. This should be created with (burnt-toast-datetime-seconds-from-now SECONDS). \(fn IMAGE PERSON &key TEXT APP-LOGO HEADER EXPIRATION-TIME)" nil nil) (register-definition-prefixes "burnt-toast" '("burnt-toast-")) ;;;*** ;;;### (autoloads nil "burnt-toast-alert" "burnt-toast-alert.el" ;;;;;; (0 0 0 0)) ;;; Generated autoloads from burnt-toast-alert.el (register-definition-prefixes "burnt-toast-alert" '("burnt-toast-")) ;;;*** ;;;### (autoloads nil nil ("burnt-toast-pkg.el") (0 0 0 0)) ;;;*** ;; Local Variables: ;; version-control: never ;; no-byte-compile: t ;; no-update-autoloads: t ;; coding: utf-8 ;; End: ;;; burnt-toast-autoloads.el ends here