org-compat.el 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  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. ;;;; Emacs/XEmacs compatibility
  81. ;; Keys
  82. (defconst org-xemacs-key-equivalents
  83. '(([mouse-1] . [button1])
  84. ([mouse-2] . [button2])
  85. ([mouse-3] . [button3])
  86. ([C-mouse-4] . [(control mouse-4)])
  87. ([C-mouse-5] . [(control mouse-5)]))
  88. "Translation alist for a couple of keys")
  89. ;; Overlay compatibility functions
  90. (defun org-detach-overlay (ovl)
  91. (if (featurep 'xemacs) (detach-extent ovl) (delete-overlay ovl)))
  92. (defun org-overlay-display (ovl text &optional face evap)
  93. "Make overlay OVL display TEXT with face FACE."
  94. (if (featurep 'xemacs)
  95. (let ((gl (make-glyph text)))
  96. (and face (set-glyph-face gl face))
  97. (set-extent-property ovl 'invisible t)
  98. (set-extent-property ovl 'end-glyph gl))
  99. (overlay-put ovl 'display text)
  100. (if face (overlay-put ovl 'face face))
  101. (if evap (overlay-put ovl 'evaporate t))))
  102. (defun org-overlay-before-string (ovl text &optional face evap)
  103. "Make overlay OVL display TEXT with face FACE."
  104. (if (featurep 'xemacs)
  105. (let ((gl (make-glyph text)))
  106. (and face (set-glyph-face gl face))
  107. (set-extent-property ovl 'begin-glyph gl))
  108. (if face (org-add-props text nil 'face face))
  109. (overlay-put ovl 'before-string text)
  110. (if evap (overlay-put ovl 'evaporate t))))
  111. (defun org-find-overlays (prop &optional pos delete)
  112. "Find all overlays specifying PROP at POS or point.
  113. If DELETE is non-nil, delete all those overlays."
  114. (let ((overlays (overlays-at (or pos (point))))
  115. ov found)
  116. (while (setq ov (pop overlays))
  117. (if (overlay-get ov prop)
  118. (if delete (delete-overlay ov) (push ov found))))
  119. found))
  120. ;; Miscellaneous functions
  121. (defun org-add-hook (hook function &optional append local)
  122. "Add-hook, compatible with both Emacsen."
  123. (if (and local (featurep 'xemacs))
  124. (add-local-hook hook function append)
  125. (add-hook hook function append local)))
  126. (defun org-add-props (string plist &rest props)
  127. "Add text properties to entire string, from beginning to end.
  128. PLIST may be a list of properties, PROPS are individual properties and values
  129. that will be added to PLIST. Returns the string that was modified."
  130. (add-text-properties
  131. 0 (length string) (if props (append plist props) plist) string)
  132. string)
  133. (put 'org-add-props 'lisp-indent-function 2)
  134. (defun org-fit-window-to-buffer (&optional window max-height min-height
  135. shrink-only)
  136. "Fit WINDOW to the buffer, but only if it is not a side-by-side window.
  137. WINDOW defaults to the selected window. MAX-HEIGHT and MIN-HEIGHT are
  138. passed through to `fit-window-to-buffer'. If SHRINK-ONLY is set, call
  139. `shrink-window-if-larger-than-buffer' instead, the hight limit are
  140. ignored in this case."
  141. (cond ((if (fboundp 'window-full-width-p)
  142. (not (window-full-width-p window))
  143. (> (frame-width) (window-width window)))
  144. ;; do nothing if another window would suffer
  145. )
  146. ((and (fboundp 'fit-window-to-buffer) (not shrink-only))
  147. (fit-window-to-buffer window max-height min-height))
  148. ((fboundp 'shrink-window-if-larger-than-buffer)
  149. (shrink-window-if-larger-than-buffer window)))
  150. (or window (selected-window)))
  151. ;; Region compatibility
  152. (defvar org-ignore-region nil
  153. "To temporarily disable the active region.")
  154. (defun org-region-active-p ()
  155. "Is `transient-mark-mode' on and the region active?
  156. Works on both Emacs and XEmacs."
  157. (if org-ignore-region
  158. nil
  159. (if (featurep 'xemacs)
  160. (and zmacs-regions (region-active-p))
  161. (if (fboundp 'use-region-p)
  162. (use-region-p)
  163. (and transient-mark-mode mark-active))))) ; Emacs 22 and before
  164. (defun org-cursor-to-region-beginning ()
  165. (when (and (org-region-active-p)
  166. (> (point) (region-beginning)))
  167. (exchange-point-and-mark)))
  168. ;; Invisibility compatibility
  169. (defun org-remove-from-invisibility-spec (arg)
  170. "Remove elements from `buffer-invisibility-spec'."
  171. (if (fboundp 'remove-from-invisibility-spec)
  172. (remove-from-invisibility-spec arg)
  173. (if (consp buffer-invisibility-spec)
  174. (setq buffer-invisibility-spec
  175. (delete arg buffer-invisibility-spec)))))
  176. (defun org-in-invisibility-spec-p (arg)
  177. "Is ARG a member of `buffer-invisibility-spec'?"
  178. (if (consp buffer-invisibility-spec)
  179. (member arg buffer-invisibility-spec)
  180. nil))
  181. (defmacro org-xemacs-without-invisibility (&rest body)
  182. "Turn off exents with invisibility while executing BODY."
  183. `(let ((ext-inv (extent-list nil (point-at-bol) (point-at-eol)
  184. 'all-extents-closed-open 'invisible))
  185. ext-inv-specs)
  186. (dolist (ext ext-inv)
  187. (when (extent-property ext 'invisible)
  188. (add-to-list 'ext-inv-specs (list ext (extent-property
  189. ext 'invisible)))
  190. (set-extent-property ext 'invisible nil)))
  191. ,@body
  192. (dolist (ext-inv-spec ext-inv-specs)
  193. (set-extent-property (car ext-inv-spec) 'invisible
  194. (cadr ext-inv-spec)))))
  195. (defun org-indent-to-column (column &optional minimum buffer)
  196. "Work around a bug with extents with invisibility in XEmacs."
  197. (if (featurep 'xemacs)
  198. (org-xemacs-without-invisibility (indent-to-column column minimum buffer))
  199. (indent-to-column column minimum)))
  200. (defun org-indent-line-to (column)
  201. "Work around a bug with extents with invisibility in XEmacs."
  202. (if (featurep 'xemacs)
  203. (org-xemacs-without-invisibility (indent-line-to column))
  204. (indent-line-to column)))
  205. (defun org-move-to-column (column &optional force buffer)
  206. (if (featurep 'xemacs)
  207. (org-xemacs-without-invisibility (move-to-column column force buffer))
  208. (move-to-column column force)))
  209. (defun org-get-x-clipboard-compat (value)
  210. "Get the clipboard value on XEmacs or Emacs 21"
  211. (cond ((featurep 'xemacs)
  212. (org-no-warnings (get-selection-no-error value)))
  213. ((fboundp 'x-get-selection)
  214. (condition-case nil
  215. (or (x-get-selection value 'UTF8_STRING)
  216. (x-get-selection value 'COMPOUND_TEXT)
  217. (x-get-selection value 'STRING)
  218. (x-get-selection value 'TEXT))
  219. (error nil)))))
  220. (defun org-propertize (string &rest properties)
  221. (if (featurep 'xemacs)
  222. (progn
  223. (add-text-properties 0 (length string) properties string)
  224. string)
  225. (apply 'propertize string properties)))
  226. (defun org-substring-no-properties (string &optional from to)
  227. (if (featurep 'xemacs)
  228. (org-no-properties (substring string (or from 0) to))
  229. (substring-no-properties string from to)))
  230. (defun org-find-library-name (library)
  231. (if (fboundp 'find-library-name)
  232. (file-name-directory (find-library-name library))
  233. ; XEmacs does not have `find-library-name'
  234. (flet ((find-library-name-helper (filename ignored-codesys)
  235. filename)
  236. (find-library-name (library)
  237. (find-library library nil 'find-library-name-helper)))
  238. (file-name-directory (find-library-name library)))))
  239. (defun org-count-lines (s)
  240. "How many lines in string S?"
  241. (let ((start 0) (n 1))
  242. (while (string-match "\n" s start)
  243. (setq start (match-end 0) n (1+ n)))
  244. (if (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
  245. (setq n (1- n)))
  246. n))
  247. (defun org-kill-new (string &rest args)
  248. (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
  249. string)
  250. (apply 'kill-new string args))
  251. (defun org-select-frame-set-input-focus (frame)
  252. "Select FRAME, raise it, and set input focus, if possible."
  253. (cond ((featurep 'xemacs)
  254. (if (fboundp 'select-frame-set-input-focus)
  255. (select-frame-set-input-focus frame)
  256. (raise-frame frame)
  257. (select-frame frame)
  258. (focus-frame frame)))
  259. ;; `select-frame-set-input-focus' defined in Emacs 21 will not
  260. ;; set the input focus.
  261. ((>= emacs-major-version 22)
  262. (select-frame-set-input-focus frame))
  263. (t
  264. (raise-frame frame)
  265. (select-frame frame)
  266. (cond ((memq window-system '(x ns mac))
  267. (x-focus-frame frame))
  268. ((eq window-system 'w32)
  269. (w32-focus-frame frame)))
  270. (when focus-follows-mouse
  271. (set-mouse-position frame (1- (frame-width frame)) 0)))))
  272. (defun org-float-time (&optional time)
  273. "Convert time value TIME to a floating point number.
  274. TIME defaults to the current time."
  275. (if (featurep 'xemacs)
  276. (time-to-seconds (or time (current-time)))
  277. (float-time time)))
  278. ; XEmacs does not have `looking-back'.
  279. (if (fboundp 'looking-back)
  280. (defalias 'org-looking-back 'looking-back)
  281. (defun org-looking-back (regexp &optional limit greedy)
  282. "Return non-nil if text before point matches regular expression REGEXP.
  283. Like `looking-at' except matches before point, and is slower.
  284. LIMIT if non-nil speeds up the search by specifying a minimum
  285. starting position, to avoid checking matches that would start
  286. before LIMIT.
  287. If GREEDY is non-nil, extend the match backwards as far as
  288. possible, stopping when a single additional previous character
  289. cannot be part of a match for REGEXP. When the match is
  290. extended, its starting position is allowed to occur before
  291. LIMIT."
  292. (let ((start (point))
  293. (pos
  294. (save-excursion
  295. (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
  296. (point)))))
  297. (if (and greedy pos)
  298. (save-restriction
  299. (narrow-to-region (point-min) start)
  300. (while (and (> pos (point-min))
  301. (save-excursion
  302. (goto-char pos)
  303. (backward-char 1)
  304. (looking-at (concat "\\(?:" regexp "\\)\\'"))))
  305. (setq pos (1- pos)))
  306. (save-excursion
  307. (goto-char pos)
  308. (looking-at (concat "\\(?:" regexp "\\)\\'")))))
  309. (not (null pos)))))
  310. (provide 'org-compat)
  311. ;; arch-tag: a0a0579f-e68c-4bdf-9e55-93768b846bbe
  312. ;;; org-compat.el ends here