climanager.h 382 B

1234567891011121314151617181920
  1. #ifndef CLIMANAGER_H
  2. #define CLIMANAGER_H
  3. #include "config.h"
  4. #include "qmlhandler.h"
  5. #include <QGuiApplication>
  6. namespace CliManager {
  7. void setQmlHandler(QMLHandler *q);
  8. void init();
  9. void writeToCli(QString s);
  10. void readPipeLoop();
  11. void notificationsLoop();
  12. void statusLoop();
  13. void onExit();
  14. void setProgramActive(bool active);
  15. } // namespace CliManager
  16. #endif // CLIMANAGER_H