2018-04-23 18:29:20 +08:00
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MainWindow::MainWindow ( QWidget* parent ) :
|
|
|
|
|
QMainWindow ( parent ),
|
|
|
|
|
ui ( new Ui::MainWindow )
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi ( this );
|
|
|
|
|
|
|
|
|
|
// serialport example
|
|
|
|
|
// tcpsocket example
|
|
|
|
|
// websocket?
|
|
|
|
|
//
|
|
|
|
|
p = QQtClientConnectionInstance ( this );
|
|
|
|
|
connect ( p, SIGNAL ( signalServerSay ( QString ) ),
|
|
|
|
|
this, SLOT ( on_recv_say_hello ( QString ) ) );
|
2018-04-23 20:25:18 +08:00
|
|
|
|
|
|
|
|
|
QQtClient2Protocol* p0 = QQtClient2ConnectionInstance ( this );
|
|
|
|
|
p0->sendCommand1();
|
2018-04-23 18:29:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_pushButton_clicked()
|
|
|
|
|
{
|
|
|
|
|
p->sendA1Command ( ui->lineEdit->text() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_recv_say_hello ( QString a )
|
|
|
|
|
{
|
|
|
|
|
pline() << a;
|
2018-04-23 20:25:18 +08:00
|
|
|
|
ui->textBrowser->append ( a + "\r\n" );
|
2018-04-23 18:29:20 +08:00
|
|
|
|
}
|