Document viewer
Find a file
Abdo Roig-Maranges 692e72abd4 add a custom refresh-view signal
Now we can trigger a gtk page refresh calling refresh_view. This
function triggers a custom signal refresh-view, whose handler copies the
position from the document object to the adjustments.
2013-10-26 17:13:56 +02:00
po Run update-po 2013-08-15 00:37:57 +02:00
tests Build tests with magic if WITH_MAGIC != 0 2013-02-22 15:58:13 +01:00
.gitignore
adjustment.c add functions to compute page positions 2013-10-26 17:13:55 +02:00
adjustment.h add functions to compute page positions 2013-10-26 17:13:55 +02:00
AUTHORS Add oblique 2013-03-09 18:54:42 +01:00
bookmarks.c Bookmark the exact position, not just the page number (along with a number of fixes). 2013-06-21 09:45:36 +02:00
bookmarks.h Bookmark the exact position, not just the page number (along with a number of fixes). 2013-06-21 09:45:36 +02:00
callbacks.c add a custom refresh-view signal 2013-10-26 17:13:56 +02:00
callbacks.h add a custom refresh-view signal 2013-10-26 17:13:56 +02:00
commands.c Rewrite render thread as request based system 2013-08-21 18:32:18 +02:00
commands.h Implement cmd_exec with 2012-08-14 11:45:11 +02:00
common.mk
completion.c Update style 2012-10-09 01:12:18 +02:00
completion.h
config.c merge callbacks for pages-per-row, first-page-column and page-padding 2013-10-26 16:02:21 +02:00
config.h
config.mk Emit signal from main context 2013-08-30 13:25:22 +02:00
database-plain.c Make the jumplist persistent on a per-file basis 2013-06-29 11:35:29 +02:00
database-plain.h
database-sqlite.c Make the jumplist persistent on a per-file basis 2013-06-29 11:35:29 +02:00
database-sqlite.h
database.c Make the jumplist persistent on a per-file basis 2013-06-29 11:35:29 +02:00
database.h Make the jumplist persistent on a per-file basis 2013-06-29 11:35:29 +02:00
document.c add functions to compute page positions 2013-10-26 17:13:55 +02:00
document.h let the document know about the current adjustments 2013-10-26 16:02:27 +02:00
Doxyfile
glib-compat.h g_get_real_time appeard in 2.28 2013-02-09 15:18:35 +01:00
internal.h
LICENSE Update copyright years 2013-01-22 21:56:43 +01:00
links.c add functions to compute page positions 2013-10-26 17:13:55 +02:00
links.h Add new shortcut function to display links 2012-12-07 18:05:59 +01:00
macros.h
main.c Fix deprecated gdk thread function calls 2013-08-30 19:25:24 +02:00
Makefile Save some forks 2013-08-22 22:26:52 +02:00
marks.c Allow numbers for quickmarks 2013-09-14 23:43:39 +02:00
marks.h
page-widget.c Finish moving of the page cache 2013-10-19 17:45:12 +02:00
page-widget.h Merge branch 'feature/renderer-take-2' into develop 2013-10-18 16:12:50 +02:00
page.c
page.h
plugin-api.h
plugin.c Add missing field initializer 2013-07-26 09:10:47 +02:00
plugin.h
print.c Rewrite render thread as request based system 2013-08-21 18:32:18 +02:00
print.h
README Emit signal from main context 2013-08-30 13:25:22 +02:00
render.c add functions to compute page positions 2013-10-26 17:13:55 +02:00
render.h Rename zathura_page_cache_add 2013-10-20 16:06:15 +02:00
shortcuts.c move zathura_get_document_size to document.c 2013-10-26 16:02:23 +02:00
shortcuts.h bisect functionality to navigate documents 2013-04-02 21:22:20 +02:00
synctex.c Update style 2012-10-09 01:12:18 +02:00
synctex.h
types.c Update style 2012-10-09 01:12:18 +02:00
types.h Merge branch 'feature/renderer-take-2' into develop 2013-10-18 16:12:50 +02:00
utils.c add functions to compute page positions 2013-10-26 17:13:55 +02:00
utils.h add functions to compute page positions 2013-10-26 17:13:55 +02:00
version.h.in
zathura.1.rst Document new bisect functionality 2013-04-02 21:22:20 +02:00
zathura.c add a custom refresh-view signal 2013-10-26 17:13:56 +02:00
zathura.desktop Add Keywords 2013-09-12 19:55:51 +02:00
zathura.h add a custom refresh-view signal 2013-10-26 17:13:56 +02:00
zathura.pc.in
zathurarc.5.rst add a config setting to prevent link_evaluate from changing scale 2013-10-26 01:12:32 +02:00

zathura - a document viewer
===========================
zathura is a highly customizable and functional document viewer based on the
girara user interface library and several document libraries.

Requirements
------------
gtk2 (>= 2.28)
glib (>= 2.28)
girara
sqlite3 (optional, >= 3.5.9)
check (for tests)
intltool
python-docutils (optional, for man pages)
libmagic from file(1) (optional, for mime-type detection)

Please note that you need to have a working pkg-config installation and that the
Makefile is only compatible with GNU make. If you don't have a working
pkg-config installation please set the GTK_INC, GTK_LIB, GIRARA_INC, GIRARA_LIB,
SQLITE_INC and SQLITE_LIB variables accordingly.

And also note that rst2man from python-docutils is needed to build the man pages.
If it is not installed, the man pages won't be built.

If you don't want to build with support for sqlite databases, you can set
WITH_SQLITE=0 and sqlite support won't be available.

The use of magic to detect mime types is optional and can be disabled by setting
WITH_MAGIC=0.

If you pass these flags as a command line argument to make, you have to ensure
to pass the same flags when executing the install target.

Installation
------------
To build and install zathura:

  make install

Uninstall:
----------
To delete zathura from your system, just type:

  make uninstall