Commit Graph

661 Commits (8b8a8d2d8e291d22e6272826b8f7f7bbd62011dc)

Author SHA1 Message Date
Giorgio Micotti 45cc6492ab Solve bug #210. 11 years ago
{Qingping, Dave} Hou 6586d55ad3 Merge pull request #254 from chrox/menu_layout
fix widget out-of-bound in bookmark and toc menus
11 years ago
chrox 094a98b819 split string with delimiters captured 11 years ago
chrox 1c728d6945 fix widget out-of-bound in bookmark and toc menus
The original menu layout needs manual dimension calculations
such as  white padding for displaying page information in
footer as the title, all item contents and footer are stacked
in one VerticalGroup. Out-of-bound error(koreader/koreader-base#43)
will occur in some corner cases if we missed something in
the calculation. The patch sent in this PR invented a new
layout for menu widget in which no manual calculation is needed
for displaying the footer. And the footer will be placed well
inside the menu frame.

   +--------------+
   | +----------+ |
   | |+--------+| |
   | || Header || |
   | |+--------+| |
   | |+--------+| |
   | ||  Item  || |
   | ||  Item  || |
   | |+--------+| |
   | |(Vertical | |
   | |  Group)  | |
   | +----------+ |
   |    Footer    |
   |(OverlapGroup)|
   +--------------+
11 years ago
Qingping Hou 4c40fece74 add hidden file toggle 11 years ago
Paulo Matias 92e12d6466 Use ReaderFrontLight:addToMainMenu in FM
Check if frontlight is present using the same method as ReaderFrontLight:init,
just for consistency.
11 years ago
Paulo Matias 3d04925109 Remove FileChooser:compressPath, use util.realpath 11 years ago
{Qingping, Dave} Hou 87655ffdec Merge pull request #237 from thotypous/fix-crash-root
Fix crash when trying to go to / on FM
11 years ago
Paulo Matias e668379f6d Fix crash when trying to go to / on FM
Deals with more cases in FileChooser:compressPath, including `/mnt/..`.
11 years ago
Paulo Matias d7b747d6dd Change util.isEmulated to boolean and fix frontlight
Device:hasFrontlight always returned a true-like value because util.isEmulated was an integer.
Fixed this, also, used a polymorphic object design to reduce FrontLight code, and
adapted BaseFrontLight for the emulator.
11 years ago
Qingping Hou c951eacc35 fix: reset current page on item_table switch for menu widget 11 years ago
Qingping Hou cad8ddec92 disable path compress on relative path 11 years ago
Paulo Matias 54636e9407 Add InputText:setText and avoid non-intuitive UI behavior after light toggle 11 years ago
Paulo Matias 2492ca247a Use ffi/lulip.lua from koreader-base; change package.path 11 years ago
Paulo Matias 9ce281873c Remove ffi.cdef to avoid conflict with ffi/util.lua from koreader-base 11 years ago
chrox 6f89fec891 fix calling setFontSize in pdfreader 11 years ago
chrox 44c31afe62 fix bug #179
It seems that the setPageMargins method will mess up XPointer of current view.
This bugfix simply disables page margin restoring in readercopt.lua so that
reading position is restorable.
11 years ago
chrox 75eb0e6f23 bugfix: fix screen ghosting after swiping north/south in scroll mode
As swiping north/south will generate several pan gestures which will
set refresh mode to WAVEFORM_MODE_A2, we should explicitly do a full
refresh in order to switch refresh waveform from WAVEFORM_MODE_A2
to WAVEFORM_MODE_GC16 as in OnPanRelease.
11 years ago
Paulo Matias 04ebaf0964 Use `lfs.currentdir()` to get default `root_dir` as an absolute path 11 years ago
Paulo Matias 48d6020930 Initialize FileChooser with root_path, otherwise the command line argument (directory) is ignored 11 years ago
Qingping Hou 656f02c7f6 fix out-of-bound bug in filemanager 11 years ago
Qingping Hou 94e89e8e38 add missing import for group widget in readerview 11 years ago
Huang Xin 2e8b5cb39c Merge pull request #215 from houqp/houqp-master
check frontlight before setting intensity
11 years ago
Qingping Hou ce4d628028 only insert frontlight menu item if frontlight is detected 11 years ago
Huang Xin 4e83288040 Merge pull request #214 from houqp/filemanager
bug fix in class system & rewrite filemanager
11 years ago
Qingping Hou caf7ebb9ae bug fix & rewrite filemanager 11 years ago
Qingping Hou aef2c4123e fix Menu widget initialization on inheritance bug in filechooser 11 years ago
Qingping Hou c66429c903 add is_popout and no_title to menu widget 11 years ago
Qingping Hou b49a338121 add extend method to widget 11 years ago
Paulo Matias e45442c1f6 Refactor Kobo frontlight_intensity restoration: move to reader.lua 11 years ago
Paulo Matias f68edd97ba Merge branch 'master' into frontlight3 11 years ago
Paulo Matias 44258d4ba6 Force initialization of FrontLight in Input:init() to avoid glitches in Kobo 11 years ago
Huang Xin 7c680a181d Merge pull request #211 from houqp/houqp-master
move emu_event to /tmp for vagrant box
11 years ago
Paulo Matias 81facc2ce9 Refactor min/max handling in BaseFrontLight; use getFrontlight() in ReaderFrontLight for consistency 11 years ago
Paulo Matias 3f3fba2fdf Big refactoring: Device handles frontlight device, ReaderFrontLight now only GUI 11 years ago
Paulo Matias 232d8cd74a Fix multiple ReaderFrontLight instances, i18n issues, and refactor event handling to follow codebase patterns 11 years ago
Qingping Hou 82e4863827 move emu_event to /tmp
because virtualbox cannot create fifo file in shared folders
11 years ago
Huang Xin 0d421afbe4 Merge pull request #208 from houqp/houqp-master
fix unnecessary frontlight module require
11 years ago
Qingping Hou a0676790cd fix unnecessary frontlight module require 11 years ago
Paulo Matias 8bebb93a8b Merge branch 'master' of https://github.com/koreader/koreader 11 years ago
Giorgio Micotti a145ee19aa Add firmware detection for kobo, adjust input accordingly. 11 years ago
Paulo Matias 667378d64a Merge branch 'master' of https://github.com/koreader/koreader
Conflicts:
	koreader_kobo.sh
11 years ago
Paulo Matias cc9f9cce4d Added LuaJIT profiling support (lulip), better cmdline option handling. 11 years ago
Giorgio Micotti cea353323e Initial light control widget; final fixes for kobo light 11 years ago
chrox 1520fd7974 add page up/down buttons in menus that have more than one pages 11 years ago
chrox 4547273d7b add icon button and show/hide method of button 11 years ago
Giorgio Micotti 103133d216 Fix some dumb mistakes, toggle light now works 11 years ago
{Qingping,Dave} Hou 3d8b6ca838 Merge pull request #191 from chrox/master
fix fast refresh waveform
11 years ago
chrox fa21dfda63 remove double_tap processing code in keyboard 11 years ago
chrox 225ae9f826 disable double tap detection in keyboard widget 11 years ago