forked from lmq3342xja/fcitx-qimpanel
-
Notifications
You must be signed in to change notification settings - Fork 4
/
my_action.cpp
78 lines (61 loc) · 1.65 KB
/
my_action.cpp
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
/*
* 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/>.
*/
#include "my_action.h"
MyAction::MyAction(const QString &text, QObject *parent) : QAction(text, parent)
{
}
MyAction::MyAction(const QIcon &icon, const QString &text, QObject *parent)
: QAction(icon, text, parent)
{
}
MyAction::~MyAction()
{
}
void MyAction::setProp(const KimpanelProperty &prop)
{
this->mProp = prop;
}
const KimpanelProperty& MyAction::getProp()
{
return this->mProp;
}
void MyAction::setSkinPath(const QString skinPath)
{
this->mSkinPath = skinPath;
}
const QString MyAction::getSkinPath()
{
return this->mSkinPath;
}
void MyAction::setSkinClass(const SkinClass skinClass)
{
this->mSkinClass = skinClass;
}
const SkinClass MyAction::getSkinClass()
{
return this->mSkinClass;
}
void MyAction::setMyActionType(const MyActionType myActionType)
{
this->mMyActionType = myActionType;
}
const MyActionType MyAction::getMyActionType()
{
return this->mMyActionType;
}