~ubuntu-branches/ubuntu/wily/youker-assistant/wily

« back to all changes in this revision

Viewing changes to setting/animationwidget.h

  • Committer: Package Import Robot
  • Author(s): Kobe Lee (kylinkobe)
  • Date: 2015-03-13 10:07:56 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20150313100756-9bgbo855p7d2ll5y
Tags: 2.0.1-0ubuntu1
* New upstream release:
  - Decrease CPU occupation.
  - Deal with system information access exceptions.
  - Improve UI.
  - General bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define ANIMATIONWIDGET_H
22
22
 
23
23
#include <QWidget>
24
 
#include <QLabel>
25
 
#include <QPushButton>
26
 
#include <QHBoxLayout>
27
 
#include <QSplitter>
28
24
#include <QListWidget>
 
25
 
29
26
class SystemDispatcher;
30
27
class MainWindow;
 
28
class QLabel;
 
29
class QPushButton;
31
30
 
32
31
class AnimationWidget : public QWidget
33
32
{
38
37
    void setLanguage();
39
38
    void initConnect();
40
39
    void initData();
41
 
//    QString showSelectFileDialog();
42
 
 
43
 
//signals:
44
 
//    void showSettingMainWidget();
45
40
 
46
41
public slots:
47
42
    void selectCustomAnimation();
52
47
private:
53
48
    SystemDispatcher *systemproxy;
54
49
    MainWindow *parentWindow;
55
 
//    QSplitter *splitter;
56
 
//    QWidget * top_widget;
57
 
//    QWidget * bottom_widget;
58
50
    QWidget * left_widget;
59
51
    QWidget * right_widget;
60
52
 
61
 
//    QPushButton *back_btn;
62
 
//    QLabel *title_label;
63
 
//    QLabel *description_label;
64
53
    QLabel *title_label;
65
54
    QPushButton *custom_btn;
66
55
    QPushButton *ok_btn;