~feng-kylin/youker-assistant/youker-assistant

« back to all changes in this revision

Viewing changes to plugins/startupmanager/startupmanager.h

  • Committer: lixiang
  • Date: 2018-03-06 03:13:06 UTC
  • Revision ID: lixiang@kylinos.cn-20180306031306-fd7qnru3vm4a1xjd
Rewrite with Qt5, and add system monitor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 ~ 2018 National University of Defense Technology(NUDT) & Tianjin Kylin Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Kobe Lee    xiangli@ubuntukylin.com/kobe24_lixiang@126.com
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef STARTUPMANAGER_H
 
21
#define STARTUPMANAGER_H
 
22
 
 
23
#include <QObject>
 
24
#include <QString>
 
25
#include "../../component/plugininterface.h"
 
26
#include "startupwidget.h"
 
27
 
 
28
//插件入口
 
29
class StartupManager : public QObject , PluginInterface
 
30
{
 
31
  Q_OBJECT
 
32
  Q_INTERFACES(PluginInterface)
 
33
 
 
34
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
 
35
    Q_PLUGIN_METADATA(IID "com.kylin.Plugin.PluginInterface" FILE "startupmanager.json")//指定IID和.json文件
 
36
#endif
 
37
 
 
38
public:
 
39
    explicit StartupManager(QObject* parent = 0);
 
40
    virtual ~StartupManager();
 
41
    QWidget *centralWidget();
 
42
 
 
43
public:
 
44
    virtual QString getGuid();
 
45
    virtual QString getName();
 
46
    virtual QString getDescribe();
 
47
    virtual QString getPicture();
 
48
    virtual void doAction();
 
49
 
 
50
private:
 
51
    StartupWidget *startup_dialog = nullptr;
 
52
};
 
53
 
 
54
#endif // STARTUPMANAGER_H