|
NAMEqpdfview - tabbed document viewerSYNOPSISqpdfview [options] [--] [file[#page]] [file[#src:name:line:column]] ...DESCRIPTIONqpdfview is a simple viewer for document files in the portable document format (PDF). It uses the Poppler library for rendering and the Qt toolkit for its interface.OPTIONS
INTER-PROCESS COMMUNICATIONIf the program is invoked using the "--unique" option, it registers an introspectable D-Bus interface at "local.qpdfview/MainWindow" which can be used to communicate with the application. If the "--instance" option is used, the D-Bus interface is registered at "local.qpdfview.name/MainWindow".CONFIGURATION FILESqpdfview uses configuration files usually located at"~/.config/qpdfview"
with the majority of settings contained in "qpdfview.conf".
Persitent state like per-file settings, bookmarks and tabs is stored in an SQLite database usually located at "~/.local/share/data/qpdfview/qpdfview".
The icon theme used by Qt can be changed by setting the key "iconTheme" in the section "mainWindow". The application-wide Qt style sheet can be changed by setting the key "styleSheet" in the section "mainWindow". The tile size in pixels used for tiled rendering can be adjusted by setting the key "tileSize" in the section "pageItem". The default value is 1024 pixels. The mimimum resp. maximum scale factor can be modified by changing the keys "minimumScaleFactor" resp. "maximumScaleFactor" in the section "documentView". The default values are 0.1 resp. 10.0. The timeout for auto-refresh resp. prefetch can be changed by setting the keys "autoRefreshTimeout" resp. "prefetchTimeout" in the section "documentView". The defaults are 750 resp. 250 milliseconds. The maximum number of per-file settings can be modified by changing the key "perFileSettingsLimit" in the section "mainWindow". The default value is 1000. EXAMPLESThe command
qpdfview foo.pdf#3 bar.pdf
opens "foo.pdf" in the first tab displaying the
third page of the document and "bar.pdf" in the second tab
displaying the beginning of the document.
qpdfview --quiet foobar/*
The command opens all files that can be opened in the directory
"foobar", suppressing warning messages for files that cannot be
opened.
qpdfview --search foo bar.pdf
The command opens "bar.pdf" in the first tab and starts a
search for "foo".
qpdfview --unique foo.pdf bar.pdf
Subsequent execution of the commands and
qpdfview --unique foo.pdf#5
opens "foo.pdf" and "bar.pdf", then
reloads "foo.pdf" and displays its fifth page.
qpdfview --unique foo.pdf
Subsequent execution of the commands and
qpdfview bar.pdf
and
qpdfview --unique foo1.pdf bar1.pdf
opens "foo.pdf" in the first window,
"bar.pdf" in a second window and then "foo1.pdf" and
"bar1.pdf" in additional tabs in the first window.
qpdfview --unique --instance a foo1.pdf bar1.pdf
Subsequent execution of the commands and
qpdfview --unique --instance b foo2.pdf bar2.pdf
and
qpdfview --unique foo3.pdf bar3.pdf
and
qpdfview --unique --instance a foo1.pdf#4 bar4.pdf
opens "foo1.pdf" and "bar1.pdf" in
the first window, "foo2.pdf" and "bar2.pdf" in the second
window, "foo3.pdf" and "bar3.pdf" in the third window and
then reloads "foo1.pdf" and displays its fourth page and opens
"bar4.pdf" in an additional tab in the first window.
qpdfview --unique --instance a foo.pdf bar.pdf
Subsequent execution of the commands and
qpdfview --unique --instance a --search foobar
opens "foo.pdf" and "bar.pdf" in a
window and then starts a search for the term "foobar" in the
document in the active tab (which is the last opened "bar.pdf").
qpdfview --unique foobar.pdf#src:foobar.tex:42:0
The command opens or refreshes "foobar.pdf" jumping to and
highlighting the position that corresponds to line 42 of the source file
"foobar.tex".
[documentView]
autoRefreshTimeout=1250
[mainWindow]
styleSheet="QTabBar::tab { max-width: 150px; }"
The lines will configure the auto-refresh timeout to 1250
milliseconds and the change the maximum tab width to 150 pixel.
BUGSIf you find a bug, please report it at"https://launchpad.net/qpdfview".
Visit the GSP FreeBSD Man Page Interface. |