forked from lmq3342xja/fcitx-qimpanel
-
Notifications
You must be signed in to change notification settings - Fork 4
/
main_model.h
134 lines (120 loc) · 4 KB
/
main_model.h
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* Copyright (C) 2013 National University of Defense Technology(NUDT) & Kylin Ltd.
*
* Authors:
* lenky gao [email protected]/[email protected]
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __MAIN_MODEL_H__
#define __MAIN_MODEL_H__
#include "config.h"
#ifdef IS_QT_5
#include <QQmlListProperty>
#endif
#ifdef IS_QT_4
#include <QDeclarativeView>
#include <qdeclarative.h>
#endif
#include "candidate_word.h"
#include "kimpanelagenttype.h"
class MainModel : public QObject
{
Q_OBJECT
Q_PROPERTY(QString inputString READ inputString WRITE setInputString
NOTIFY inputStringChanged)
Q_PROPERTY(QString tipsString READ tipsString WRITE setTipsString
NOTIFY tipsStringChanged)
#ifdef IS_QT_5
Q_PROPERTY(QQmlListProperty<CandidateWord> candidateWords
READ candidateWords NOTIFY candidateWordsChanged)
#endif
#ifdef IS_QT_4
Q_PROPERTY(QDeclarativeListProperty<CandidateWord> candidateWords
READ candidateWords NOTIFY candidateWordsChanged)
#endif
Q_PROPERTY(bool hasPrev READ hasPrev WRITE setHasPrev
NOTIFY hasPrevChanged)
Q_PROPERTY(bool hasNext READ hasNext WRITE setHasNext
NOTIFY hasNextChanged)
Q_PROPERTY(int highLight READ highLight WRITE setHighLight
NOTIFY highLightChanged)
Q_PROPERTY(bool isHorizontal READ isHorizontal WRITE setIsHorizontal
NOTIFY isHorizontalChanged)
Q_PROPERTY(bool showTips READ showTips WRITE setShowTips
NOTIFY showTipsChanged)
Q_PROPERTY(bool showPreedit READ showPreedit WRITE setShowPreedit
NOTIFY showPreeditChanged)
Q_PROPERTY(bool showLookupTable READ showLookupTable WRITE setShowLookupTable
NOTIFY showLookupTableChanged)
public:
static MainModel* self();
virtual ~MainModel();
void init();
private:
explicit MainModel();
static MainModel *mSelf;
public:
void resetData();
void setInputStringCursorPos(int pos);
public:
void setInputString(const QString inputString);
QString inputString() const;
void setTipsString(const QString tipsString);
QString tipsString() const;
void setCandidateWords(const KimpanelLookupTable &lookup_table);
#ifdef IS_QT_5
QQmlListProperty<CandidateWord> candidateWords();
#endif
#ifdef IS_QT_4
QDeclarativeListProperty<CandidateWord> candidateWords();
#endif
void setHasPrev(const bool hasPrev);
bool hasPrev() const;
void setHasNext(const bool hasNext);
bool hasNext() const;
void setHighLight(const int highLight);
int highLight() const;
void setIsHorizontal(const bool isHorizontal);
bool isHorizontal() const;
void setShowTips(const bool showTips);
bool showTips() const;
void setShowPreedit(const bool showPreedit);
bool showPreedit() const;
void setShowLookupTable(const bool showLookupTable);
bool showLookupTable() const;
signals:
void inputStringChanged();
void tipsStringChanged();
void candidateWordsChanged();
void hasPrevChanged();
void hasNextChanged();
void highLightChanged();
void isHorizontalChanged();
void showTipsChanged();
void showPreeditChanged();
void showLookupTableChanged();
void mainWindowSizeChanged();
private:
QString mInputString;
QString mTipsString;
QList<CandidateWord *> mCandidateWords;
bool mHasPrev;
bool mHasNext;
int mHighLight;
bool mIsHorizontal;
bool mShowTips;
bool mShowPreedit;
bool mShowLookupTable;
};
#endif // __MAIN_MODEL_H__