cip / WikiOnBoard

Offline reader for zim files, in particular the wikipedia, for mobile devices. It is based on QT and zimlib. It is cross-platform and supports Symbian, Maemo, Linux and Windows based devices.
http://cip.github.com/WikiOnBoard/
15 stars 2 forks source link

Use WebView (webkit) instead of QTextBrowser for article display #84

Open cip opened 12 years ago

cip commented 12 years ago

Potential benefit:

  1. Better kinetic scrolling
  2. Nicer layout. (With css). Not sure whether really not possible with qtextbrowser.loadresource, but with webview its easier to load css than not loading it. (Due to image support)
  3. Should finally be portable to meego (See https://github.com/cip/WikiOnBoard/issues/71)

Potential drawback:

  1. Performance worse I.p. if lots of images in articles. Also scrolling jerky after load due to images. May make sense to consider a similar resize approach as used in qtextbrowser implementation.
  2. Scroll to anchor not working out of the box (and is not easy to add).
    Perhaps possible using javascript

Other??