2
0
mirror of https://github.com/koreader/koreader synced 2024-11-13 19:11:25 +00:00
Commit Graph

1001 Commits

Author SHA1 Message Date
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
Qingping Hou
e07c1d147f add multi-touch event definitions from linux/input.h 2012-10-21 01:25:48 +08: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
Qingping Hou
54b33bd6a7 fix DXG detection 2012-10-14 14:32:08 -04:00
Qingping Hou
2985d27569 rewrite device detection 2012-10-14 14:22:01 +08:00
Qingping Hou
1adc84c2ac rename slider event to fake_events again 2012-10-14 13:50:00 +08:00
Qingping Hou
ea022b651f add rendermode support for djvu documents 2012-10-09 18:26:01 -04:00
HW
b012f1b037 changed page number reading
this is far from complete since in fact, we read page references
which follow a more complex syntax. while specifying page numbers
is one option for them, they might also specify page names. we
currently do not yet have code for this case and we will return
"-1" for all page references we can not parse.
2012-10-09 16:27:31 -04:00
Tigran Aivazian
0d740d2b3b Optimize DjVu drawPage() function
We only need to fill the image buffer with white colour if DjVu page
rendering function did not fill it in with page data.
2012-10-09 16:23:21 -04:00
Qingping Hou
8ccbfba6cc Djvu Validate patch from tigran123
refer to commit in master(kpv) tree:
64b6ef4afd
2012-10-09 16:15:13 -04:00
Qingping Hou
f641f50e2a add comment for build version reading in the future 2012-10-09 16:14:09 -04:00