diff options
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/latex/hyperref/doc/manual.tex | 16 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/hyperref/hyperref.dtx | 39 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/hyperref/hyperref.ins | 2 |
3 files changed, 50 insertions, 7 deletions
diff --git a/Master/texmf-dist/source/latex/hyperref/doc/manual.tex b/Master/texmf-dist/source/latex/hyperref/doc/manual.tex index 7a6d42e1580..5c1e94e4129 100644 --- a/Master/texmf-dist/source/latex/hyperref/doc/manual.tex +++ b/Master/texmf-dist/source/latex/hyperref/doc/manual.tex @@ -23,6 +23,12 @@ \usepackage{etex}% for \eTeX +\usepackage{pifont} + +\newcommand*{\cs}[1]{% + \texttt{\textbackslash #1}% +} + % Page layout. \advance\textwidth by 1.1in \advance\oddsidemargin by -.55in @@ -1230,6 +1236,9 @@ bordersep & & & box border gap \\ borderwidth & & & width of box border \\ calculate & & & JavaScript code to calculate the value of the field \\ charsize & dimen & & font size of field text \\ +checkboxsymbol & char & 4 (\ding{\number`4}) & symbol used for check boxes (ZapfDingbats), \\ +&&& the value is a character or \cs{ding}\verb|{|\texttt{\itshape number}\verb|}|, \\ +&&& see package `pifont' from bundle `psnfss' \\ checked & boolean & false & whether option selected by default \\ color & & & color of text in box \\ combo & boolean & false & choice list is `combo' style \\ @@ -1260,9 +1269,12 @@ onselect & & & JavaScript code \\ password & boolean & false & text field is `password' style \\ popdown & boolean & false & choice list is `popdown' style \\ radio & boolean & false & choice list is `radio' style \\ +radiosymbol & char & H (\ding{\number`H}) & symbol used for radio fields (ZapfDingbats), \\ +&&& the value is a character or \cs{ding}\verb|{|\texttt{\itshape number}\verb|}|, \\ +&&& see package `pifont' from bundle `psnfss' \\ readonly & boolean & false & field is readonly \\ -rotation & number & 0 & rotation of the widget annotation - (degree, counterclockwise, multiple of 90)\\ +rotation & number & 0 & rotation of the widget annotation \\ + & & & (degree, counterclockwise, multiple of 90)\\ tabkey & & & (as per HTML) \\ validate & & & JavaScript code to validate the entry \\ value & & & initial value \\ diff --git a/Master/texmf-dist/source/latex/hyperref/hyperref.dtx b/Master/texmf-dist/source/latex/hyperref/hyperref.dtx index 0511c525e35..a8b8e4023c3 100644 --- a/Master/texmf-dist/source/latex/hyperref/hyperref.dtx +++ b/Master/texmf-dist/source/latex/hyperref/hyperref.dtx @@ -38,7 +38,7 @@ %<puenc>\ProvidesFile{puenc.def} %<puvnenc>\ProvidesFile{puvnenc.def} %<puarenc>\ProvidesFile{puarenc.def} -%<!none> [2009/10/02 v6.78w +%<!none> [2009/10/09 v6.79a %<package> Hypertext links for LaTeX] %<nohyperref> Dummy hyperref (SR)] %<driver> Hyperref documentation driver file] @@ -114,7 +114,7 @@ \end{document} %</driver> % \fi -% \CheckSum{24604} +% \CheckSum{24653} % % \MakeShortVerb{|} % \StopEventually{} @@ -6894,6 +6894,7 @@ \def\Fld@borderwidth{1} \def\Fld@borderstyle{S} \def\Fld@cbsymbol{4} +\def\Fld@radiosymbol{H} \def\Fld@rotation{0} \def\Form{\@ifnextchar[{\@Form}{\@Form[]}} \def\endForm{\@endForm} @@ -7009,7 +7010,37 @@ \def\Fld@value{#1}% } \define@key{Field}{checkboxsymbol}{% - \def\Fld@cbsymbol{#1}% + \Fld@DingDef\Fld@cbsymbol{#1}% +} +\define@key{Field}{radiosymbol}{% + \Fld@DingDef\Fld@radiosymbol{#1}% +} +\def\Fld@DingDef#1#2{% + \def\Fld@temp{}% + \Fld@@DingDef#2\ding{}\@nil + \let#1\Fld@temp +} +\def\Fld@@DingDef#1\ding#2#3\@nil{% + \expandafter\def\expandafter\Fld@temp\expandafter{% + \Fld@temp + #1% + }% + \ifx\\#3\\% + \expandafter\@gobble + \else + \begingroup + \lccode`0=#2\relax + \lowercase{\endgroup + \expandafter\def\expandafter\Fld@temp\expandafter{% + \Fld@temp + 0% + }% + }% + \expandafter\@firstofone + \fi + {% + \Fld@@DingDef#3\@nil + }% } % \end{macrocode} % \begin{macrocode} @@ -16004,7 +16035,7 @@ \else /BG[\Fld@bcolor]% \fi - /CA(H)% + /CA(\Fld@radiosymbol)% >>% /DA(/ZaDb \strip@pt\Fld@charsize\space Tf% \ifx\Fld@color\@empty\else\space\Fld@color\fi)% diff --git a/Master/texmf-dist/source/latex/hyperref/hyperref.ins b/Master/texmf-dist/source/latex/hyperref/hyperref.ins index 43fef7ca9b3..2f6a594d085 100644 --- a/Master/texmf-dist/source/latex/hyperref/hyperref.ins +++ b/Master/texmf-dist/source/latex/hyperref/hyperref.ins @@ -4,7 +4,7 @@ %% LaTeX or TeX. %% %% Copyright 1995-1999 Sebastian Rahtz -%% 1999-2008 Sebastian Rahtz, Heiko Oberdiek +%% 1999-2009 Sebastian Rahtz, Heiko Oberdiek %% %% This file is part of the `Hyperref Bundle'. %% ------------------------------------------- |