mainwindow.cpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 <vector>
  9. /**
  10. * @brief MainWindow::MainWindow
  11. * @param argc
  12. * @param argv
  13. * @param parent
  14. */
  15. MainWindow::MainWindow(int argc, char** argv, QWidget *parent) :
  16. QMainWindow(parent),
  17. ui(new Ui::MainWindow),
  18. arg_ui(new ArgDialog),
  19. cli_argc(argc),
  20. cli_argv(argv) {
  21. ui->setupUi(this);
  22. this->setWindowTitle("KYGUI");
  23. QPushButton *button = this->findChild<QPushButton*>("connect");
  24. connect(button, &QPushButton::clicked, this, &MainWindow::connectClient);
  25. }
  26. /**
  27. * @brief MainWindow::~MainWindow
  28. */
  29. MainWindow::~MainWindow()
  30. {
  31. delete ui;
  32. }
  33. /**
  34. * @brief MainWindow::buttonClicked
  35. */
  36. void MainWindow::connectClient() {
  37. qDebug() << "Connecting to KServer";
  38. Client* q_client = new Client(this, cli_argc, cli_argv);
  39. QObject::connect(q_client, &Client::messageReceived, this, &MainWindow::updateMessages);
  40. QProgressBar* progressBar = ui->progressBar;
  41. q_client->start();
  42. for (int i = 1; i < 101; i++) {
  43. progressBar->setValue(i);
  44. }
  45. KTextEdit* send_message_box = reinterpret_cast<KTextEdit*>(ui->inputText);
  46. send_message_box->show();
  47. QPushButton* send_message_button = this->findChild<QPushButton*>("sendMessage");
  48. // Handle mouse
  49. QObject::connect(send_message_button, &QPushButton::clicked, this, [q_client, send_message_box]() {
  50. q_client->sendMessage(send_message_box->toPlainText());
  51. send_message_box->clear();
  52. });
  53. QObject::connect(ui->appList, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, [this, q_client]() {
  54. QString app_name = ui->appList->currentText();
  55. // TODO: I know, it's awful. Fix this
  56. q_client->setSelectedApp(std::vector<QString>{{app_name}});
  57. });
  58. QPushButton* disconnect_button = this->findChild<QPushButton*>("disconnect");
  59. QObject::connect(disconnect_button, &QPushButton::clicked, this, [this, q_client, progressBar]() {
  60. q_client->closeConnection();
  61. progressBar->setValue(0);
  62. ui->appList->clear();
  63. ui->messages->clear();
  64. });
  65. QObject::connect(ui->execute, &QPushButton::clicked, this, [this, q_client]() {
  66. q_client->execute();
  67. });
  68. QObject::connect(ui->addArgs, &QPushButton::clicked, this, [this]() {
  69. if (ui->appList->count() == 0) {
  70. QMessageBox::warning(this, tr("Args"), tr("Please connect to the KServer and retrieve a list of available processes."));
  71. } else {
  72. arg_ui->show();
  73. }
  74. });
  75. QObject::connect(arg_ui, &ArgDialog::uploadFile, this, [q_client](QByteArray bytes) {
  76. q_client->sendFile(bytes);
  77. });
  78. // TODO: Handle enter key
  79. // QObject::connect(send_message_box, &QTextEdit::keyReleaseEvent, this, [q_client, send_message_box]() {
  80. // q_client->sendMessage(send_message_box->toPlainText());
  81. // send_message_box->clear();
  82. // });
  83. }
  84. /**
  85. * @brief MainWindow::updateMessages
  86. * @param s
  87. */
  88. void MainWindow::updateMessages(int t, const QString& message, StringVec v) {
  89. if (t == MESSAGE_UPDATE_TYPE) {
  90. qDebug() << "Updating message area";
  91. ui->messages->append(message);
  92. } else if (t == COMMANDS_UPDATE_TYPE) {
  93. qDebug() << "Updating commands";
  94. QComboBox* app_list = ui->appList;
  95. app_list->clear();
  96. for (const auto& s : v) {
  97. app_list->addItem(s);
  98. }
  99. //TODO: We do this because a CommandLinkButton turns transparent by default, except when hovered or checked
  100. ui->connect->setChecked(true);
  101. } else {
  102. qDebug() << "Unknown update type. Cannot update UI";
  103. }
  104. }