org-checklist.el 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. (defvar export-time-format "%Y%m%d%H%M"
  42. "format of timestamp appended to export file")
  43. (defvar export-function 'org-export-as-ascii
  44. "function used to prepare the export file for printing")
  45. (defun org-reset-checkbox-state-maybe ()
  46. "Reset all checkboxes in an entry if the `RESET_CHECK_BOXES' property is set"
  47. (interactive "*")
  48. (if (org-entry-get (point) "RESET_CHECK_BOXES")
  49. (save-restriction
  50. (save-excursion
  51. (org-narrow-to-subtree)
  52. (org-show-subtree)
  53. (goto-char (point-min))
  54. (let ((end (point-max)))
  55. (while (< (point) end)
  56. (when (org-at-item-checkbox-p)
  57. (replace-match "[ ]" t t))
  58. (beginning-of-line 2))))
  59. (org-update-checkbox-count-maybe))))
  60. (defun org-make-checklist-export ()
  61. "Produce a checklist containing all unchecked items from a list
  62. of checkbox items"
  63. (interactive "*")
  64. (if (org-entry-get (point) "LIST_EXPORT_BASENAME")
  65. (let* ((export-file (concat (org-entry-get (point) "LIST_EXPORT_BASENAME")
  66. "-" (format-time-string export-time-format)
  67. ".org"))
  68. exported-lines
  69. title)
  70. (save-restriction
  71. (save-excursion
  72. (org-narrow-to-subtree)
  73. (org-show-subtree)
  74. (goto-char (point-min))
  75. (if (looking-at org-complex-heading-regexp)
  76. (setq title (match-string 4)))
  77. (goto-char (point-min))
  78. (let ((end (point-max)))
  79. (while (< (point) end)
  80. (when (and (org-at-item-checkbox-p)
  81. (or (string= (match-string 0) "[ ]")
  82. (string= (match-string 0) "[-]")))
  83. (add-to-list 'exported-lines (thing-at-point 'line) t))
  84. (beginning-of-line 2)))
  85. (set-buffer (get-buffer-create export-file))
  86. (org-insert-heading)
  87. (insert (or title export-file) "\n")
  88. (dolist (entry exported-lines) (insert entry))
  89. (org-update-checkbox-count-maybe)
  90. (write-file export-file)
  91. (if (y-or-n-p "Print list? ")
  92. ((funcall export-function)
  93. (a2ps-buffer))))))))
  94. (defun org-checklist ()
  95. (if (member state org-done-keywords)
  96. (org-make-checklist-export))
  97. (org-reset-checkbox-state-maybe))
  98. (add-hook 'org-after-todo-state-change-hook 'org-checklist)
  99. (provide 'org-checklist)
  100. ;;; org-checklist.el ends here