mainwindow.cpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 <client.hpp>
  10. #include <vector>
  11. /**
  12. * @brief MainWindow::MainWindow
  13. * @param argc
  14. * @param argv
  15. * @param parent
  16. */
  17. MainWindow::MainWindow(int argc, char** argv, QWidget *parent) :
  18. QMainWindow(parent),
  19. ui(new Ui::MainWindow),
  20. cli_argc(argc),
  21. cli_argv(argv) {
  22. ui->setupUi(this);
  23. QCommandLinkButton *button = this->findChild<QCommandLinkButton*>("connect");
  24. connect(button, &QCommandLinkButton::clicked, this, &MainWindow::connectClient);
  25. QListWidget* appList = ui->appList;
  26. new QListWidgetItem(tr("Query"), appList);
  27. new QListWidgetItem(tr("Research Rivals"), appList);
  28. new QListWidgetItem(tr("Collaborators"), appList);
  29. }
  30. /**
  31. * @brief MainWindow::~MainWindow
  32. */
  33. MainWindow::~MainWindow()
  34. {
  35. delete ui;
  36. }
  37. /**
  38. * @brief MainWindow::buttonClicked
  39. */
  40. void MainWindow::connectClient() {
  41. qDebug() << "Connecting to KServer";
  42. Client* q_client = new Client(this, cli_argc, cli_argv);
  43. QObject::connect(q_client, &Client::messageReceived, this, &MainWindow::updateMessages);
  44. q_client->start();
  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. QPushButton* disconnect_button = this->findChild<QPushButton*>("disconnect");
  59. QObject::connect(disconnect_button, &QPushButton::clicked, q_client, &Client::closeConnection);
  60. }
  61. /**
  62. * @brief MainWindow::updateMessages
  63. * @param s
  64. */
  65. void MainWindow::updateMessages(const QString& s) {
  66. QLabel* message_display = this->findChild<QLabel*>("messages");
  67. message_display->setText(message_display->text() + "\n" + s);
  68. }