~happyaron/+junk/fcitx-qimpanel-configtool

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
/***************************************************************************
 *   Copyright (C) 2009 by Wang Hoi <zealot.hoi@gmail.com>                 *
 *   Copyright (C) 2011 by CSSlayer <wengxt@gmail.com>                     *
 *                                                                         *
 *   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; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   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, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .        *
 ***************************************************************************/

#ifndef KIMPANEL_AGENTTYPE_H
#define KIMPANEL_AGENTTYPE_H

// Qt
#include <QString>
#include <QList>
#include <QVariant>

struct TextAttribute {
    enum Type {
        None,
        Decorate,
        Foreground,
        Background
    };
    Type type;
    int start;
    int length;
    int value;
};

struct KimpanelProperty {
    enum State {
        None = 0,
        Active = 1,
        Visible = (1 << 1)
    };
    Q_DECLARE_FLAGS(States, State)

    KimpanelProperty() { }

    KimpanelProperty(QString key, QString label, QString icon, QString tip, int state, QString menu) {
        this->key = key;
        this->label = label;
        this->tip = tip;
        this->icon = icon;
        this->state = (State) state;
        this->menu = menu;
    }

    QString key;
    QString label;
    QString icon;
    QString tip;
    States state;
    QString menu;

    QVariantMap toMap() const {
        QVariantMap map;
        map["key"] = key;
        map["label"] = label;
        map["icon"] = icon;
        map["tip"] = tip;
        map["state"] = (int) state;
        map["menu"] = menu;
        return map;
    }
};
Q_DECLARE_OPERATORS_FOR_FLAGS(KimpanelProperty::States)

struct KimpanelLookupTable {
    struct Entry {
        QString label;  //存放标号字符串,比如“1.”,“2.”,“3.”,“4.”,“5.”
        QString text;   //存放候选词字符串,比如“啊”,“阿”,“吖”,“呵”,“腌”
        QList<TextAttribute> attr;
    };

    QList<Entry> entries;
    bool has_prev;
    bool has_next;
};

#endif // KIMPANEL_AGENTTYPE_H