forked from lmq3342xja/fcitx-qimpanel
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsystem_tray_menu.h
94 lines (84 loc) · 2.87 KB
/
system_tray_menu.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
/*
* 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 __SYSTEM_TRAY_MENU_H__
#define __SYSTEM_TRAY_MENU_H__
#include <QMenu>
#include <QIcon>
#include "kimpanelagent.h"
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <QProcess>
#include "config.h"
class SystemTrayMenu : public QMenu
{
Q_OBJECT
public:
SystemTrayMenu(PanelAgent *agent);
virtual ~SystemTrayMenu();
void init();
private:
void updateMainMenu();
private slots:
void clearMenu();
void triggerUpdateVKListMenu();
void triggerUpdateIMListMenu();
void truggerUpdateMozcHiraganaMenu();
void truggerUpdateMozcToolMenu();
void menuItemOnClick(QAction* action);
private:
PanelAgent *mAgent;
public slots:
void execMenu(const QList<KimpanelProperty> &prop_list);
void registerProperties(const QList<KimpanelProperty> &props);
void updateProperty(const KimpanelProperty &prop);
private:
//return True if is the fcitx-kbd checked.
QString doUpdateIMListMenu(const QList<KimpanelProperty> &prop_list);
void doUpdateVKListMenu(const QList<KimpanelProperty> &prop_list);
void doUpdateMozcHiraganaListMenu(const QList<KimpanelProperty> &prop_list);
void doUpdateMozcToolListMenu(const QList<KimpanelProperty> &prop_list);
void startChildApp(const char *app_exe, const char * const argv[] = NULL);
public:
void restart();
private:
static bool isUnity();
static bool isIMList(const QString &key);
static bool isVKList(const QString &key);
static bool isMozcHiraganaList(const QString &key);
static bool isMozcToolList(const QString &key);
private:
QString mCurtIMLabel;
//前两个用不到,见后端KimpanelRegisterAllStatus()函数
#define StatusMenuSkip (2)
QList<KimpanelProperty> mIMList;
QList<KimpanelProperty> mVKList;
QList<KimpanelProperty> mMozcToolList;
QList<KimpanelProperty> mMozcHiraganaList;
QList<KimpanelProperty> mStatusMenuList;
QProcess *configtoolPro ;
QMenu *mSkinMenu;
QMenu *mVKListMenu;
QMenu *mMozcToolMenu;
QMenu *mMozcHiraganaMenu;
private:
void skinMenuItemOnClick(QAction* action);
void doUpdateSkinListMenu();
};
#endif // __SYSTEM_TRAY_MENU_H__