org-checklist.el 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. ;;; org-checklist.el --- org functions for checklist handling
  2. ;; Copyright (C) 2008 James TD Smith
  3. ;; Author: James TD Smith (@ ahktenzero (. mohorovi cc))
  4. ;; Version: 1.0
  5. ;; Keywords: org, checklists
  6. ;;
  7. ;; This program is free software; you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation; either version 3, or (at your option)
  10. ;; any later version.
  11. ;;
  12. ;; This program is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;;
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with this program; if not, write to the Free Software
  19. ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. ;;; Commentary:
  21. ;; This file provides some functions for handing repeated tasks which involve
  22. ;; checking off a list of items. By setting the RESET_CHECK_BOXES property in an
  23. ;; item, when the TODO state is set to done all checkboxes under that item are
  24. ;; cleared. If the LIST_EXPORT_BASENAME property is set, a file will be created
  25. ;; using the value of that property plus a timestamp, containing all the items
  26. ;; in the list which are not checked. Additionally the user will be prompted to
  27. ;; print the list.
  28. ;;
  29. ;; I use this for to keep track of stores of various things (food stores,
  30. ;; components etc) which I check periodically and use the exported list of items
  31. ;; which are not present as a shopping list.
  32. ;;
  33. ;;; Usage:
  34. ;; (require 'org-checklist)
  35. ;;
  36. ;; Set the RESET_CHECK_BOXES and LIST_EXPORT_BASENAME properties in items as
  37. ;; needed.
  38. ;;
  39. ;;; Code:
  40. (require 'org)
  41. (load "a2ps-print" 'no-error)
  42. (defgroup org-checklist nil
  43. "Extended checklist handling for org"
  44. :tag "Org-checklist"
  45. :group 'org)
  46. (defcustom org-checklist-export-time-format "%Y%m%d%H%M"
  47. "The format of timestamp appended to LIST_EXPORT_BASENAME to
  48. make the name of the export file."
  49. :link '(function-link format-time-string)
  50. :group 'org-checklist
  51. :type 'string)
  52. (defcustom org-checklist-export-function 'org-export-as-ascii
  53. "function used to prepare the export file for printing"
  54. :group 'org-checklist
  55. :type '(radio (function-item :tag "ascii text" org-export-as-ascii)
  56. (function-item :tag "HTML" org-export-as-html)
  57. (function-item :tag "LaTeX" :value org-export-as-latex)
  58. (function-item :tag "XOXO" :value org-export-as-xoxo)))
  59. (defcustom org-checklist-export-params nil
  60. "options for the export function file for printing"
  61. :group 'org-checklist
  62. :type '(repeat string))
  63. (defcustom org-checklist-a2ps-params nil
  64. "options for a2ps for printing"
  65. :group 'org-checklist
  66. :type '(repeat string))
  67. (defun org-reset-checkbox-state-maybe ()
  68. "Reset all checkboxes in an entry if the `RESET_CHECK_BOXES' property is set"
  69. (interactive "*")
  70. (if (org-entry-get (point) "RESET_CHECK_BOXES")
  71. (org-reset-checkbox-state-subtree)))
  72. (defun org-make-checklist-export ()
  73. "Produce a checklist containing all unchecked items from a list
  74. of checkbox items"
  75. (interactive "*")
  76. (if (org-entry-get (point) "LIST_EXPORT_BASENAME")
  77. (let* ((export-file (concat (org-entry-get (point) "LIST_EXPORT_BASENAME" nil)
  78. "-" (format-time-string
  79. org-checklist-export-time-format)
  80. ".org"))
  81. (print (case (org-entry-get (point) "PRINT_EXPORT" nil)
  82. (("" "nil" nil) nil)
  83. (t t)
  84. (nil (y-or-n-p "Print list? "))))
  85. exported-lines
  86. (title "Checklist export"))
  87. (save-restriction
  88. (save-excursion
  89. (org-narrow-to-subtree)
  90. (org-update-checkbox-count-maybe)
  91. (org-show-subtree)
  92. (goto-char (point-min))
  93. (when (looking-at org-complex-heading-regexp)
  94. (setq title (match-string 4)))
  95. (goto-char (point-min))
  96. (let ((end (point-max)))
  97. (while (< (point) end)
  98. (when (and (org-at-item-checkbox-p)
  99. (or (string= (match-string 0) "[ ]")
  100. (string= (match-string 0) "[-]")))
  101. (add-to-list 'exported-lines (thing-at-point 'line) t))
  102. (beginning-of-line 2)))
  103. (set-buffer (get-buffer-create export-file))
  104. (org-insert-heading)
  105. (insert (or title export-file) "\n")
  106. (dolist (entry exported-lines) (insert entry))
  107. (org-update-checkbox-count-maybe)
  108. (write-file export-file)
  109. (if (print)
  110. (progn (funcall org-checklist-export-function
  111. org-checklist-export-params)
  112. (let* ((current-a2ps-switches a2ps-switches)
  113. (a2ps-switches (append current-a2ps-switches
  114. org-checklist-a2ps-params)))
  115. (a2ps-buffer)))))))))
  116. (defun org-checklist ()
  117. (when (member state org-done-keywords)
  118. (org-make-checklist-export)
  119. (org-reset-checkbox-state-maybe)))
  120. (add-hook 'org-after-todo-state-change-hook 'org-checklist)
  121. (provide 'org-checklist)
  122. ;;; org-checklist.el ends here