File: README

package info (click to toggle)
kchmviewer 6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,732 kB
  • ctags: 890
  • sloc: cpp: 9,796; sh: 178; makefile: 3
file content (105 lines) | stat: -rw-r--r-- 4,447 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
1. OVERVIEW

  KchmViewer is a chm (MS HTML help file format) viewer, written in C++. Unlike most existing CHM viewers for Unix,
  it uses Trolltech Qt widget library, and does not depend on KDE or GNOME. It has full KDE4 support.

  The main advantage of KchmViewer is extended support for non-English languages. Unlike others, KchmViewer in most 
  cases correctly detects chm file encoding, correctly shows tables of context of Russian, Korean, Chinese and 
  Japanese help files. It also correctly searches text in non-English help files, including Korean, Chinese and 
  Japanese. 

  KchmViewer is written by Georgy Yunaev (gyunaev@ulduzsoft.com), and is licensed under GNU GPL license. Please 
  do NOT use this email for bug reporting; see below.


2. FEATURES

  - Standalone viewer, depends on Qt4 only. Does not require KDE, GNOME or wxWidgets toolkit.
  - Could be optionally built with KDE4 support, using KHTML and KDE dialogs.
  - Completely safe and harmless. Does not support JavaScript in any way, optionally warns you before opening an 
    external web page, or switching to another help file. 
  - Correctly detects and shows encoding of any valid chm file. 
  - Correctly shows non-English chm files, including Cyrillic, Chinese, Japanese and others. 
  - Correctly searches in non-English chm files using chm built-in search index. 
  - Shows an appropriate image for every TOC entry. 
  - Has complete chm index support, including multiple index entries, cross-links and parent/child entries in index. 
  - Persistent bookmarks support. Allows to store bookmarks even if "Favorites" window was not enabled for this chm 
    file. Also stores the screen position for every bookmark. You can also edit/delete bookmarks. 
  - For any opened chm file, stores the last opened window, search history, bookmark history, font size and so on, so
    when you open this file again, everything is always on the place. 
  - Has easy and powerful search-in-page support. 
  - Allows to increase or decrease the font size, so physically handicapped people can read texts easily. 
  - Has standard Back/Forward/Home navigation. 
  - Can print the opened pages on a standard printer (usually via CUPS). 
  - Has complex search query support. You can use search queries like "lazy people" +learn -not.


3. INSTALLATION

  Usually kchmviewer is distributed in source code archive, so you need to compile it first. It requires Qt version 
  4.4 or higher. Note that you need to install qt4-devel and qt4-tools packages (the last one might be included in 
  qt4-devel in your distribution), not just qt package.

  Also make sure you have chmlib-devel (some distros have it as libchm-devel) package installed. KDE build will check 
  for its presence, but qmake does not have necessary functionality to do so. If you are getting errors regarding missing 
  chm_lib.h file this means chmlib-devel is not installed.


3.1. Qt-only version

  To compile Qt-only version of kchmviewer, follow the procedure:

  > tar zxf kchmviewer-<version>.tar.gz
  > cd kchmviewer-<version>
  > qmake
  > make
  
  The compiled binary is in bin/kchmviewer. You could copy it somewhere, or use it as-is. It does not require installation.

  If QtWebKit module is not found, you will get the following error:

  > kchmviewwindow_qtwebkit.h:25:21: error: QWebView: No such file or directory

  Either install QtWebKit module, or remove "webkit" from QT+= line in src/src.pro

  
3.2 KDE4 version

  To compile the version of kchmviewer with KDE4 support, follow the procedure:

  > tar zxf kchmviewer-<version>.tar.gz
  > mkdir build
  > cd build
  > cmake ..
  > make
  > sudo make install

  For KDE version the installation is required, since the KHTML KIO slave cannot be used in place.


4. USAGE
 
  Usage of kchmviewer is simple:

  > kchmviewer mychmfile.chm

  for the rest of command-line options, see kchmviewer --help


5. BUG REPORTING

  Please use kchmviewer@ulduzsoft.com for bug reporting. 


6. THANKS

  Thanks to:
  - Jed Wing, the author of chmlib. This library is used by kchmviewer to access chm content.
  - Razvan Cojocaru, the author of xchm. I used some ideas and chm processing code from xchm.
  - Peter Volkov for various bug reports and improvement suggestions. 
  - All the users, who report bugs, and suggest features. You help making kchmviewer better.


7. LICENSE

    kchmviewer is distributed under GNU GPL license version 3.