1 ;;; srecode/srt.el --- argument handlers for SRT files
3 ;; Copyright (C) 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
5 ;; Author: Eric M. Ludlam <eric@siege-engine.com>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs 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 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;; Filters for SRT files, the Semantic Recoder template files.
28 (eval-when-compile (require 'cl
))
30 (require 'srecode
/dictionary
)
31 (require 'srecode
/insert
)
33 (defvar srecode-read-variable-name-history nil
34 "History for `srecode-read-variable-name'.")
36 (defun srecode-read-variable-name (prompt &optional initial hist default
)
37 "Read in the name of a declared variable in the current SRT file.
38 PROMPT is the prompt to use.
39 INITIAL is the initial string.
40 HIST is the history value, otherwise `srecode-read-variable-name-history'
42 DEFAULT is the default if RET is hit."
43 (let* ((newdict (srecode-create-dictionary))
44 (currfcn (semantic-current-tag))
46 (srecode-resolve-argument-list
48 (semantic-tag-get-attribute currfcn
:arguments
))
51 (with-slots (namehash) newdict
52 (completing-read prompt namehash nil nil initial
53 (or hist
'srecode-read-variable-name-history
)
57 (defvar srecode-read-major-mode-history nil
58 "History for `srecode-read-variable-name'.")
60 (defun srecode-read-major-mode-name (prompt &optional initial hist default
)
61 "Read in the name of a desired `major-mode'.
62 PROMPT is the prompt to use.
63 INITIAL is the initial string.
64 HIST is the history value, otherwise `srecode-read-variable-name-history'
66 DEFAULT is the default if RET is hit."
67 (completing-read prompt obarray
68 (lambda (s) (string-match "-mode$" (symbol-name s
)))
69 nil initial
(or hist
'srecode-read-major-mode-history
))
72 (defun srecode-semantic-handle-:srt
(dict)
73 "Add macros into the dictionary DICT based on the current SRT file.
75 ESCAPE_START - This files value of escape_start
76 ESCAPE_END - This files value of escape_end
77 MODE - The mode of this buffer. If not declared yet, guess."
78 (let* ((es (semantic-find-first-tag-by-name "escape_start" (current-buffer)))
79 (ee (semantic-find-first-tag-by-name "escape_end" (current-buffer)))
80 (mode-var (semantic-find-first-tag-by-name "mode" (current-buffer)))
82 (semantic-tag-variable-default mode-var
)
85 (srecode-dictionary-set-value dict
"ESCAPE_START"
87 (car (semantic-tag-variable-default es
))
89 (srecode-dictionary-set-value dict
"ESCAPE_END"
91 (car (semantic-tag-variable-default ee
))
94 (let* ((fname (file-name-nondirectory
95 (buffer-file-name (current-buffer))))
97 (when (string-match "-\\(\\w+\\)\\.srt" fname
)
98 (setq mode
(concat (match-string 1 fname
) "-mode")))))
101 (srecode-dictionary-set-value dict
"MAJORMODE" mode
))
105 (provide 'srecode
/srt
)
107 ;; arch-tag: fb69da04-0bd6-48fe-b935-f8668420ecaf
108 ;;; srecode/srt.el ends here