summaryrefslogtreecommitdiffstats
path: root/kmouth/wordcompletion/wordlist.h
blob: 11dd6c119771adba51aaba40bc82c94011efb4f6 (plain)
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
/***************************************************************************
                          wordlist.h  -  description
                             -------------------
    begin                : Don Sep 12 2002
    copyright            : (C) 2002 by Gunnar Schmi Dt
    email                : kmouth@schmi-dt.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

// $Id$

#ifndef WORDLIST_H
#define WORDLIST_H

#include <tqxml.h>
#include <tqvaluestack.h>
#include <tqstring.h>
#include <tqobject.h>
#include <tqmap.h>

class TQTextCodec;
class KProgressDialog;

namespace WordList {

typedef TQMap<TQString,int> WordMap;

KProgressDialog *progressDialog();

WordMap parseKDEDoc (TQString language, KProgressDialog *pdlg);
WordMap parseFile   (TQString filename,  TQTextStream::Encoding encoding, TQTextCodec *codec, KProgressDialog *pdlg);
WordMap parseDir    (TQString directory, TQTextStream::Encoding encoding, TQTextCodec *codec, KProgressDialog *pdlg);
WordMap mergeFiles  (TQMap<TQString,int> files, KProgressDialog *pdlg);

WordMap spellCheck  (WordMap wordlist,  TQString dictionary,   KProgressDialog *pdlg);

bool saveWordList (WordMap map, TQString filename);

/**
 * This class implements a parser for reading docbooks and generating word
 * lists. It is intended to be used together with the TQt SAX2 framework.
 * @author Gunnar Schmi Dt
 */

class XMLParser : public TQXmlDefaultHandler {
public: 
   XMLParser();
   ~XMLParser();

   bool warning (const TQXmlParseException &exception);
   bool error (const TQXmlParseException &exception);
   bool fatalError (const TQXmlParseException &exception);
   TQString errorString();
 
   /** Processes the start of the document. */
   bool startDocument();
                       
   /** Processes the start tag of an element. */
   bool startElement (const TQString &, const TQString &, const TQString &name,
                      const TQXmlAttributes &attributes);

   /** Processes a chunk of normal character data. */
   bool characters (const TQString &ch);

   /** Processes whitespace. */
   bool ignorableWhitespace (const TQString &ch);

   /** Processes the end tag of an element. */
   bool endElement (const TQString &, const TQString &, const TQString &name);
   
   /** Processes the end of the document. */
   bool endDocument();

   /** returns a list of words */
   WordMap getList();

private:
   WordMap list;
   TQString text;
};

}

#endif