;;; menukeys.el --- AUCTeX style for `menukeys.sty' (v1.4) ;; Copyright (C) 2016 Free Software Foundation, Inc. ;; Author: Arash Esbati ;; Maintainer: auctex-devel@gnu.org ;; Created: 2016-02-07 ;; Keywords: tex ;; This file is part of AUCTeX. ;; AUCTeX is free software; you can redistribute it and/or modify it ;; under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 3, or (at your option) ;; any later version. ;; AUCTeX is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with AUCTeX; see the file COPYING. If not, write to the Free ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ;; 02110-1301, USA. ;;; Commentary: ;; This file adds support for `menukeys.sty' (v1.4) from 2016/04/18. ;; `menukeys.sty' is part of TeXLive. ;;; Code: ;; Needed for auto-parsing. (require 'tex) (defvar LaTeX-menukeys-input-separators-list '("/" "=" "*" "+" "," ";" ":" "-" ">" "<" "bslash") "List of input separators for macros of menukeys package.") (defvar LaTeX-menukeys-predefined-styles-list '("menus" "roundedmenus" "angularmenus" "roundedkeys" "shadowedroundedkeys" "angularkeys" "shadowedangularkeys" "typewriterkeys" "paths" "pathswithfolder" "pathswithblackfolder" "hyphenatepaths" "hyphenatepathswithfolder" "hyphenatepathswithblackfolder") "List of predefined styles for macros from menukeys package.") ;; Setup for \newmenustyle(simple): (TeX-auto-add-type "menukeys-newmenustyle" "LaTeX") (defvar LaTeX-menukeys-newmenustyle-regexp '("\\\\\\(?:new\\|copy\\)menustyle\\(?:simple\\)?*?{\\([^}]+\\)}" 1 LaTeX-auto-menukeys-newmenustyle) "Matches the argument of \\newmenustyle and \\newmenustylesimple from menukeys package.") ;; Setup for \newmenucolortheme: (TeX-auto-add-type "menukeys-newmenucolortheme" "LaTeX") (defvar LaTeX-menukeys-newmenucolortheme-regexp '("\\\\\\(?:new\\|copy\\)menucolortheme{\\([^}]+\\)}" 1 LaTeX-auto-menukeys-newmenucolortheme) "Matches the argument of \\newmenucolortheme from menukeys package.") ;; Setup for \newmenumacro: (TeX-auto-add-type "menukeys-newmenumacro" "LaTeX") (defvar LaTeX-menukeys-newmenumacro-regexp `(,(concat "\\\\\\(new\\|renew\\|provide\\)menumacro" "{?" (regexp-quote TeX-esc) "\\([a-zA-Z]+\\)" "}?" "\\(?:\\[\\([^]]*\\)\\]\\)?") (2 3 1) LaTeX-auto-menukeys-newmenumacro) "Matches the arguments of \\newmenumacro from menukeys package.") (defun LaTeX-menukeys-auto-prepare () "Clear various `LaTeX-auto-menukeys-*' variables before parsing." (setq LaTeX-auto-menukeys-newmenustyle nil LaTeX-auto-menukeys-newmenucolortheme nil LaTeX-auto-menukeys-newmenumacro nil)) (defun LaTeX-menukeys-auto-cleanup () "Process the parsed elements for menukeys package. This function adds parsed elements from the variable `LaTeX-menukeys-newmenumacro-list' to AUCTeX via the function `TeX-add-symbols'. The variable `LaTeX-menukeys-newmenumacro-list' and not the function with the same name is used since this function looks for the order of commands which are set by \\renewmenumacro in order to pick the current separator. These renew-commands are also removed first from the variable `TeX-symbol-list' before being re-added." (dolist (x (apply #'append LaTeX-menukeys-newmenumacro-list)) (let ((macro (nth 0 x)) (sep (nth 1 x)) (renew (when (string= (nth 2 x) "renew") (nth 2 x)))) ;; When we are renewmenumacro'ing, delete the entry first from the ;; variable `TeX-symbol-list' and then add the new spec: (when renew (setq TeX-symbol-list (assq-delete-all (car (assoc macro (TeX-symbol-list))) TeX-symbol-list))) (TeX-add-symbols `(,macro [ TeX-arg-eval completing-read (TeX-argument-prompt optional nil ,(concat "Input separator " "(default " (if (and sep (not (string= sep ""))) sep ",") ")")) LaTeX-menukeys-input-separators-list ] t )) (when (and (featurep 'font-latex) (eq TeX-install-font-lock 'font-latex-setup)) (font-latex-add-keywords `((,macro "[{")) 'textual))))) (add-hook 'TeX-auto-prepare-hook #'LaTeX-menukeys-auto-prepare t) (add-hook 'TeX-auto-cleanup-hook #'LaTeX-menukeys-auto-cleanup t) (add-hook 'TeX-update-style-hook #'TeX-auto-parse t) (defun TeX-arg-menukeys-newmenumacro (optional &optional renew) "Query and insert the arguments of \\newmenumacro from menukeys package. After inserting, add the name of macro and the optional separator to the name of known macros via `TeX-add-symbols'. If font-latex.el is loaded, also use `font-latex-add-keywords' on macro. If RENEW is non-nil, query for an already defined macro." (let ((macro (if renew (completing-read (concat "Macro: " TeX-esc) (TeX-delete-duplicate-strings (mapcar #'car (LaTeX-menukeys-newmenumacro-list)))) (TeX-read-string (concat "Macro: " TeX-esc)))) (sep (completing-read (TeX-argument-prompt optional nil "Input separator (default ,)") LaTeX-menukeys-input-separators-list)) (style (completing-read (TeX-argument-prompt optional nil "Style") (LaTeX-menukeys-newmenustyle-list)))) (TeX-argument-insert (concat TeX-esc macro) optional) (when (and sep (not (string= sep ""))) (insert (format "[%s]" sep))) (TeX-argument-insert style optional) ;; When we are renewmenumacro'ing, delete the entry first from the ;; variable `TeX-symbol-list' and then add the new spec: (when renew (setq TeX-symbol-list (assq-delete-all (car (assoc macro (TeX-symbol-list))) TeX-symbol-list))) (TeX-add-symbols `(,macro [ TeX-arg-eval completing-read (TeX-argument-prompt optional nil ,(concat "Input separator " "(default " (if (and sep (not (string= sep ""))) sep ",") ")")) LaTeX-menukeys-input-separators-list ] t )) (when (and (featurep 'font-latex) (eq TeX-install-font-lock 'font-latex-setup)) (font-latex-add-keywords `((,macro "[{")) 'textual)))) (TeX-add-style-hook "menukeys" (lambda () ;; Add menukeys to the parser (TeX-auto-add-regexp LaTeX-menukeys-newmenustyle-regexp) (TeX-auto-add-regexp LaTeX-menukeys-newmenucolortheme-regexp) (TeX-auto-add-regexp LaTeX-menukeys-newmenumacro-regexp) ;; Activate predefined stuff (apply #'LaTeX-add-menukeys-newmenustyles LaTeX-menukeys-predefined-styles-list) (LaTeX-add-menukeys-newmenucolorthemes "gray" "blacknwhite") ;; Run style hooks for xcolor, tikz and relsize (TeX-run-style-hooks "xcolor" "tikz" "relsize") ;; 4.1 Basic macros: These are not defined if the package option ;; definemenumacros ist set to false (default is true). We check ;; for the package option here and add them. (unless (LaTeX-provided-package-options-member "menukeys" "definemenumacros=false") (TeX-add-symbols ;; \menu []{} ;; \directory []{path} ;; \keys []{keystrokes} '("menu" [ TeX-arg-eval completing-read (TeX-argument-prompt optional nil "Input separator") LaTeX-menukeys-input-separators-list ] t) '("directory" [ TeX-arg-eval completing-read (TeX-argument-prompt optional nil "Input separator") LaTeX-menukeys-input-separators-list ] t) '("keys" [ TeX-arg-eval completing-read (TeX-argument-prompt optional nil "Input separator") LaTeX-menukeys-input-separators-list ] t))) (TeX-add-symbols ;; 4.2.1 Predefined styles ;; \drawtikzfolder[][] '("drawtikzfolder" [ TeX-arg-eval completing-read (TeX-argument-prompt optional nil "Front color") (LaTeX-xcolor-definecolor-list) ] [ TeX-arg-eval completing-read (TeX-argument-prompt optional nil "Line color") (LaTeX-xcolor-definecolor-list) ] ) ;; 4.2.2 Declaring styles ;; \newmenustylesimple*{}[
]{