diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 00bb99ac80741fc50ef8a289719373032f2391eb (patch) | |
tree | 3a5a9bf72f942784b38bf77dd66c534662fab5f2 /kmouth/wordcompletion/wordlist.h | |
download | tdeaccessibility-00bb99ac80741fc50ef8a289719373032f2391eb.tar.gz tdeaccessibility-00bb99ac80741fc50ef8a289719373032f2391eb.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmouth/wordcompletion/wordlist.h')
-rw-r--r-- | kmouth/wordcompletion/wordlist.h | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/kmouth/wordcompletion/wordlist.h b/kmouth/wordcompletion/wordlist.h new file mode 100644 index 0000000..d2f85ac --- /dev/null +++ b/kmouth/wordcompletion/wordlist.h @@ -0,0 +1,92 @@ +/*************************************************************************** + wordlist.h - description + ------------------- + begin : Don Sep 12 2002 + copyright : (C) 2002 by Gunnar Schmi Dt + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 <qxml.h> +#include <qvaluestack.h> +#include <qstring.h> +#include <qobject.h> +#include <qmap.h> + +class QTextCodec; +class KProgressDialog; + +namespace WordList { + +typedef QMap<QString,int> WordMap; + +KProgressDialog *progressDialog(); + +WordMap parseKDEDoc (QString language, KProgressDialog *pdlg); +WordMap parseFile (QString filename, QTextStream::Encoding encoding, QTextCodec *codec, KProgressDialog *pdlg); +WordMap parseDir (QString directory, QTextStream::Encoding encoding, QTextCodec *codec, KProgressDialog *pdlg); +WordMap mergeFiles (QMap<QString,int> files, KProgressDialog *pdlg); + +WordMap spellCheck (WordMap wordlist, QString dictionary, KProgressDialog *pdlg); + +bool saveWordList (WordMap map, QString filename); + +/** + * This class implements a parser for reading docbooks and generating word + * lists. It is intended to be used together with the Qt SAX2 framework. + * @author Gunnar Schmi Dt + */ + +class XMLParser : public QXmlDefaultHandler { +public: + XMLParser(); + ~XMLParser(); + + bool warning (const QXmlParseException &exception); + bool error (const QXmlParseException &exception); + bool fatalError (const QXmlParseException &exception); + QString errorString(); + + /** Processes the start of the document. */ + bool startDocument(); + + /** Processes the start tag of an element. */ + bool startElement (const QString &, const QString &, const QString &name, + const QXmlAttributes &attributes); + + /** Processes a chunk of normal character data. */ + bool characters (const QString &ch); + + /** Processes whitespace. */ + bool ignorableWhitespace (const QString &ch); + + /** Processes the end tag of an element. */ + bool endElement (const QString &, const QString &, const QString &name); + + /** Processes the end of the document. */ + bool endDocument(); + + /** returns a list of words */ + WordMap getList(); + +private: + WordMap list; + QString text; +}; + +} + +#endif |