windowhelper.h 294 B

123456789101112131415161718192021
  1. #ifndef WINDOWHELPER_H
  2. #define WINDOWHELPER_H
  3. #include <QObject>
  4. class WindowHelper : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit WindowHelper(QObject *parent = 0);
  9. Q_INVOKABLE void minimize();
  10. Q_INVOKABLE bool isMaemo();
  11. signals:
  12. public slots:
  13. };
  14. #endif // WINDOWHELPER_H