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

« back to all changes in this revision

Viewing changes to src/suspensionframe.h

  • Committer: kobe
  • Date: 2015-02-13 07:37:10 UTC
  • Revision ID: xiangli@ubuntukylin.com-20150213073710-0jyp02ilyi5njj10
Qt Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2013 ~ 2014 National University of Defense Technology(NUDT) & Kylin Ltd.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU General Public License as published by
6
 
 * the Free Software Foundation; version 3.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 */
16
 
#ifndef SUSPENSIONFRAME_H
17
 
#define SUSPENSIONFRAME_H
18
 
 
19
 
#include <QWidget>
20
 
#include <QtGui>
21
 
namespace Ui {
22
 
class SuspensionFrame;
23
 
}
24
 
 
25
 
class SuspensionFrame : public QWidget
26
 
{
27
 
    Q_OBJECT
28
 
    
29
 
public:
30
 
    explicit SuspensionFrame(QWidget *parent = 0);
31
 
    virtual QSize sizeHint()const;
32
 
    QString get_locale_version();
33
 
    ~SuspensionFrame();
34
 
    QString getCPURatio();
35
 
    
36
 
private:
37
 
    Ui::SuspensionFrame *ui;
38
 
    QPoint dragPos;
39
 
    QSize initSize;
40
 
    QImage wheel;
41
 
    QPixmap blister;
42
 
    int ratio_sus;
43
 
    int cpu_sus;
44
 
    QString locale_Lan;
45
 
    QStringList readStatFile();
46
 
    double nowtotalCPU;
47
 
    double lastTotalCPU;
48
 
    double nowIdle;
49
 
    double lastIdle;
50
 
signals:
51
 
    void accelerate_memory();
52
 
protected:
53
 
    void mousePressEvent(QMouseEvent *event);
54
 
    void mouseMoveEvent(QMouseEvent *event);
55
 
    void mouseReleaseEvent(QMouseEvent *event);
56
 
    void paintEvent(QPaintEvent *);
57
 
    void resizeEvent(QResizeEvent *event);
58
 
private slots:
59
 
    void on_descBtn_clicked();
60
 
    void get_sysc_data(QString upspeed, QString downspeed, QString ratio, int used_memory, QString free_memory, QString cpu_ratio);
61
 
    void on_fastBtn_clicked();
62
 
};
63
 
 
64
 
#endif // SUSPENSIONFRAME_H