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