mainwindow.cpp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. 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. ui->messages->append(s);
  64. } else if (t == COMMANDS_UPDATE_TYPE) {
  65. qDebug() << "Updating commands";
  66. QListWidget* appList = ui->appList;
  67. appList->clear();
  68. for(const auto& s : v) {
  69. new QListWidgetItem(tr(s.toUtf8()), appList);
  70. }
  71. } else {
  72. qDebug() << "Unknown update type. Cannot update UI";
  73. }
  74. }