33 lines
802 B
C++
33 lines
802 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#ifndef QSK_TEXT_PREDICTOR_H
|
|
#define QSK_TEXT_PREDICTOR_H
|
|
|
|
#include <QskGlobal.h>
|
|
#include <qobject.h>
|
|
|
|
// abstract base class for input methods for retrieving predictive text
|
|
|
|
class QSK_EXPORT QskTextPredictor : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
~QskTextPredictor() override;
|
|
|
|
public Q_SLOTS:
|
|
virtual void request( const QString& text ) = 0;
|
|
virtual void reset() = 0;
|
|
|
|
Q_SIGNALS:
|
|
void predictionChanged( const QString& text, const QStringList& candidates );
|
|
|
|
protected:
|
|
QskTextPredictor( QObject* );
|
|
};
|
|
|
|
#endif
|