mainwindow.cpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3. #include <QCommandLinkButton>
  4. #include <QProcess>
  5. #include <QDebug>
  6. #include <QTextStream>
  7. #include <QVector>
  8. #include <QLayout>
  9. #include <client.hpp>
  10. #include <vector>
  11. MainWindow::MainWindow(int argc, char** argv, QWidget *parent) :
  12. QMainWindow(parent),
  13. ui(new Ui::MainWindow),
  14. cli_argc(argc),
  15. cli_argv(argv) {
  16. this->process = new QProcess(this);
  17. ui->setupUi(this);
  18. ui->textEdit->setText("KSupStyle YO?");
  19. this->connectUi();
  20. }
  21. /**
  22. * @brief MainWindow::buttonClicked
  23. */
  24. void MainWindow::buttonClicked() {
  25. qDebug() << "You clicked the button!!";
  26. // QVBoxLayout *layout = new QVBoxLayout;
  27. Client* q_client = new Client(this, cli_argc, cli_argv);
  28. // layout->addWidget(q_client);
  29. // setLayout(layout);
  30. // q_client->exec();
  31. // q_client->show();
  32. q_client->start();
  33. // runApp();
  34. }
  35. void MainWindow::connectUi() {
  36. QCommandLinkButton *button = this->findChild<QCommandLinkButton*>("kbutton");
  37. connect(button, &QCommandLinkButton::clicked, this, &MainWindow::buttonClicked);
  38. }
  39. void MainWindow::runApp() {
  40. QString appString = "python /data/www/kiq/requests/test.py";
  41. process->start(appString);
  42. QVector<QString> app_result{};
  43. qDebug() << "trying to run app";
  44. connect(process, &QProcess::readyReadStandardOutput, [=] () {
  45. this->process->setProcessChannelMode(QProcess::MergedChannels);
  46. QTextStream reader(this->process->readAllStandardOutput());
  47. do {
  48. QString s;
  49. reader.readLineInto(&s);
  50. qDebug() << s;
  51. } while (!reader.readLine().isNull());
  52. });
  53. for (auto qString: app_result) {
  54. qDebug() << qString;
  55. }
  56. }
  57. MainWindow::~MainWindow()
  58. {
  59. delete ui;
  60. }