diff options
Diffstat (limited to 'sip/tdespell/ksyntaxhighlighter.sip')
-rw-r--r-- | sip/tdespell/ksyntaxhighlighter.sip | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/sip/tdespell/ksyntaxhighlighter.sip b/sip/tdespell/ksyntaxhighlighter.sip new file mode 100644 index 0000000..a1329b0 --- /dev/null +++ b/sip/tdespell/ksyntaxhighlighter.sip @@ -0,0 +1,114 @@ +// +// Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com> +// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson +// may also apply + + +// Generated by preSip +// module tdespell version KDE 3.5.3 + + +// This software 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. +// +// This software is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public +// License along with this library; see the file COPYING. +// If not, write to the Free Software Foundation, Inc., +// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +%If ( KDE_3_2_0 - ) + +class KSyntaxHighlighter : TQSyntaxHighlighter +{ +%TypeHeaderCode +#include <ksyntaxhighlighter.h> +%End + + +public: + + enum SyntaxMode + { + PlainTextMode, + RichTextMode + }; + + KSyntaxHighlighter (TQTextEdit*, bool = 0, const TQColor& = TQt ::black , const TQColor& = TQColor (0x00 ,0x80 ,0x00 ), const TQColor& = TQColor (0x00 ,0x80 ,0x00 ), const TQColor& = TQColor (0x00 ,0x80 ,0x00 ), KSyntaxHighlighter::SyntaxMode = PlainTextMode ); + int highlightParagraph (const TQString&, int); + +}; // class KSyntaxHighlighter + +%End + + +%If ( KDE_3_2_0 - ) + +class KSpellingHighlighter : KSyntaxHighlighter +{ +%TypeHeaderCode +#include <ksyntaxhighlighter.h> +%End + + +public: + KSpellingHighlighter (TQTextEdit*, const TQColor& = TQt ::red , bool = 0, const TQColor& = TQt ::black , const TQColor& = TQColor (0x00 ,0x80 ,0x00 ), const TQColor& = TQColor (0x00 ,0x80 ,0x00 ), const TQColor& = TQColor (0x00 ,0x80 ,0x00 )); + virtual int highlightParagraph (const TQString&, int); + virtual bool isMisspelled (const TQString&) = 0; + bool intraWordEditing () const; + void setIntraWordEditing (bool); + static TQStringList personalWords (); + +}; // class KSpellingHighlighter + +%End + + +%If ( KDE_3_2_0 - ) + +class KDictSpellingHighlighter : TQObject, KSpellingHighlighter +{ +%TypeHeaderCode +#include <ksyntaxhighlighter.h> +%End + + +public: + KDictSpellingHighlighter (TQTextEdit*, bool = 1, bool = 1, const TQColor& = TQt ::red , bool = 0, const TQColor& = TQt ::black , const TQColor& = TQColor (0x00 ,0x80 ,0x00 ), const TQColor& = TQColor (0x00 ,0x70 ,0x00 ), const TQColor& = TQColor (0x00 ,0x60 ,0x00 ), KSpellConfig* = 0); + virtual bool isMisspelled (const TQString&); + static void dictionaryChanged (); + void restartBackgroundSpellCheck (); + void setActive (bool); + bool isActive () const; + void setAutomatic (bool); + bool automatic () const; + +signals: + void activeChanged (const TQString&); + void newSuggestions (const TQString&, const TQStringList&, uint); + +protected: + TQString spellKey (); + bool eventFilter (TQObject*, TQEvent*); + +protected slots: + void slotMisspelling (const TQString&, const TQStringList&, uint); + void slotCorrected (const TQString&, const TQString&, uint); + void slotRehighlight (); + void slotDictionaryChanged (); + void slotSpellReady (KSpell*); + void slotAutoDetection (); + void slotLocalSpellConfigChanged (); + void slotKSpellNotResponding (); + +}; // class KDictSpellingHighlighter + +%End + |