Tigran Aivazian
d90b01dbfd
Handle absolute attachment pathnames
...
We must use only the basename part of the embedded attachment filename,
because the directories used in the path on the machine where the
attachments were created may not even exist on the machine where they
are extracted.
2012-10-31 22:20:24 -04:00
Tigran Aivazian
ff23916940
Correct the comment.
...
The global variable "doc" is actually shared by ALL functions, so the
old comment was incorrect.
2012-10-31 22:19:54 -04:00
Tigran Aivazian
fc20c0af26
Support for extracting attachments from PDF file
...
This commit adds Alt-S command which invokes the external utility "extr"
passing it the full pathname of the open PDF file and the current page
number. The utility extracts all attachments on this page (if there are
any) and saves them in the same directory as the PDF file. The file
names given to attachments are decoded from within the PDF file itself,
i.e. they are the same as the original file names of the files embedded
in the PDF.
Conflicts:
pdfreader.lua
2012-10-31 22:19:39 -04:00
Qingping Hou
75f2c2774f
fix getopt module clearance in reader.lua
2012-10-31 22:15:02 -04:00
Tigran Aivazian
fe43ec7976
Fix the leftover from the old name jpg.h
2012-10-31 22:09:48 -04:00
Tigran Aivazian
503c9b077d
Initial commit of picviewer.
...
Conflicts:
Makefile
extentions.lua
pic.c
reader.lua
2012-10-31 22:09:27 -04:00
Qingping Hou
2b185961e8
remove getopt lua module in reader.lua
2012-10-31 22:02:53 -04:00
Qingping Hou
f70dc54864
update getXPointer method definition
2012-10-31 22:01:52 -04:00
Tigran Aivazian
db3796cd24
Remove alt_getopt.lua module altogether.
...
Conflicts:
Makefile
frontend/alt_getopt.lua
2012-10-31 21:47:41 -04:00
Tigran Aivazian
7f4be723a0
LuaJIT: make distclean -> make clean
...
Two reasons for this change:
1. The latest LuaJIT has no "distclean" target
2. The "distclean" is MUCH slower
2012-10-31 21:43:52 -04:00
chrox
7fb6f16552
add page size limit in reading pdf/djvu files
2012-10-31 21:43:44 -04:00
chrox
9e8a92862c
add koptreader.lua file in customupdate
...
Conflicts:
Makefile
2012-10-31 21:34:30 -04:00
chrox
441d061664
add DJVU reflow
...
Conflicts:
djvu.c
koptreader.lua
reader.lua
2012-10-31 21:30:06 -04:00
chrox
503a76db9a
Cleanup: pass globalzoom to reflow in dc
...
Conflicts:
pdfreader.lua
2012-10-31 21:20:53 -04:00
chrox
f0c7896bc8
add zoom in/out in reflow mode && PGBCK/PGFWD now work as expect
...
Conflicts:
pdfreader.lua
2012-10-31 21:20:12 -04:00
Tigran Aivazian
da88ca7a09
Get rid of unused variable in getCacheSize()
2012-10-31 21:19:54 -04:00
chrox
f3f97b6223
add pdf page reflow
...
Conflicts:
pdfreader.lua
2012-10-31 21:17:08 -04:00
Tigran Aivazian
89c5aad77f
Mention SDL/SDL-devel requirement on Fedora
2012-10-31 21:15:01 -04:00
Dobrica Pavlinusic
3c19365145
use DEBUG_CRENGINE from enviroment if available
...
This allows to specify DEBUG_CRENGINE=1 while compiling without editing
source code
2012-10-31 21:11:31 -04:00
Dobrica Pavlinusic
95f6ed5bd6
fix getCurrentPageLinks segfault on links without target
2012-10-31 21:11:16 -04:00
Dobrica Pavlinusic
484d85ab0f
getSelections can be 0
...
This depends on visible selections and not on content of file. So if we
have search results on screen this will be more than 0, but if we don't
we won't get any link shortcuts
2012-10-31 21:11:04 -04:00
Dobrica Pavlinusic
08d26596b8
use CRLog::debug instead of printf, removed unused code
2012-10-31 21:10:55 -04:00
Dobrica Pavlinusic
24d4b82f2d
getSelections can return empty ldomXRangeList
2012-10-31 21:10:15 -04:00
Tigran Aivazian
9c4a7ab860
Cleanup of pic.c
...
1. Report the true size of the document cache (0).
2. Cut down the number of pointer dereferences in drawPage().
2012-10-31 21:08:20 -04:00
Tigran Aivazian
d747739b35
Comment out [currently] unused variables.
2012-10-31 21:06:06 -04:00
Tigran Aivazian
ebc029dbbd
Recognize the files with ".jpeg" extension
...
Conflicts:
extentions.lua
2012-10-31 20:56:49 -04:00
Tigran Aivazian
6c9a3c3dc5
Factor out JPEG support into a module
...
This is to make adding support for new formats easier.
See the file pic_jpeg.h for the description of the interface that each
image format must support.
Conflicts:
Makefile
2012-10-31 20:54:24 -04:00
Tigran Aivazian
8c6fd35789
Initialize doc->image in openDocument
...
This is needed to protect against double free() in closeDocument().
2012-10-31 20:48:26 -04:00
Tigran Aivazian
01ce094adb
Free raw_image if it is unsupported.
...
If the number of colour components is neither 1 nor 3 we should remember
to free the buffer holding the raw decoded image before returning the
error to Lua.
2012-10-31 20:48:19 -04:00
Tigran Aivazian
74a60eeea2
Show the number of colour components via Menu.
...
Conflicts:
picviewer.lua
2012-10-31 20:46:28 -04:00
Tigran Aivazian
ee59fac328
Make closeDocument() re-entrant.
2012-10-31 20:46:11 -04:00
Tigran Aivazian
7609fc2dd0
Slight tidy-up of the code.
2012-10-31 20:45:50 -04:00
Tigran Aivazian
cac63cd390
Add support for colour JPEG images.
...
I used the luminance match algorithm for converting RGB colour images to
grayscale as it gives the best visual results (but at the cost of speed).
2012-10-31 20:43:41 -04:00
Dobrica Pavlinusic
2103461a43
return section separate from url and fix highlight
2012-10-31 20:42:47 -04:00
Dobrica Pavlinusic
f2933a32c0
added clearSelection
...
Conflicts:
unireader.lua
2012-10-31 20:40:40 -04:00
Dobrica Pavlinusic
bc4d2e7a49
added gotoLink
...
Conflicts:
unireader.lua
2012-10-31 20:40:31 -04:00
Dobrica Pavlinusic
60edf54e2f
getPageLinks implementation for crengine formats
...
Conflicts:
cre.cpp
crereader.lua
unireader.lua
2012-10-31 20:39:06 -04:00
Tigran Aivazian
f6c73c33d3
Commented out debug-only function readable_fs().
2012-10-31 20:36:19 -04:00
Tigran Aivazian
879c937762
Force the use of bash.
...
On some distributions (e.g. Ubuntu) the shell used for scripts is dash,
not bash and we explicitly rely on bash's features in the Makefile, so
we must guarantee that we are running with bash (not dash or anything
else).
2012-10-31 20:33:49 -04:00
Tigran Aivazian
b053667d9e
Add git-rev file.
...
Conflicts:
.gitignore
2012-10-31 20:33:33 -04:00
HW
4b2a9237c9
factored out blitting constraints check in a seperate function
...
the checking of the boundaries when blitting was incomplete
for the addblitToBuffer() function when compared with the
blitToBuffer() function. Factored out the redundant checking
procedure into a new function.
Should fix another bug leading to issue #401 and probably
more cases for specifying boundary boxes.
2012-10-31 20:31:51 -04:00
HW
cf38d02e80
added framework to check the involved pointers in blitbuffer operations
...
blitbuffer operations in 4bpp can be a nasty experience, easy to
get the pointers wrong. so a macro can check them now.
Conflicts:
blitbuffer.c
2012-10-31 20:31:23 -04:00
Tigran Aivazian
b56f4bf958
Support only grayscale images for now.
2012-10-31 20:25:21 -04:00
Tigran Aivazian
6d23997442
Add simple scaling support.
...
Conflicts:
pic.c
2012-10-31 20:24:59 -04:00
Dobrica Pavlinušić
b43249128e
Merge pull request #504 from houqp/new_ui_code
...
add multi-touch event definitions from linux/input.h
2012-10-31 12:35:11 -07:00
Qingping Hou
e07c1d147f
add multi-touch event definitions from linux/input.h
2012-10-21 01:25:48 +08:00
Dobrica Pavlinušić
95ad8ebe09
Merge pull request #470 from houqp/new_ui_code
...
PaperWhite support for einkfb module
2012-10-20 02:21:08 -07:00
Qingping Hou
d4e01f97a8
add mxcfb.h header for v5 firmware eink support
2012-10-20 03:38:56 +08:00
Qingping Hou
a43d1f7ae2
add kindlePaperWhite support for einkfb module
2012-10-20 03:33:27 +08:00
Dobrica Pavlinušić
e7c0ab8731
Merge pull request #440 from houqp/new_ui_code
...
one bug fix and add paperwhite detection
2012-10-15 06:21:52 -07:00