mainwindow.cpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3. #include <QCommandLinkButton>
  4. #include <QDebug>
  5. #include <QTextEdit>
  6. #include <QTextStream>
  7. #include <QString>
  8. #include <QLayout>
  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. cli_argc(argc),
  20. cli_argv(argv) {
  21. ui->setupUi(this);
  22. this->setWindowTitle("KYGUI");
  23. QCommandLinkButton *button = this->findChild<QCommandLinkButton*>("connect");
  24. connect(button, &QCommandLinkButton::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. // TODO: Handle enter key
  54. // QObject::connect(send_message_box, &QTextEdit::keyReleaseEvent, this, [q_client, send_message_box]() {
  55. // q_client->sendMessage(send_message_box->toPlainText());
  56. // send_message_box->clear();
  57. // });
  58. QListWidget* q_list_widget = ui->appList;
  59. QObject::connect(q_list_widget, &QListWidget::itemSelectionChanged, this, [q_client, q_list_widget]() {
  60. QList<QListWidgetItem*> items = q_list_widget->selectedItems();
  61. if (!items.empty()) {
  62. std::vector<QString> app_names{};
  63. for (const auto& item : items) {
  64. app_names.push_back(item->text());
  65. }
  66. q_client->setSelectedApp(app_names);
  67. }
  68. });
  69. QPushButton* disconnect_button = this->findChild<QPushButton*>("disconnect");
  70. QObject::connect(disconnect_button, &QPushButton::clicked, this, [this, q_client, progressBar]() {
  71. q_client->closeConnection();
  72. progressBar->setValue(0);
  73. ui->appList->clear();
  74. ui->messages->clear();
  75. });
  76. QObject::connect(ui->execute, &QPushButton::clicked, this, [this, q_client]() {
  77. q_client->execute();
  78. });
  79. }
  80. /**
  81. * @brief MainWindow::updateMessages
  82. * @param s
  83. */
  84. void MainWindow::updateMessages(int t, const QString& s, StringVec v) {
  85. if (t == MESSAGE_UPDATE_TYPE) {
  86. qDebug() << "Updating message area";
  87. ui->messages->append(s);
  88. } else if (t == COMMANDS_UPDATE_TYPE) {
  89. qDebug() << "Updating commands";
  90. QListWidget* appList = ui->appList;
  91. appList->clear();
  92. for(const auto& s : v) {
  93. new QListWidgetItem(tr(s.toUtf8()), appList);
  94. }
  95. //TODO: We do this because a CommandLinkButton turns transparent by default, except when hovered or checked
  96. ui->connect->setChecked(true);
  97. } else {
  98. qDebug() << "Unknown update type. Cannot update UI";
  99. }
  100. }