mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
139 lines
5.4 KiB
C++
139 lines
5.4 KiB
C++
/* This file is part of the KDE libraries and the Kate part.
|
|
*
|
|
* Copyright (C) 2008-2010 by Michel Ludwig <michel.ludwig@kdemail.net>
|
|
* Copyright (C) 2009 by Joseph Wenninger <jowenn@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef ONTHEFLYCHECK_H
|
|
#define ONTHEFLYCHECK_H
|
|
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QObject>
|
|
#include <QPair>
|
|
#include <QString>
|
|
#include <QSet>
|
|
#include <QTimer>
|
|
|
|
#include <kspeller.h>
|
|
|
|
#include "katedocument.h"
|
|
|
|
class KateOnTheFlyChecker : public QObject, private KTextEditor::MovingRangeFeedback {
|
|
Q_OBJECT
|
|
|
|
enum ModificationType {TEXT_INSERTED = 0, TEXT_REMOVED};
|
|
|
|
typedef QPair<KTextEditor::MovingRange*, QString> SpellCheckItem;
|
|
typedef QList<KTextEditor::MovingRange*> MovingRangeList;
|
|
typedef QPair<KTextEditor::MovingRange*, QString> MisspelledItem;
|
|
typedef QList<MisspelledItem> MisspelledList;
|
|
|
|
typedef QPair<ModificationType, KTextEditor::MovingRange*> ModificationItem;
|
|
typedef QList<ModificationItem> ModificationList;
|
|
|
|
public:
|
|
KateOnTheFlyChecker(KateDocument *document);
|
|
~KateOnTheFlyChecker();
|
|
|
|
static int debugArea();
|
|
|
|
QPair<KTextEditor::Range, QString> getMisspelledItem(const KTextEditor::Cursor &cursor) const;
|
|
QString dictionaryForMisspelledRange(const KTextEditor::Range& range) const;
|
|
|
|
void clearMisspellingForWord(const QString& word);
|
|
|
|
public Q_SLOTS:
|
|
void textInserted(KTextEditor::Document *document, const KTextEditor::Range &range);
|
|
void textRemoved(KTextEditor::Document *document, const KTextEditor::Range &range);
|
|
|
|
void updateConfig();
|
|
void refreshSpellCheck(const KTextEditor::Range &range = KTextEditor::Range::invalid());
|
|
|
|
void updateInstalledMovingRanges(KateView *view);
|
|
|
|
protected:
|
|
KateDocument *const m_document;
|
|
QList<SpellCheckItem> m_spellCheckQueue;
|
|
KSpeller *m_speller;
|
|
SpellCheckItem m_currentlyCheckedItem;
|
|
static const SpellCheckItem invalidSpellCheckQueueItem;
|
|
MisspelledList m_misspelledList;
|
|
ModificationList m_modificationList;
|
|
KateDocument::OffsetList m_currentDecToEncOffsetList;
|
|
QMap<KTextEditor::View*, KTextEditor::Range> m_displayRangeMap;
|
|
|
|
void freeDocument();
|
|
|
|
MovingRangeList installedMovingRanges(const KTextEditor::Range& range);
|
|
|
|
void queueLineSpellCheck(KateDocument *document, int line);
|
|
/**
|
|
* 'range' must be on a single line
|
|
**/
|
|
void queueLineSpellCheck(const KTextEditor::Range& range, const QString& dictionary);
|
|
void queueSpellCheckVisibleRange(const KTextEditor::Range& range);
|
|
void queueSpellCheckVisibleRange(KateView *view, const KTextEditor::Range& range);
|
|
|
|
void addToSpellCheckQueue(const KTextEditor::Range& range, const QString& dictionary);
|
|
void addToSpellCheckQueue(KTextEditor::MovingRange *range, const QString& dictionary);
|
|
|
|
QTimer *m_viewRefreshTimer;
|
|
QPointer<KateView> m_refreshView;
|
|
|
|
virtual void removeRangeFromEverything(KTextEditor::MovingRange *range);
|
|
bool removeRangeFromCurrentSpellCheck(KTextEditor::MovingRange *range);
|
|
bool removeRangeFromSpellCheckQueue(KTextEditor::MovingRange *range);
|
|
virtual void rangeEmpty(KTextEditor::MovingRange *range);
|
|
virtual void rangeInvalid (KTextEditor::MovingRange* range);
|
|
virtual void mouseEnteredRange(KTextEditor::MovingRange *range, KTextEditor::View *view);
|
|
virtual void mouseExitedRange(KTextEditor::MovingRange *range, KTextEditor::View *view);
|
|
virtual void caretEnteredRange(KTextEditor::MovingRange *range, KTextEditor::View *view);
|
|
virtual void caretExitedRange(KTextEditor::MovingRange *range, KTextEditor::View *view);
|
|
|
|
KTextEditor::Range findWordBoundaries(const KTextEditor::Cursor& begin,
|
|
const KTextEditor::Cursor& end);
|
|
|
|
void deleteMovingRange(KTextEditor::MovingRange *range);
|
|
void deleteMovingRanges(const QList<KTextEditor::MovingRange*>& list);
|
|
void deleteMovingRangeQuickly(KTextEditor::MovingRange *range);
|
|
void stopCurrentSpellCheck();
|
|
|
|
protected Q_SLOTS:
|
|
void performSpellCheck();
|
|
void misspelling(const QString &word, int start);
|
|
void spellCheckDone();
|
|
|
|
void viewDestroyed(QObject* obj);
|
|
void addView(KTextEditor::Document *document, KTextEditor::View *view);
|
|
void removeView(KTextEditor::View *view);
|
|
|
|
void restartViewRefreshTimer(KateView *view);
|
|
void viewRefreshTimeout();
|
|
|
|
void handleModifiedRanges();
|
|
void handleInsertedText(const KTextEditor::Range &range);
|
|
void handleRemovedText(const KTextEditor::Range &range);
|
|
void handleRespellCheckBlock(int start, int end);
|
|
bool removeRangeFromModificationList(KTextEditor::MovingRange *range);
|
|
void clearModificationList();
|
|
};
|
|
|
|
#endif
|
|
|
|
// kate: space-indent on; indent-width 2; replace-tabs on;
|