mainwindow.cpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3. #include <QDebug>
  4. #include <QTextEdit>
  5. #include <QTextStream>
  6. #include <QString>
  7. #include <QLayout>
  8. #include <QDateTime>
  9. #include <vector>
  10. /**
  11. * @brief MainWindow::MainWindow
  12. * @param argc
  13. * @param argv
  14. * @param parent
  15. */
  16. MainWindow::MainWindow(int argc, char** argv, QWidget *parent) :
  17. QMainWindow(parent),
  18. ui(new Ui::MainWindow),
  19. arg_ui(new ArgDialog),
  20. cli_argc(argc),
  21. cli_argv(argv) {
  22. ui->setupUi(this);
  23. this->setWindowTitle("KYGUI");
  24. QPushButton *button = this->findChild<QPushButton*>("connect");
  25. connect(button, &QPushButton::clicked, this, &MainWindow::connectClient);
  26. }
  27. /**
  28. * @brief MainWindow::~MainWindow
  29. */
  30. MainWindow::~MainWindow()
  31. {
  32. delete q_client;
  33. delete ui;
  34. }
  35. /**
  36. * @brief MainWindow::buttonClicked
  37. */
  38. void MainWindow::connectClient() {
  39. qDebug() << "Connecting to KServer";
  40. q_client = new Client(this, cli_argc, cli_argv);
  41. QObject::connect(q_client, &Client::messageReceived, this, &MainWindow::updateMessages);
  42. QProgressBar* progressBar = ui->progressBar;
  43. q_client->start();
  44. for (int i = 1; i < 101; i++) {
  45. progressBar->setValue(i);
  46. }
  47. KTextEdit* send_message_box = reinterpret_cast<KTextEdit*>(ui->inputText);
  48. send_message_box->show();
  49. QPushButton* send_message_button = this->findChild<QPushButton*>("sendMessage");
  50. // Handle mouse
  51. QObject::connect(send_message_button, &QPushButton::clicked, this, [this, send_message_box]() {
  52. q_client->sendMessage(send_message_box->toPlainText());
  53. send_message_box->clear();
  54. });
  55. QObject::connect(ui->appList, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, [this]() {
  56. QString app_name = ui->appList->currentText();
  57. // TODO: I know, it's awful. Fix this
  58. q_client->setSelectedApp(std::vector<QString>{{app_name}});
  59. });
  60. QPushButton* disconnect_button = this->findChild<QPushButton*>("disconnect");
  61. QObject::connect(disconnect_button, &QPushButton::clicked, this, [this, progressBar]() {
  62. q_client->closeConnection();
  63. progressBar->setValue(0);
  64. ui->appList->clear();
  65. ui->messages->clear();
  66. });
  67. QObject::connect(ui->execute, &QPushButton::clicked, this, [this]() {
  68. q_client->execute();
  69. });
  70. QObject::connect(ui->addArgs, &QPushButton::clicked, this, [this]() {
  71. if (ui->appList->count() == 0) {
  72. QMessageBox::warning(this, tr("Args"), tr("Please connect to the KServer and retrieve a list of available processes."));
  73. } else {
  74. arg_ui->show();
  75. }
  76. });
  77. QObject::connect(arg_ui, &ArgDialog::uploadFile, this, [this](QByteArray bytes) {
  78. q_client->sendFile(bytes);
  79. });
  80. QObject::connect(arg_ui, &ArgDialog::taskRequestReady, this, [this](Task task, bool file_pending) {
  81. // TODO: Maybe this should be handled by the Client class directly
  82. auto mask = q_client->getSelectedApp();
  83. if (mask > -1) {
  84. if (q_client->getAppName(mask) == "Instagram") {
  85. auto datetime = task.args.at(1);
  86. auto current_datetime = QDateTime::currentDateTime().toTime_t();
  87. auto seconds_diff = std::stoi(datetime) - current_datetime;
  88. qDebug() << "Time difference: " << seconds_diff;
  89. if (seconds_diff > 3600) {
  90. qDebug() << "Scheduling a task";
  91. task.args.push_back(std::to_string(mask));
  92. q_client->scheduleTask(task.args, file_pending);
  93. }
  94. }
  95. }
  96. });
  97. ui->processList->addItem("Processes results displayed here");
  98. // TODO: Handle enter key
  99. // QObject::connect(send_message_box, &QTextEdit::keyReleaseEvent, this, [q_client, send_message_box]() {
  100. // q_client->sendMessage(send_message_box->toPlainText());
  101. // send_message_box->clear();
  102. // });
  103. }
  104. /**
  105. * @brief MainWindow::updateMessages
  106. * @param s
  107. */
  108. void MainWindow::updateMessages(int t, const QString& message, StringVec v) {
  109. if (t == MESSAGE_UPDATE_TYPE) {
  110. qDebug() << "Updating message area";
  111. ui->messages->append(message);
  112. } else if (t == COMMANDS_UPDATE_TYPE) {
  113. qDebug() << "Updating commands";
  114. QComboBox* app_list = ui->appList;
  115. app_list->clear();
  116. for (const auto& s : v) {
  117. app_list->addItem(s);
  118. }
  119. //TODO: We do this because a CommandLinkButton turns transparent by default, except when hovered or checked
  120. ui->connect->setChecked(true);
  121. } else if (t == PROCESS_REQUEST_TYPE) {
  122. qDebug() << "Updating process list";
  123. ui->processList->addItem(message);
  124. //TODO: We do this because a CommandLinkButton turns transparent by default, except when hovered or checked
  125. ui->connect->setChecked(true);
  126. } else if (t == EVENT_UPDATE_TYPE) {
  127. QString event_message{QDateTime::currentDateTime().toString("hh:mm:ss") + " - "};
  128. if (!v.empty()) {
  129. auto mask = std::stoi(v.at(0).toUtf8().constData());
  130. event_message += message;
  131. event_message += "\n";
  132. event_message += q_client->getAppName(mask);
  133. event_message += ": ";
  134. event_message += v.at(1);
  135. if (message == "Process Result") {
  136. updateProcessResult(mask);
  137. }
  138. } else {
  139. event_message += message;
  140. }
  141. m_events.push_front(event_message);
  142. ui->eventList->clear();
  143. for (const auto& i : m_events) {
  144. ui->eventList->addItem(i);
  145. }
  146. } else {
  147. qDebug() << "Unknown update type. Cannot update UI";
  148. }
  149. }
  150. void MainWindow::updateProcessResult(int mask) {
  151. auto app_name = q_client->getAppName(mask);
  152. for (int i = ui->processList->count() - 1; i >= 0; i--) {
  153. if (ui->processList->item(i)->text().contains(app_name)) {
  154. ui->processList->item(i)->setText(app_name + " completed");
  155. return;
  156. }
  157. }
  158. }