Kooky
cmessageanimatedialog.h
Go to the documentation of this file.
1 
18 #ifndef CMESSAGEANIMATEDIALOG_H
19 #define CMESSAGEANIMATEDIALOG_H
20 
21 
22 #include <QDialog>
23 #include <QTimer>
24 
25 
26 namespace Ui {
28 }
29 
30 class cMessageAnimateDialog : public QDialog
31 {
32  Q_OBJECT
33 
34 public:
40  explicit cMessageAnimateDialog(QWidget *parent = 0);
46 
52  void setTitle(const QString& szTitle);
58  void setMessage(const QString& szMessage);
59 
60 private slots:
65  void update();
66 
67 private:
68  Ui::cMessageAnimateDialog *ui;
70 protected:
71  QString m_szMessage;
72  QTimer* m_lpTimer;
73  int m_iCount;
75 };
76 
77 #endif // CMESSAGEANIMATEDIALOG_H
int m_iDirection
Definition: cmessageanimatedialog.h:74
Definition: cconfigdialog.h:27
int m_iCount
Definition: cmessageanimatedialog.h:73
Ui::cMessageAnimateDialog * ui
Definition: cmessageanimatedialog.h:68
Class to display a modal message dialog.
Definition: cmessageanimatedialog.h:30
QString m_szMessage
Definition: cmessageanimatedialog.h:71
QTimer * m_lpTimer
Definition: cmessageanimatedialog.h:72