QFDAlert.h 320 B

1234567891011121314151617181920212223
  1. #ifndef QFDALERT_H
  2. #define QFDALERT_H
  3. #include <QObject>
  4. class QFDAlert : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. typedef enum
  9. {
  10. None,
  11. Info,
  12. Success,
  13. Alert,
  14. Error,
  15. } QFDAlertType;
  16. static void showAlertWithCode(int code, QWidget *w);
  17. };
  18. #endif // QFDALERT_H