mainwindow.cpp 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3. #include <QCommandLinkButton>
  4. #include <QDebug>
  5. #include <QLabel>
  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. QCommandLinkButton *button = this->findChild<QCommandLinkButton*>("connect");
  23. connect(button, &QCommandLinkButton::clicked, this, &MainWindow::connectClient);
  24. }
  25. /**
  26. * @brief MainWindow::~MainWindow
  27. */
  28. MainWindow::~MainWindow()
  29. {
  30. delete ui;
  31. }
  32. /**
  33. * @brief MainWindow::buttonClicked
  34. */
  35. void MainWindow::connectClient() {
  36. qDebug() << "Connecting to KServer";
  37. Client* q_client = new Client(this, cli_argc, cli_argv);
  38. QObject::connect(q_client, &Client::messageReceived, this, &MainWindow::updateMessages);
  39. q_client->start();
  40. KTextEdit* send_message_box = reinterpret_cast<KTextEdit*>(ui->inputText);
  41. send_message_box->show();
  42. QPushButton* send_message_button = this->findChild<QPushButton*>("sendMessage");
  43. // Handle mouse
  44. QObject::connect(send_message_button, &QPushButton::clicked, this, [q_client, send_message_box]() {
  45. q_client->sendMessage(send_message_box->toPlainText());
  46. // send_message_box->clear();
  47. });
  48. // TODO: Handle enter key
  49. // QObject::connect(send_message_box, &QTextEdit::keyReleaseEvent, this, [q_client, send_message_box]() {
  50. // q_client->sendMessage(send_message_box->toPlainText());
  51. // send_message_box->clear();
  52. // });
  53. QPushButton* disconnect_button = this->findChild<QPushButton*>("disconnect");
  54. QObject::connect(disconnect_button, &QPushButton::clicked, q_client, &Client::closeConnection);
  55. }
  56. /**
  57. * @brief MainWindow::updateMessages
  58. * @param s
  59. */
  60. void MainWindow::updateMessages(int t, const QString& s, StringVec v) {
  61. if (t == MESSAGE_UPDATE_TYPE) {
  62. qDebug() << "Updating message area";
  63. QLabel* message_display = this->findChild<QLabel*>("messages");
  64. message_display->setText(message_display->text() + "\n" + s);
  65. } else if (t == COMMANDS_UPDATE_TYPE) {
  66. qDebug() << "Updating commands";
  67. QListWidget* appList = ui->appList;
  68. appList->clear();
  69. for(const auto& s : v) {
  70. new QListWidgetItem(tr(s.toUtf8()), appList);
  71. }
  72. } else {
  73. qDebug() << "Unknown update type. Cannot update UI";
  74. }
  75. }