mainwindow.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <QString>
  5. #include <QList>
  6. #include <QListView>
  7. #include <QListWidgetItem>
  8. #include <QStandardItemModel>
  9. #include <QStandardItem>
  10. #include <include/client.hpp>
  11. #include <headers/ktextedit.hpp>
  12. #include <include/argdialog.h>
  13. #include <include/consoledialog.h>
  14. #include <QTableView>
  15. namespace ProcessState {
  16. static constexpr int READY = 1;
  17. static constexpr int PENDING = 2;
  18. static constexpr int SUCCEEDED = 3;
  19. static constexpr int FAILED = 4;
  20. }
  21. const QString ProcessNames[4] = { "READY", "PENDING", "SUCCEEDED", "FAILED" };
  22. struct Process {
  23. QString name;
  24. int state;
  25. QString start;
  26. QString end;
  27. QString id;
  28. bool operator==(const Process &other) const {
  29. return name == other.name && state == other.state;
  30. }
  31. };
  32. namespace Ui {
  33. class MainWindow;
  34. }
  35. class MainWindow : public QMainWindow
  36. {
  37. Q_OBJECT
  38. public:
  39. explicit MainWindow(int argc = 0, char** argv = nullptr, QWidget* parent = nullptr);
  40. virtual void keyPressEvent(QKeyEvent* e);
  41. ~MainWindow();
  42. private:
  43. Ui::MainWindow *ui;
  44. ArgDialog *arg_ui;
  45. void connectUi();
  46. void runApp();
  47. void updateProcessResult(QString request_id);
  48. QString parseMessage(const QString& s, StringVec v);
  49. int cli_argc;
  50. char** cli_argv;
  51. Client* q_client;
  52. std::vector<Process> m_processes;
  53. QStandardItemModel* m_process_model;
  54. QList<QString> m_events;
  55. ConsoleDialog m_console;
  56. private slots:
  57. void connectClient();
  58. void updateMessages(int t, const QString& s, StringVec v);
  59. void handleInputEnterKey();
  60. };
  61. #endif // MAINWINDOW_H