~beernarrd/ubuntu-keyboard/slovenian-layout

« back to all changes in this revision

Viewing changes to plugins/westernsupport/predictivetextworker.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-05-27 15:37:47 UTC
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: package-import@ubuntu.com-20140527153747-1kyarbk91aon0tu6
Tags: upstream-0.99.trunk.phablet2+14.10.20140527
ImportĀ upstreamĀ versionĀ 0.99.trunk.phablet2+14.10.20140527

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#ifndef PREDICTIVETEXTWORKER_H
29
29
#define PREDICTIVETEXTWORKER_H
30
30
 
 
31
#include "spellchecker.h"
31
32
#include "candidatescallback.h"
32
33
#include <presage.h>
33
34
 
47
48
public slots:
48
49
    void parsePredictionText(const QString& surroundingLeft, const QString& preedit);
49
50
    void setPredictionLanguage(QString language);
 
51
    void updateSpellCheckWord(QString word);
50
52
 
51
53
signals:
52
54
    void newSuggestions(QStringList suggestions);
55
57
    std::string m_candidatesContext;
56
58
    CandidatesCallback m_presageCandidates;
57
59
    Presage m_presage;
 
60
    SpellChecker m_spellChecker;
58
61
};
59
62
 
60
63
#endif // PREDICTIVETEXTWORKER_H