org-compat.el 12 KB

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