~ubuntu-branches/ubuntu/vivid/youker-assistant/vivid

« back to all changes in this revision

Viewing changes to src/fcitxwarndialog.h

  • Committer: Package Import Robot
  • Author(s): Jack Yu
  • Date: 2013-09-02 23:17:45 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130902231745-psyl14qxslg1g3dp
Tags: 0.1.6-0ubuntu1
* Modify SystemDispatcher and SessionDispatcher Classes.
* Add watch file into debian folder.
* Resolve status of onekey button(LP #1216236 ).
* Add monitorball code into systemdbus daemon.
* Optimize the status button.
* Add fcitx configuration function.
* Fix bugs due to bad references to apt lib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef FCITXWARNDIALOG_H
 
2
#define FCITXWARNDIALOG_H
 
3
 
 
4
#include <QDialog>
 
5
#include <fcitxwarndialog.h>
 
6
 
 
7
namespace Ui {
 
8
class FcitxWarnDialog;
 
9
}
 
10
 
 
11
class FcitxWarnDialog : public QDialog
 
12
{
 
13
    Q_OBJECT
 
14
    
 
15
public:
 
16
    explicit FcitxWarnDialog(QWidget *parent = 0);
 
17
    ~FcitxWarnDialog();
 
18
public:
 
19
    bool eventFilter(QObject *obj, QEvent *event);
 
20
 
 
21
signals:
 
22
    void fcitxWarntest();
 
23
public slots:
 
24
    void on_okButton_clicked();
 
25
 
 
26
private:
 
27
    Ui::FcitxWarnDialog *ui;
 
28
};
 
29
 
 
30
#endif // FCITXWARNDIALOG_H
 
31
 
 
32
 
 
33
 
 
34