ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <j.hagen@xs4all.nl>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>,
	"Jairo A. del Rio" <jairoadelrio6@gmail.com>
Subject: Re: About the use of command handlers
Date: Fri, 29 May 2020 09:55:42 +0200	[thread overview]
Message-ID: <fb13ac20-f12e-199c-8a7a-ed55a99c42cb@xs4all.nl> (raw)
In-Reply-To: <CAKyqqabXmddr4Kh8C2YjFTLBsbE4uj_mBjREbYa1Og6Z2mRihA@mail.gmail.com>

On 5/29/2020 6:29 AM, Jairo A. del Rio wrote:
> Hello list! I was reading the following:
> 
> https://wiki.contextgarden.net/Style_Alternatives
> 
> I wanted to figure out how to make a simple module. However, there's a 
> point in the example below which I don't understand
> 
> % macros=mkvi
> \startmodule[look]
> \unprotect
> \writestatus{loading}{ConTeXt User Module / look} 
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
> \installnamespace {look}
> \installcommandhandler \????look {look} \????look
> 
> \appendtoks
> \setuevalue{\currentlook}{\do_look{\currentlook}}
> \to \everydefinelook
> 
> \unexpanded\def\do_look#id{%
> \edef\currentlook{#id}%
> \dosingleempty\do_do_look%
> }
> 
> \def\do_do_look[#parms]#content{%
> \begingroup
> \iffirstargument\setupcurrentlook[#parms]\fi
> %This handles style and color
> \uselookstyleandcolor\c!style\c!color%
> #content%
> \endgroup%
> }
> 
> \protect %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
> \stopmodule
> 
> What have I to do if, instead of "color" or "style", I want to use 
> another keyword, as "dummy" and get its value? Something like
> 
> \definelook[lol][dummy = blabla]
> \lol{words}
> %e.g. words \emph{blabla} or something similar
> so "lol" is a word, a number or whatever. I've read something about 
> command handlers, but I'm having a hard time trying to understand them. 
> Thank you in advance!
% macros=mkvi

\unprotect

\installnamespace {look}

\installcommandhandler \????look {look} \????look

\appendtoks
     \setuevalue{\currentlook}{\module_look_do{\currentlook}}
\to \everydefinelook

\unexpanded\def\module_look_do#id%
   {\edef\currentlook{#id}%
    \dosingleempty\module_look_do_do}

\def\module_look_do_do[#parms]#content%
   {\dontleavehmode
    \begingroup
    \iffirstargument
      \setupcurrentlook[#parms]%
    \fi
    \doifsomething{\lookparameter{title}}
      {\begingroup
         \uselookstyleandcolor\c!headstyle\c!headcolor
         \lookparameter{title}%
         \lookparameter{separator}%
       \endgroup}%
    \uselookstyleandcolor\c!style\c!color
    #content%
    \endgroup}

\protect

\starttext

\setuplook[separator={: }]

\definelook[lol][color=red,headcolor=green]

\lol[title=blabla]{words}

\stoptext



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

      reply	other threads:[~2020-05-29  7:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-29  4:29 Jairo A. del Rio
2020-05-29  7:55 ` Hans Hagen [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fb13ac20-f12e-199c-8a7a-ed55a99c42cb@xs4all.nl \
    --to=j.hagen@xs4all.nl \
    --cc=jairoadelrio6@gmail.com \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).