org-compat.el 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. ;;; org-compat.el --- Compatibility code for Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
  3. ;; Free Software Foundation, Inc.
  4. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  5. ;; Keywords: outlines, hypermedia, calendar, wp
  6. ;; Homepage: http://orgmode.org
  7. ;; Version: 6.36trans
  8. ;;
  9. ;; This file is part of GNU Emacs.
  10. ;;
  11. ;; GNU Emacs is free software: you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation, either version 3 of the License, or
  14. ;; (at your option) any later version.
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. ;; GNU General Public License for more details.
  19. ;; You should have received a copy of the GNU General Public License
  20. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  21. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  22. ;;
  23. ;;; Commentary:
  24. ;; This file contains code needed for compatibility with XEmacs and older
  25. ;; versions of GNU Emacs.
  26. ;;; Code:
  27. (eval-when-compile
  28. (require 'cl))
  29. (require 'org-macs)
  30. (declare-function find-library-name "find-func" (library))
  31. (declare-function w32-focus-frame "term/w32-win" (frame))
  32. ;; The following constant is for backward compatibility. We do not use
  33. ;; it in org-mode, because the Byte compiler evaluates (featurep 'xemacs)
  34. ;; at compilation time and can therefore optimize code better.
  35. (defconst org-xemacs-p (featurep 'xemacs))
  36. (defconst org-format-transports-properties-p
  37. (let ((x "a"))
  38. (add-text-properties 0 1 '(test t) x)
  39. (get-text-property 0 'test (format "%s" x)))
  40. "Does format transport text properties?")
  41. (defun org-compatible-face (inherits specs)
  42. "Make a compatible face specification.
  43. If INHERITS is an existing face and if the Emacs version supports it,
  44. just inherit the face. If INHERITS is set and the Emacs version does
  45. not support it, copy the face specification from the inheritance face.
  46. If INHERITS is not given and SPECS is, use SPECS to define the face.
  47. XEmacs and Emacs 21 do not know about the `min-colors' attribute.
  48. For them we convert a (min-colors 8) entry to a `tty' entry and move it
  49. to the top of the list. The `min-colors' attribute will be removed from
  50. any other entries, and any resulting duplicates will be removed entirely."
  51. (when (and inherits (facep inherits) (not specs))
  52. (setq specs (or specs
  53. (get inherits 'saved-face)
  54. (get inherits 'face-defface-spec))))
  55. (cond
  56. ((and inherits (facep inherits)
  57. (not (featurep 'xemacs))
  58. (>= emacs-major-version 22)
  59. ;; do not inherit outline faces before Emacs 23
  60. (or (>= emacs-major-version 23)
  61. (not (string-match "\\`outline-[0-9]+"
  62. (symbol-name inherits)))))
  63. (list (list t :inherit inherits)))
  64. ((or (featurep 'xemacs) (< emacs-major-version 22))
  65. ;; These do not understand the `min-colors' attribute.
  66. (let (r e a)
  67. (while (setq e (pop specs))
  68. (cond
  69. ((memq (car e) '(t default)) (push e r))
  70. ((setq a (member '(min-colors 8) (car e)))
  71. (nconc r (list (cons (cons '(type tty) (delq (car a) (car e)))
  72. (cdr e)))))
  73. ((setq a (assq 'min-colors (car e)))
  74. (setq e (cons (delq a (car e)) (cdr e)))
  75. (or (assoc (car e) r) (push e r)))
  76. (t (or (assoc (car e) r) (push e r)))))
  77. (nreverse r)))
  78. (t specs)))
  79. (put 'org-compatible-face 'lisp-indent-function 1)
  80. (defun org-version-check (version feature level)
  81. (let* ((v1 (mapcar 'string-to-number (split-string version "[.]")))
  82. (v2 (mapcar 'string-to-number (split-string emacs-version "[.]")))
  83. (rmaj (or (nth 0 v1) 99))
  84. (rmin (or (nth 1 v1) 99))
  85. (rbld (or (nth 2 v1) 99))
  86. (maj (or (nth 0 v2) 0))
  87. (min (or (nth 1 v2) 0))
  88. (bld (or (nth 2 v2) 0)))
  89. (if (or (< maj rmaj)
  90. (and (= maj rmaj)
  91. (< min rmin))
  92. (and (= maj rmaj)
  93. (= min rmin)
  94. (< bld rbld)))
  95. (if (eq level :predicate)
  96. ;; just return if we have the version
  97. nil
  98. (let ((msg (format "Emacs %s or greater is recommended for %s"
  99. version feature)))
  100. (display-warning 'org msg level)
  101. t))
  102. t)))
  103. ;;;; Emacs/XEmacs compatibility
  104. ;; Keys
  105. (defconst org-xemacs-key-equivalents
  106. '(([mouse-1] . [button1])
  107. ([mouse-2] . [button2])
  108. ([mouse-3] . [button3])
  109. ([C-mouse-4] . [(control mouse-4)])
  110. ([C-mouse-5] . [(control mouse-5)]))
  111. "Translation alist for a couple of keys")
  112. ;; Overlay compatibility functions
  113. (defun org-detach-overlay (ovl)
  114. (if (featurep 'xemacs) (detach-extent ovl) (delete-overlay ovl)))
  115. (defun org-overlay-display (ovl text &optional face evap)
  116. "Make overlay OVL display TEXT with face FACE."
  117. (if (featurep 'xemacs)
  118. (let ((gl (make-glyph text)))
  119. (and face (set-glyph-face gl face))
  120. (set-extent-property ovl 'invisible t)
  121. (set-extent-property ovl 'end-glyph gl))
  122. (overlay-put ovl 'display text)
  123. (if face (overlay-put ovl 'face face))
  124. (if evap (overlay-put ovl 'evaporate t))))
  125. (defun org-overlay-before-string (ovl text &optional face evap)
  126. "Make overlay OVL display TEXT with face FACE."
  127. (if (featurep 'xemacs)
  128. (let ((gl (make-glyph text)))
  129. (and face (set-glyph-face gl face))
  130. (set-extent-property ovl 'begin-glyph gl))
  131. (if face (org-add-props text nil 'face face))
  132. (overlay-put ovl 'before-string text)
  133. (if evap (overlay-put ovl 'evaporate t))))
  134. (defun org-find-overlays (prop &optional pos delete)
  135. "Find all overlays specifying PROP at POS or point.
  136. If DELETE is non-nil, delete all those overlays."
  137. (let ((overlays (overlays-at (or pos (point))))
  138. ov found)
  139. (while (setq ov (pop overlays))
  140. (if (overlay-get ov prop)
  141. (if delete (delete-overlay ov) (push ov found))))
  142. found))
  143. (defun org-get-x-clipboard (value)
  144. "Get the value of the x clipboard, compatible with XEmacs, and GNU Emacs 21."
  145. (if (eq window-system 'x)
  146. (let ((x (org-get-x-clipboard-compat value)))
  147. (if x (org-no-properties x)))))
  148. ;; Miscellaneous functions
  149. (defun org-add-hook (hook function &optional append local)
  150. "Add-hook, compatible with both Emacsen."
  151. (if (and local (featurep 'xemacs))
  152. (add-local-hook hook function append)
  153. (add-hook hook function append local)))
  154. (defun org-add-props (string plist &rest props)
  155. "Add text properties to entire string, from beginning to end.
  156. PLIST may be a list of properties, PROPS are individual properties and values
  157. that will be added to PLIST. Returns the string that was modified."
  158. (add-text-properties
  159. 0 (length string) (if props (append plist props) plist) string)
  160. string)
  161. (put 'org-add-props 'lisp-indent-function 2)
  162. (defun org-fit-window-to-buffer (&optional window max-height min-height
  163. shrink-only)
  164. "Fit WINDOW to the buffer, but only if it is not a side-by-side window.
  165. WINDOW defaults to the selected window. MAX-HEIGHT and MIN-HEIGHT are
  166. passed through to `fit-window-to-buffer'. If SHRINK-ONLY is set, call
  167. `shrink-window-if-larger-than-buffer' instead, the hight limit are
  168. ignored in this case."
  169. (cond ((if (fboundp 'window-full-width-p)
  170. (not (window-full-width-p window))
  171. (> (frame-width) (window-width window)))
  172. ;; do nothing if another window would suffer
  173. )
  174. ((and (fboundp 'fit-window-to-buffer) (not shrink-only))
  175. (fit-window-to-buffer window max-height min-height))
  176. ((fboundp 'shrink-window-if-larger-than-buffer)
  177. (shrink-window-if-larger-than-buffer window)))
  178. (or window (selected-window)))
  179. ;; Region compatibility
  180. (defvar org-ignore-region nil
  181. "To temporarily disable the active region.")
  182. (defun org-region-active-p ()
  183. "Is `transient-mark-mode' on and the region active?
  184. Works on both Emacs and XEmacs."
  185. (if org-ignore-region
  186. nil
  187. (if (featurep 'xemacs)
  188. (and zmacs-regions (region-active-p))
  189. (if (fboundp 'use-region-p)
  190. (use-region-p)
  191. (and transient-mark-mode mark-active))))) ; Emacs 22 and before
  192. (defun org-cursor-to-region-beginning ()
  193. (when (and (org-region-active-p)
  194. (> (point) (region-beginning)))
  195. (exchange-point-and-mark)))
  196. ;; Invisibility compatibility
  197. (defun org-remove-from-invisibility-spec (arg)
  198. "Remove elements from `buffer-invisibility-spec'."
  199. (if (fboundp 'remove-from-invisibility-spec)
  200. (remove-from-invisibility-spec arg)
  201. (if (consp buffer-invisibility-spec)
  202. (setq buffer-invisibility-spec
  203. (delete arg buffer-invisibility-spec)))))
  204. (defun org-in-invisibility-spec-p (arg)
  205. "Is ARG a member of `buffer-invisibility-spec'?"
  206. (if (consp buffer-invisibility-spec)
  207. (member arg buffer-invisibility-spec)
  208. nil))
  209. (defmacro org-xemacs-without-invisibility (&rest body)
  210. "Turn off exents with invisibility while executing BODY."
  211. `(let ((ext-inv (extent-list nil (point-at-bol) (point-at-eol)
  212. 'all-extents-closed-open 'invisible))
  213. ext-inv-specs)
  214. (dolist (ext ext-inv)
  215. (when (extent-property ext 'invisible)
  216. (add-to-list 'ext-inv-specs (list ext (extent-property
  217. ext 'invisible)))
  218. (set-extent-property ext 'invisible nil)))
  219. ,@body
  220. (dolist (ext-inv-spec ext-inv-specs)
  221. (set-extent-property (car ext-inv-spec) 'invisible
  222. (cadr ext-inv-spec)))))
  223. (defun org-indent-to-column (column &optional minimum buffer)
  224. "Work around a bug with extents with invisibility in XEmacs."
  225. (if (featurep 'xemacs)
  226. (org-xemacs-without-invisibility (indent-to-column column minimum buffer))
  227. (indent-to-column column minimum)))
  228. (defun org-indent-line-to (column)
  229. "Work around a bug with extents with invisibility in XEmacs."
  230. (if (featurep 'xemacs)
  231. (org-xemacs-without-invisibility (indent-line-to column))
  232. (indent-line-to column)))
  233. (defun org-move-to-column (column &optional force buffer)
  234. (if (featurep 'xemacs)
  235. (org-xemacs-without-invisibility (move-to-column column force buffer))
  236. (move-to-column column force)))
  237. (defun org-get-x-clipboard-compat (value)
  238. "Get the clipboard value on XEmacs or Emacs 21"
  239. (cond ((featurep 'xemacs)
  240. (org-no-warnings (get-selection-no-error value)))
  241. ((fboundp 'x-get-selection)
  242. (condition-case nil
  243. (or (x-get-selection value 'UTF8_STRING)
  244. (x-get-selection value 'COMPOUND_TEXT)
  245. (x-get-selection value 'STRING)
  246. (x-get-selection value 'TEXT))
  247. (error nil)))))
  248. (defun org-propertize (string &rest properties)
  249. (if (featurep 'xemacs)
  250. (progn
  251. (add-text-properties 0 (length string) properties string)
  252. string)
  253. (apply 'propertize string properties)))
  254. (defun org-substring-no-properties (string &optional from to)
  255. (if (featurep 'xemacs)
  256. (org-no-properties (substring string (or from 0) to))
  257. (substring-no-properties string from to)))
  258. (defun org-find-library-name (library)
  259. (if (fboundp 'find-library-name)
  260. (file-name-directory (find-library-name library))
  261. ; XEmacs does not have `find-library-name'
  262. (flet ((find-library-name-helper (filename ignored-codesys)
  263. filename)
  264. (find-library-name (library)
  265. (find-library library nil 'find-library-name-helper)))
  266. (file-name-directory (find-library-name library)))))
  267. (defun org-count-lines (s)
  268. "How many lines in string S?"
  269. (let ((start 0) (n 1))
  270. (while (string-match "\n" s start)
  271. (setq start (match-end 0) n (1+ n)))
  272. (if (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
  273. (setq n (1- n)))
  274. n))
  275. (defun org-kill-new (string &rest args)
  276. (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
  277. string)
  278. (apply 'kill-new string args))
  279. (defun org-select-frame-set-input-focus (frame)
  280. "Select FRAME, raise it, and set input focus, if possible."
  281. (cond ((featurep 'xemacs)
  282. (if (fboundp 'select-frame-set-input-focus)
  283. (select-frame-set-input-focus frame)
  284. (raise-frame frame)
  285. (select-frame frame)
  286. (focus-frame frame)))
  287. ;; `select-frame-set-input-focus' defined in Emacs 21 will not
  288. ;; set the input focus.
  289. ((>= emacs-major-version 22)
  290. (select-frame-set-input-focus frame))
  291. (t
  292. (raise-frame frame)
  293. (select-frame frame)
  294. (cond ((memq window-system '(x ns mac))
  295. (x-focus-frame frame))
  296. ((eq window-system 'w32)
  297. (w32-focus-frame frame)))
  298. (when focus-follows-mouse
  299. (set-mouse-position frame (1- (frame-width frame)) 0)))))
  300. (defun org-float-time (&optional time)
  301. "Convert time value TIME to a floating point number.
  302. TIME defaults to the current time."
  303. (if (featurep 'xemacs)
  304. (time-to-seconds (or time (current-time)))
  305. (float-time time)))
  306. (defun org-string-match-p (&rest args)
  307. (if (fboundp 'string-match-p)
  308. (apply 'string-match-p args)
  309. (save-match-data
  310. (apply 'string-match args))))
  311. (defun org-looking-at-p (&rest args)
  312. (if (fboundp 'looking-at-p)
  313. (apply 'looking-at-p args)
  314. (save-match-data
  315. (apply 'looking-at-p args))))
  316. ; XEmacs does not have `looking-back'.
  317. (if (fboundp 'looking-back)
  318. (defalias 'org-looking-back 'looking-back)
  319. (defun org-looking-back (regexp &optional limit greedy)
  320. "Return non-nil if text before point matches regular expression REGEXP.
  321. Like `looking-at' except matches before point, and is slower.
  322. LIMIT if non-nil speeds up the search by specifying a minimum
  323. starting position, to avoid checking matches that would start
  324. before LIMIT.
  325. If GREEDY is non-nil, extend the match backwards as far as
  326. possible, stopping when a single additional previous character
  327. cannot be part of a match for REGEXP. When the match is
  328. extended, its starting position is allowed to occur before
  329. LIMIT."
  330. (let ((start (point))
  331. (pos
  332. (save-excursion
  333. (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
  334. (point)))))
  335. (if (and greedy pos)
  336. (save-restriction
  337. (narrow-to-region (point-min) start)
  338. (while (and (> pos (point-min))
  339. (save-excursion
  340. (goto-char pos)
  341. (backward-char 1)
  342. (looking-at (concat "\\(?:" regexp "\\)\\'"))))
  343. (setq pos (1- pos)))
  344. (save-excursion
  345. (goto-char pos)
  346. (looking-at (concat "\\(?:" regexp "\\)\\'")))))
  347. (not (null pos)))))
  348. (provide 'org-compat)
  349. ;; arch-tag: a0a0579f-e68c-4bdf-9e55-93768b846bbe
  350. ;;; org-compat.el ends here