~michael-sheldon/ubuntu-keyboard/fix-1385518-rtm

« back to all changes in this revision

Viewing changes to src/lib/logic/abstractlanguagefeatures.h

  • Committer: CI bot
  • Author(s): Michael Sheldon
  • Date: 2014-09-10 14:57:01 UTC
  • mfrom: (215.3.9 fix-1359404)
  • Revision ID: ps-jenkins@lists.canonical.com-20140910145701-j2o8iqkw4qtf4viw
Only switch back automatically from the symbol page if the user presses space or apostrophe and make pre-edit behaviour when entering symbols more consistent. Fixes: 1359404

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    virtual QString appendixForReplacedPreedit(const QString &preedit) const = 0;
48
48
    virtual bool isSeparator(const QString &text) const { Q_UNUSED(text); return false; }
49
49
    virtual QString fullStopSequence() const { return QString(); }
 
50
    virtual bool isSymbol(const QString &text) const { Q_UNUSED(text); return false; }
50
51
};
51
52
 
52
53
#endif // MALIIT_KEYBOARD_ABSTRACTLANGUAGEFEATURES_H