forked from lenky0401/fcitx-qimpanel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
my_action.h
68 lines (58 loc) · 1.73 KB
/
my_action.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
/*
* 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 __MY_ACTION_H__
#define __MY_ACTION_H__
#include <QAction>
#include "kimpanelagent.h"
typedef enum MyActionType
{
IMAction,
StatusAction,
VKAction,
SkinAction,
MozcHiraganaAction,
MozcToolAction,
} MyActionType;
typedef enum SkinClass
{
FCITX,
} SkinClass;
class MyAction : public QAction
{
Q_OBJECT
public:
MyAction(const QString &text, QObject *parent);
MyAction(const QIcon &icon, const QString &text, QObject *parent);
virtual ~MyAction();
public:
void setProp(const KimpanelProperty &prop);
const KimpanelProperty& getProp();
void setSkinPath(const QString skinPath);
const QString getSkinPath();
void setSkinClass(const SkinClass skinClass);
const SkinClass getSkinClass();
void setMyActionType(const MyActionType myActionType);
const MyActionType getMyActionType();
private:
KimpanelProperty mProp;
QString mSkinPath;
SkinClass mSkinClass;
MyActionType mMyActionType;
};
#endif // __MY_ACTION_H__