1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*
* SPDX-FileCopyrightText: 2012~2017 CSSlayer <wengxt@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
*/
#ifndef _QUICKPHRASE_EDITOR_MODEL_H_
#define _QUICKPHRASE_EDITOR_MODEL_H_
#include <QAbstractTableModel>
#include <QFutureWatcher>
#include <QList>
#include <QObject>
#include <QSet>
#include <QTextStream>
#include <QVariant>
#include <Qt>
#include <utility>
class QFile;
namespace fcitx {
using QStringPairList = QList<std::pair<QString, QString>>;
class QuickPhraseModel : public QAbstractTableModel {
Q_OBJECT
public:
explicit QuickPhraseModel(QObject *parent = 0);
virtual ~QuickPhraseModel();
Qt::ItemFlags flags(const QModelIndex &index) const override;
bool setData(const QModelIndex &index, const QVariant &value,
int role = Qt::EditRole) override;
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index,
int role = Qt::DisplayRole) const override;
void load(const QString &file, bool append);
void loadData(QTextStream &stream);
void addItem(const QString ¯o, const QString &word);
void deleteItem(int row);
void deleteAllItem();
QFutureWatcher<bool> *save(const QString &file);
void saveDataToStream(QTextStream &dev);
bool needSave() const;
Q_SIGNALS:
void needSaveChanged(bool needSave);
private Q_SLOTS:
void loadFinished();
void saveFinished();
private:
QStringPairList parse(const QString &file);
bool saveData(const QString &file, const fcitx::QStringPairList &list);
void setNeedSave(bool needSave);
bool needSave_;
QStringPairList list_;
QFutureWatcher<QStringPairList> *futureWatcher_;
};
} // namespace fcitx
#endif // _QUICKPHRASE_EDITOR_MODEL_H_
|