diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2021-02-01 06:11:18 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2021-02-01 06:11:18 +0000 |
commit | 4f9de1dfebdc66d367d730252d6f224d37e96ee6 (patch) | |
tree | 3750421fabf3aa8a8e1f4f6d5558d489e9d4fe02 /Build/source/libs/xpdf/xpdf-src/doc/xpdfrc.5 | |
parent | 9d694205709f79666458dc2ee685767b28bcd9ac (diff) |
xpdf 4.03
git-svn-id: svn://tug.org/texlive/trunk@57588 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-src/doc/xpdfrc.5')
-rw-r--r-- | Build/source/libs/xpdf/xpdf-src/doc/xpdfrc.5 | 55 |
1 files changed, 39 insertions, 16 deletions
diff --git a/Build/source/libs/xpdf/xpdf-src/doc/xpdfrc.5 b/Build/source/libs/xpdf/xpdf-src/doc/xpdfrc.5 index bde3b5a5973..07639316ec7 100644 --- a/Build/source/libs/xpdf/xpdf-src/doc/xpdfrc.5 +++ b/Build/source/libs/xpdf/xpdf-src/doc/xpdfrc.5 @@ -1,7 +1,7 @@ -.\" Copyright 2002-2019 Glyph & Cog, LLC -.TH xpdfrc 5 "25 Sep 2019" +.\" Copyright 2002-2021 Glyph & Cog, LLC +.TH xpdfrc 5 "28 Jan 2021" .SH NAME -xpdfrc \- configuration file for Xpdf tools (version 4.02) +xpdfrc \- configuration file for Xpdf tools (version 4.03) .SH DESCRIPTION All of the Xpdf tools read a single configuration file. If you have a .I .xpdfrc @@ -17,8 +17,25 @@ The xpdfrc file consists of a series of configuration options, one per line. Blank lines and lines starting with a \'#' (comments) are ignored. .PP -Arguments may be quoted, using "double-quote" characters, e.g., for -file names that contain spaces. +Arguments can be single-quoted or double-quoted, e.g., for file names +that contain spaces ("aaa bbb", 'aaa bbb'). This quoting does not +provide any escaping, so there's no way to include a double quote in a +double-quoted argument or a single quote in a single-quoted argument. +.PP + +Arguments can also be at-quoted: @"aaa bbb". At-quoted strings allow +use of the DATADIR variable, which is set to the 'data' subdirectory +in the xpdf install directory. The percent sign (%) is an escape +character: a percent sign followed by any other character is replaced +with that character. +.PP +.RS +.nf +@"abc %"def%" ghi" --> abc "def" ghi +@"${DATADIR}/foo" --> ...install-dir.../data/foo +@"%${DATADIR}/foo" --> ${DATADIR}/foo +.fi +.RE .PP The following sections list all of the configuration options, sorted into functional groups. There is an examples section at the end. @@ -549,6 +566,11 @@ If set to "yes", xpdf opens with the sidebar (tabs, outline, etc.) visible. If set to "no", xpdf opens with the sidebar collapsed. The default is "yes". .TP +.BI initialSidebarWidth " width" +Sets the initial sidebar width, in pixels. This is only relevant if +initialSidebarState is "yes". The default value is zero, which tells +xpdf to use an internal default size. +.TP .BR initialSelectMode " block | linear" Sets the initial selection mode. The default setting is "linear". .TP @@ -567,6 +589,10 @@ color. Set the matte color for full-screen mode. The color can be #RRGGBB (hexadecimal) or a named color. .TP +.BI selectionColor " color" +Set the selection color. The color can be #RRGGBB (hexadecimal) or a +named color. +.TP .BI reverseVideoInvertImages " yes | no" If set to "no", xpdf's reverse-video mode inverts text and vector graphic content, but not images. If set to "yes", xpdf inverts images @@ -641,11 +667,13 @@ can be a regular ASCII character, or any one of: end pgup pgdn - left / right / up / down (arrow keys) - f1 .. f35 (function keys) - mousePress1 .. mousePress7 (mouse buttons) - mouseRelease1 .. mouseRelease7 (mouse buttons) - mouseClick1 .. mouseClick7 (mouse buttons) + left / right / up / down (arrow keys) + f1 .. f35 (function keys) + mousePress1 .. mousePress7 (mouse buttons) + mouseRelease1 .. mouseRelease7 (mouse buttons) + mouseClick1 .. mouseClick7 (mouse buttons) + mouseDoubleClick1 .. mouseDoubleClick7 (mouse buttons) + mouseTripleClick1 .. mouseTripleClick7 (mouse buttons) .fi .I Context @@ -708,11 +736,6 @@ value is "yes". If set to "no", form fields will not be drawn or printed. The default value is "yes". .TP -.BI enableXFA " yes | no" -If set to "yes", an XFA form (if present) will be rendered in place of -an AcroForm. If "no", an XFA form will never be rendered. This -defaults to "yes". -.TP .BI printCommands " yes | no" If set to "yes", drawing commands are printed as they're executed (useful for debugging). This defaults to "no". @@ -783,7 +806,7 @@ Depending on build options, it may be placed elsewhere. This is the user's configuration file. If it exists, it will be read in place of the system-wide file. .SH AUTHOR -The Xpdf software and documentation are copyright 1996-2019 Glyph & +The Xpdf software and documentation are copyright 1996-2021 Glyph & Cog, LLC. .SH "SEE ALSO" .BR xpdf (1), |