popon-autoloads.el (3348B)
1 ;;; popon-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- 2 ;; Generated by the `loaddefs-generate' function. 3 4 ;; This file is part of GNU Emacs. 5 6 ;;; Code: 7 8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path))) 9 10 11 12 ;;; Generated autoloads from popon.el 13 14 (autoload 'poponp "popon" "\ 15 Return t if OBJECT is a popon. 16 17 (fn OBJECT)") 18 (autoload 'popon-live-p "popon" "\ 19 Return t if OBJECT is a popon and not killed. 20 21 (fn OBJECT)") 22 (autoload 'popon-get "popon" "\ 23 Get the PROP property of popon POPON. 24 25 (fn POPON PROP)") 26 (autoload 'popon-put "popon" "\ 27 Set the PROP property of popon POPON to VALUE. 28 29 (fn POPON PROP VALUE)") 30 (autoload 'popon-properties "popon" "\ 31 Return a copy the property list of popon POPON. 32 33 (fn POPON)") 34 (autoload 'popon-position "popon" "\ 35 Return the position of popon POPON as a cons (X, Y). 36 37 When popon POPON is killed, return nil. 38 39 (fn POPON)") 40 (autoload 'popon-size "popon" "\ 41 Return the size of popon POPON as a cons (WIDTH . HEIGHT). 42 43 When popon POPON is killed, return nil. 44 45 (fn POPON)") 46 (autoload 'popon-window "popon" "\ 47 Return the window popon POPON belongs to. 48 49 Return nil if popon POPON is killed. 50 51 (fn POPON)") 52 (autoload 'popon-buffer "popon" "\ 53 Return the buffer popon POPON belongs to. 54 55 Return nil if popon POPON is killed. 56 57 (fn POPON)") 58 (autoload 'popon-text "popon" "\ 59 Return the text popon POPON is displaying. 60 61 POPON may be a killed popon. Return nil if POPON isn't a popon at 62 all. 63 64 (fn POPON)") 65 (autoload 'popon-create "popon" "\ 66 Create a popon showing TEXT at POS of WINDOW. 67 68 Display popon only if WINDOW is displaying BUFFER. 69 70 POS is a cons (X, Y), where X is column and Y is line in WINDOW. TEXT 71 should be a string or a cons cell of form (STR . WIDTH). When TEXT is 72 a string, each line of it should be of same length (i.e `string-width' 73 should return the same length for every line). When TEXT is a cons 74 cell, STR is used as the text to display and each line of it should be 75 of visual length width. 76 77 PRIORITY is a number (integer or float) between -100 and 100. Popons 78 with larger priority values are rendered first. 79 80 (fn TEXT POS &optional WINDOW BUFFER PRIORITY)") 81 (autoload 'popon-kill "popon" "\ 82 Kill popon POPON. 83 84 Do nothing if POPON isn't a live popon. Return nil. 85 86 (fn POPON)") 87 (autoload 'popon-redisplay "popon" "\ 88 Redisplay popon overlays.") 89 (autoload 'popon-update "popon" "\ 90 Update popons if needed.") 91 (autoload 'popon-x-y-at-posn "popon" "\ 92 Return the (X, Y) coodinate at position POSN as a cons. 93 94 Return nil if a popon can't be shown at position POSN. 95 96 NOTE: This uses `posn-at-point', which is slow. So try to minimize 97 calls to this function. 98 99 (fn POSN)") 100 (autoload 'popon-x-y-at-pos "popon" "\ 101 Return the (X, Y) coodinate of POINT in selected window as a cons. 102 103 Return nil if POINT is not in visible text area. 104 105 NOTE: This uses `posn-at-point', which is slow. So try to minimize 106 calls to this function. 107 108 (fn POINT)") 109 (autoload 'popon-kill-all "popon" "\ 110 Kill all popons." t) 111 (register-definition-prefixes "popon" '("popon-")) 112 113 ;;; End of scraped data 114 115 (provide 'popon-autoloads) 116 117 ;; Local Variables: 118 ;; version-control: never 119 ;; no-byte-compile: t 120 ;; no-update-autoloads: t 121 ;; no-native-compile: t 122 ;; coding: utf-8-emacs-unix 123 ;; End: 124 125 ;;; popon-autoloads.el ends here