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

« back to all changes in this revision

Viewing changes to component/selectwidget.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 SELECTWIDGET_H
 
21
#define SELECTWIDGET_H
 
22
 
 
23
#include <QDialog>
 
24
#include <QVBoxLayout>
 
25
#include <QMouseEvent>
 
26
 
 
27
#include "mytitlebar.h"
 
28
#include "selectlistwidget.h"
 
29
#include "../component/utils.h"
 
30
 
 
31
class SelectWidget : public QDialog
 
32
{
 
33
    Q_OBJECT
 
34
public:
 
35
    SelectWidget(CleanerModuleID id = InvalidID, const QString &title = "", bool needMin = false, QWidget *parent = 0);
 
36
    ~SelectWidget();
 
37
 
 
38
    void loadData(const QString &title, const QStringList &cachelist);
 
39
    void moveCenter();
 
40
 
 
41
public slots:
 
42
    void onClose();
 
43
 
 
44
signals:
 
45
    void notifyMainCheckBox(int status);
 
46
    void refreshSelectedItems(CleanerModuleID id, const QStringList &selecteds);
 
47
 
 
48
protected:
 
49
    void mousePressEvent(QMouseEvent *event);
 
50
    void mouseReleaseEvent(QMouseEvent *event);
 
51
    void mouseMoveEvent(QMouseEvent *event);
 
52
 
 
53
private:
 
54
    CleanerModuleID m_id;
 
55
    QVBoxLayout *m_mainLayout = nullptr;
 
56
    MyTitleBar *m_titleBar = nullptr;
 
57
    SelectListWidget *m_listWidget = nullptr;
 
58
    QPoint m_dragPosition; //移动的距离
 
59
    bool m_mousePressed; //按下鼠标左键
 
60
};
 
61
 
 
62
#endif // SELECTWIDGET_H